From 7bcba6d5e6577eb74481dc36d4d12c7e38c87a7f Mon Sep 17 00:00:00 2001 From: Terraform Team Automation Date: Fri, 22 Sep 2023 16:24:00 +0000 Subject: [PATCH 1/8] Bug Fix - Fix APM Synthetic service update the number of vantagepoints supported in monitor as per spec to 100 --- .../service/apm_synthetics/apm_synthetics_monitor_resource.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/service/apm_synthetics/apm_synthetics_monitor_resource.go b/internal/service/apm_synthetics/apm_synthetics_monitor_resource.go index 5dcc4087ca3..46cbef7bb3e 100644 --- a/internal/service/apm_synthetics/apm_synthetics_monitor_resource.go +++ b/internal/service/apm_synthetics/apm_synthetics_monitor_resource.go @@ -54,7 +54,7 @@ func ApmSyntheticsMonitorResource() *schema.Resource { "vantage_points": { Type: schema.TypeList, Required: true, - MaxItems: 50, + MaxItems: 100, MinItems: 1, Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ From ea6cff84a1e32e3ffa5b4c8e33301344f95c4923 Mon Sep 17 00:00:00 2001 From: Terraform Team Automation Date: Fri, 22 Sep 2023 16:54:13 +0000 Subject: [PATCH 2/8] Added - Support for OIC: FAaas Self Service with Henosis --- examples/integration/main.tf | 19 +++- .../integration_integration_instance_test.go | 105 ++++++++++++++++-- ...tegration_integration_instance_resource.go | 10 ++ ...gration_integration_instance.html.markdown | 2 + 4 files changed, 122 insertions(+), 14 deletions(-) diff --git a/examples/integration/main.tf b/examples/integration/main.tf index dd44e7faee5..f990538d32f 100644 --- a/examples/integration/main.tf +++ b/examples/integration/main.tf @@ -35,6 +35,9 @@ variable certificate_secret_id { default = "" } +variable domain_id { + default = "" +} provider "oci" { tenancy_ocid = var.tenancy_ocid user_ocid = var.user_ocid @@ -52,8 +55,8 @@ resource "oci_integration_integration_instance" "test_integration_instance" { # shape = "PRODUCTION" is_byol = "false" message_packs = "10" - - idcs_at = var.integration_instance_idcs_access_token + domain_id = var.domain_id + # idcs_at = var.integration_instance_idcs_access_token #Optional # For stand / enterprise type only @@ -96,3 +99,15 @@ data "oci_integration_integration_instance" "test_integration_instance" { #Required integration_instance_id = oci_integration_integration_instance.test_integration_instance.id } + +resource "oci_integration_integration_instance" "test_integration_instance_idcs" { + #Required + compartment_id = var.compartment_id + display_name = "instance4643_idcs" + integration_instance_type = "STANDARDX" + shape = "DEVELOPMENT" + # shape = "PRODUCTION" + is_byol = "false" + message_packs = "10" + idcs_at = var.integration_instance_idcs_access_token +} diff --git a/internal/integrationtest/integration_integration_instance_test.go b/internal/integrationtest/integration_integration_instance_test.go index 3d6fb380712..472a18f32bd 100644 --- a/internal/integrationtest/integration_integration_instance_test.go +++ b/internal/integrationtest/integration_integration_instance_test.go @@ -69,8 +69,9 @@ var ( // STANDARD or ENTERPRISE only // "custom_endpoint": acctest.RepresentationGroup{RepType: acctest.Optional, Group: integrationInstanceCustomEndpointRepresentation}, // "defined_tags": acctest.Representation{RepType: acctest.Optional, Create: `${map("${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}", "value")}`, Update: `${map("${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}", "updatedValue")}`}, - "freeform_tags": acctest.Representation{RepType: acctest.Optional, Create: map[string]string{"bar-key": "value"}, Update: map[string]string{"Department": "Accounting"}}, - "idcs_at": acctest.Representation{RepType: acctest.Required, Create: `${var.idcs_access_token}`}, + "freeform_tags": acctest.Representation{RepType: acctest.Optional, Create: map[string]string{"bar-key": "value"}, Update: map[string]string{"Department": "Accounting"}}, + // "idcs_at": acctest.Representation{RepType: acctest.Required, Create: `${var.idcs_access_token}`}, + "domain_id": acctest.Representation{RepType: acctest.Required, Create: `${var.domain_id}`}, "is_file_server_enabled": acctest.Representation{RepType: acctest.Optional, Create: `false`}, "is_visual_builder_enabled": acctest.Representation{RepType: acctest.Optional, Create: `false`}, // STANDARD or ENTERPRISE only @@ -88,8 +89,30 @@ var ( "message_packs": acctest.Representation{RepType: acctest.Required, Create: `1`, Update: `2`}, // Not supported yet // "alternate_custom_endpoints": acctest.RepresentationGroup{RepType: acctest.Optional, Group: integrationInstanceAlternateCustomEndpointsRepresentation}, - "consumption_model": acctest.Representation{RepType: acctest.Optional, Create: `UCM`}, + "consumption_model": acctest.Representation{RepType: acctest.Optional, Create: `UCM`}, // STANDARD or ENTERPRISE only + // "custom_endpoint": acctest.RepresentationGroup{RepType: acctest.Optional, Group: integrationInstanceCustomEndpointRepresentation}, + // "defined_tags": acctest.Representation{RepType: acctest.Optional, Create: `${map("${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}", "value")}`, Update: `${map("${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}", "updatedValue")}`}, + + "freeform_tags": acctest.Representation{RepType: acctest.Optional, Create: map[string]string{"bar-key": "value"}, Update: map[string]string{"Department": "Accounting"}}, + // "idcs_at": acctest.Representation{RepType: acctest.Required, Create: `${var.idcs_access_token}`}, + "domain_id": acctest.Representation{RepType: acctest.Required, Create: `${var.domain_id}`}, + "is_file_server_enabled": acctest.Representation{RepType: acctest.Optional, Create: `false`}, + "is_visual_builder_enabled": acctest.Representation{RepType: acctest.Optional, Create: `false`}, // STANDARD or ENTERPRISE only + // "network_endpoint_details": acctest.RepresentationGroup{RepType: acctest.Optional, Group: integrationInstanceNetworkEndpointDetailsRepresentation}, + "lifecycle": acctest.RepresentationGroup{RepType: acctest.Required, Group: ignoreDefinedTagsDifferencesRepresentationAgain}, + } + + integrationInstanceRepresentationIdcsAt = map[string]interface{}{ + "compartment_id": acctest.Representation{RepType: acctest.Required, Create: `${var.compartment_id}`}, + "display_name": acctest.Representation{RepType: acctest.Required, Create: `displayName`, Update: `displayName2`}, + "integration_instance_type": acctest.Representation{RepType: acctest.Required, Create: `${var.instance_type}`}, + "shape": acctest.Representation{RepType: acctest.Required, Create: `DEVELOPMENT`}, + "is_byol": acctest.Representation{RepType: acctest.Required, Create: `false`, Update: `true`}, + "message_packs": acctest.Representation{RepType: acctest.Required, Create: `1`, Update: `2`}, + // Not supported yet + // "alternate_custom_endpoints": acctest.RepresentationGroup{RepType: acctest.Optional, Group: integrationInstanceAlternateCustomEndpointsRepresentation}, + "consumption_model": acctest.Representation{RepType: acctest.Optional, Create: `UCM`}, // STANDARD or ENTERPRISE only // "custom_endpoint": acctest.RepresentationGroup{RepType: acctest.Optional, Group: integrationInstanceCustomEndpointRepresentation}, // "defined_tags": acctest.Representation{RepType: acctest.Optional, Create: `${map("${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}", "value")}`, Update: `${map("${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}", "updatedValue")}`}, @@ -164,7 +187,7 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { acctest.ResourceTest(t, testAccCheckIntegrationIntegrationInstanceDestroy, []resource.TestStep{ // verify Create { - Config: config + instanceTypeVariableStr + compartmentIdVariableStr + idcsAccessTokenVariableStr() + + Config: config + instanceTypeVariableStr + compartmentIdVariableStr + domainIdVariableStr + acctest.GenerateResourceFromRepresentationMap("oci_integration_integration_instance", "test_integration_instance", acctest.Required, acctest.Create, integrationInstanceRepresentation), Check: acctest.ComposeAggregateTestCheckFuncWrapper( resource.TestCheckResourceAttr(resourceName, "compartment_id", compartmentId), @@ -188,7 +211,7 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { { Config: config + instanceTypeVariableStr + compartmentIdVariableStr + tagVariablesStr() + - idcsAccessTokenVariableStr() + + domainIdVariableStr + vaultSecretIdStr + IntegrationIntegrationInstanceResourceDependencies + acctest.GenerateResourceFromRepresentationMap( @@ -207,6 +230,12 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { // }), resource.TestCheckResourceAttr(resourceName, "compartment_id", compartmentId), resource.TestCheckResourceAttr(resourceName, "consumption_model", "UCM"), + resource.TestCheckResourceAttr(resourceName, "custom_endpoint.#", "0"), + // resource.TestCheckResourceAttrSet(resourceName, "custom_endpoint.0.certificate_secret_id"), + // resource.TestCheckResourceAttr(resourceName, "custom_endpoint.0.hostname", "hostname.com"), + resource.TestCheckResourceAttr(resourceName, "display_name", "displayName"), + resource.TestCheckResourceAttrSet(resourceName, "domain_id"), + resource.TestCheckResourceAttr(resourceName, "freeform_tags.%", "1"), resource.TestCheckResourceAttr(resourceName, "compartment_id", compartmentId), resource.TestCheckResourceAttr(resourceName, "consumption_model", "UCM"), resource.TestCheckResourceAttr(resourceName, "custom_endpoint.#", "0"), @@ -214,7 +243,7 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { // resource.TestCheckResourceAttr(resourceName, "custom_endpoint.0.hostname", "hostname2.com"), resource.TestCheckResourceAttr(resourceName, "display_name", "displayName"), // resource.TestCheckResourceAttr(resourceName, "freeform_tags.%", "1"), resource.TestCheckResourceAttrSet(resourceName, "id"), - resource.TestCheckResourceAttrSet(resourceName, "idcs_at"), + // resource.TestCheckResourceAttrSet(resourceName, "idcs_at"), resource.TestCheckResourceAttrSet(resourceName, "instance_url"), resource.TestCheckResourceAttr(resourceName, "integration_instance_type", utils.GetEnvSettingWithBlankDefault("instance_type")), resource.TestCheckResourceAttr(resourceName, "is_byol", "false"), @@ -248,7 +277,7 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { { Config: config + instanceTypeVariableStr + compartmentIdVariableStr + tagVariablesStr() + - idcsAccessTokenVariableStr() + + domainIdVariableStr + compartmentIdUVariableStr + vaultSecretIdStr + IntegrationIntegrationInstanceResourceDependencies + @@ -274,9 +303,10 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { // resource.TestCheckResourceAttrSet(resourceName, "custom_endpoint.0.certificate_secret_id"), // resource.TestCheckResourceAttr(resourceName, "custom_endpoint.0.hostname", "hostname2.com"), resource.TestCheckResourceAttr(resourceName, "display_name", "displayName"), + resource.TestCheckResourceAttrSet(resourceName, "domain_id"), resource.TestCheckResourceAttr(resourceName, "freeform_tags.%", "1"), resource.TestCheckResourceAttrSet(resourceName, "id"), - resource.TestCheckResourceAttrSet(resourceName, "idcs_at"), + // resource.TestCheckResourceAttrSet(resourceName, "idcs_at"), resource.TestCheckResourceAttrSet(resourceName, "instance_url"), resource.TestCheckResourceAttr(resourceName, "integration_instance_type", utils.GetEnvSettingWithBlankDefault("instance_type")), resource.TestCheckResourceAttr(resourceName, "is_byol", "false"), @@ -305,7 +335,7 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { // verify updates to updatable parameters { - Config: config + instanceTypeVariableStr + compartmentIdVariableStr + tagVariablesStr() + idcsAccessTokenVariableStr() + vaultSecretIdStr + IntegrationIntegrationInstanceResourceDependencies + + Config: config + instanceTypeVariableStr + compartmentIdVariableStr + tagVariablesStr() + domainIdVariableStr + vaultSecretIdStr + IntegrationIntegrationInstanceResourceDependencies + acctest.GenerateResourceFromRepresentationMap("oci_integration_integration_instance", "test_integration_instance", acctest.Optional, acctest.Update, integrationInstanceRepresentation), Check: acctest.ComposeAggregateTestCheckFuncWrapper( // resource.TestCheckResourceAttr(resourceName, "alternate_custom_endpoints.#", "1"), @@ -321,9 +351,10 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { // resource.TestCheckResourceAttrSet(resourceName, "custom_endpoint.0.certificate_secret_id"), // resource.TestCheckResourceAttr(resourceName, "custom_endpoint.0.hostname", "hostname2-updated.com"), resource.TestCheckResourceAttr(resourceName, "display_name", "displayName2"), + resource.TestCheckResourceAttrSet(resourceName, "domain_id"), resource.TestCheckResourceAttr(resourceName, "freeform_tags.%", "1"), resource.TestCheckResourceAttrSet(resourceName, "id"), - resource.TestCheckResourceAttrSet(resourceName, "idcs_at"), + // resource.TestCheckResourceAttrSet(resourceName, "idcs_at"), resource.TestCheckResourceAttrSet(resourceName, "instance_url"), resource.TestCheckResourceAttr(resourceName, "integration_instance_type", utils.GetEnvSettingWithBlankDefault("instance_type")), resource.TestCheckResourceAttr(resourceName, "is_byol", "true"), @@ -355,7 +386,7 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { { Config: config + instanceTypeVariableStr + acctest.GenerateDataSourceFromRepresentationMap("oci_integration_integration_instances", "test_integration_instances", acctest.Optional, acctest.Update, integrationInstanceDataSourceRepresentation) + - compartmentIdVariableStr + tagVariablesStr() + idcsAccessTokenVariableStr() + vaultSecretIdStr + IntegrationIntegrationInstanceResourceDependencies + + compartmentIdVariableStr + tagVariablesStr() + domainIdVariableStr + vaultSecretIdStr + IntegrationIntegrationInstanceResourceDependencies + acctest.GenerateResourceFromRepresentationMap("oci_integration_integration_instance", "test_integration_instance", acctest.Optional, acctest.Update, integrationInstanceRepresentation), Check: acctest.ComposeAggregateTestCheckFuncWrapper( resource.TestCheckResourceAttr(datasourceName, "compartment_id", compartmentId), @@ -406,7 +437,7 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { { Config: config + instanceTypeVariableStr + acctest.GenerateDataSourceFromRepresentationMap("oci_integration_integration_instance", "test_integration_instance", acctest.Optional, acctest.Update, IntegrationintegrationInstanceSingularDataSourceRepresentation) + - compartmentIdVariableStr + tagVariablesStr() + idcsAccessTokenVariableStr() + vaultSecretIdStr + IntegrationIntegrationInstanceResourceDependencies + + compartmentIdVariableStr + tagVariablesStr() + domainIdVariableStr + vaultSecretIdStr + IntegrationIntegrationInstanceResourceDependencies + acctest.GenerateResourceFromRepresentationMap("oci_integration_integration_instance", "test_integration_instance", acctest.Optional, acctest.Update, integrationInstanceRepresentation), Check: acctest.ComposeAggregateTestCheckFuncWrapper( resource.TestCheckResourceAttrSet(singularDatasourceName, "integration_instance_id"), @@ -456,6 +487,7 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { ImportState: true, ImportStateVerify: true, ImportStateVerifyIgnore: []string{ + "domain_id", "idcs_at", }, ResourceName: resourceName, @@ -463,6 +495,55 @@ func TestIntegrationIntegrationInstanceResource_basic(t *testing.T) { }) } +func TestIntegrationIntegrationInstanceResource_idcsAt(t *testing.T) { + httpreplay.SetScenario("TestIntegrationIntegrationInstanceResource_idcsAt") + defer httpreplay.SaveScenario() + + if strings.Contains(utils.GetEnvSettingWithBlankDefault("suppressed_tests"), "TestIntegrationIntegrationInstanceResource_idcsAt") { + t.Skip("Skipping suppressed TestIntegrationIntegrationInstanceResource_idcsAt") + } + + config := acctest.ProviderTestConfig() + + compartmentId := utils.GetEnvSettingWithBlankDefault("compartment_ocid") + compartmentIdVariableStr := fmt.Sprintf("variable \"compartment_id\" { default = \"%s\" }\n", compartmentId) + + instanceType := utils.GetEnvSettingWithBlankDefault("instance_type") + instanceTypeVariableStr := fmt.Sprintf("variable \"instance_type\" { default = \"%s\" }\n", instanceType) + + resourceName := "oci_integration_integration_instance.test_integration_instance" + + // Save TF content to Create resource with optional properties. This has to be exactly the same as the config part in the "Create with optionals" step in the test. + acctest.SaveConfigContent(config+instanceTypeVariableStr+compartmentIdVariableStr+IntegrationIntegrationInstanceResourceDependencies+ + acctest.GenerateResourceFromRepresentationMap("oci_integration_integration_instance", "test_integration_instance", acctest.Optional, acctest.Create, integrationInstanceRepresentationIdcsAt), "integration", "integrationInstance", t) + + acctest.ResourceTest(t, testAccCheckIntegrationIntegrationInstanceDestroy, []resource.TestStep{ + // verify Create + { + Config: config + instanceTypeVariableStr + compartmentIdVariableStr + idcsAccessTokenVariableStr() + + acctest.GenerateResourceFromRepresentationMap("oci_integration_integration_instance", "test_integration_instance", acctest.Required, acctest.Create, integrationInstanceRepresentationIdcsAt), + Check: acctest.ComposeAggregateTestCheckFuncWrapper( + resource.TestCheckResourceAttr(resourceName, "compartment_id", compartmentId), + resource.TestCheckResourceAttr(resourceName, "display_name", "displayName"), + resource.TestCheckResourceAttr(resourceName, "integration_instance_type", utils.GetEnvSettingWithBlankDefault("instance_type")), + resource.TestCheckResourceAttr(resourceName, "is_byol", "false"), + resource.TestCheckResourceAttr(resourceName, "message_packs", "1"), + resource.TestCheckResourceAttrSet(resourceName, "idcs_at"), + + func(s *terraform.State) (err error) { + _, err = acctest.FromInstanceState(s, resourceName, "id") + return err + }, + ), + }, + + // delete before next Create + { + Config: config + compartmentIdVariableStr, + }, + }) +} + func testAccCheckIntegrationIntegrationInstanceDestroy(s *terraform.State) error { noResourceFound := true client := acctest.TestAccProvider.Meta().(*tf_client.OracleClients).IntegrationInstanceClient() diff --git a/internal/service/integration/integration_integration_instance_resource.go b/internal/service/integration/integration_integration_instance_resource.go index 7b86d72ed85..24e760426c2 100644 --- a/internal/service/integration/integration_integration_instance_resource.go +++ b/internal/service/integration/integration_integration_instance_resource.go @@ -140,6 +140,11 @@ func IntegrationIntegrationInstanceResource() *schema.Resource { DiffSuppressFunc: tfresource.DefinedTagsDiffSuppressFunction, Elem: schema.TypeString, }, + "domain_id": { + Type: schema.TypeString, + Optional: true, + ForceNew: true, + }, "freeform_tags": { Type: schema.TypeMap, Optional: true, @@ -546,6 +551,11 @@ func (s *IntegrationIntegrationInstanceResourceCrud) Create() error { request.DisplayName = &tmp } + if domainId, ok := s.D.GetOkExists("domain_id"); ok { + tmp := domainId.(string) + request.DomainId = &tmp + } + if freeformTags, ok := s.D.GetOkExists("freeform_tags"); ok { request.FreeformTags = tfresource.ObjectMapToStringMap(freeformTags.(map[string]interface{})) } diff --git a/website/docs/r/integration_integration_instance.html.markdown b/website/docs/r/integration_integration_instance.html.markdown index c4efd87cdc8..a3b0337a0ce 100644 --- a/website/docs/r/integration_integration_instance.html.markdown +++ b/website/docs/r/integration_integration_instance.html.markdown @@ -41,6 +41,7 @@ resource "oci_integration_integration_instance" "test_integration_instance" { certificate_secret_id = oci_vault_secret.test_secret.id } defined_tags = {"foo-namespace.bar-key"= "value"} + domain_id = oci_identity_domain.test_domain.id freeform_tags = {"bar-key"= "value"} idcs_at = var.integration_instance_idcs_at is_file_server_enabled = var.integration_instance_is_file_server_enabled @@ -79,6 +80,7 @@ The following arguments are supported: * `hostname` - (Required) (Updatable) A custom hostname to be used for the integration instance URL, in FQDN format. * `defined_tags` - (Optional) (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}` * `display_name` - (Required) (Updatable) Integration Instance Identifier. +* `domain_id` - (Optional) The OCID of the identity domain, that will be used to determine the corresponding Idcs Stripe and create an Idcs application within the stripe. This parameter is mutually exclusive with parameter: idcsAt, i.e only one of two parameters should be specified. * `freeform_tags` - (Optional) (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` * `idcs_at` - (Optional) (Updatable) IDCS Authentication token. This is required for all realms with IDCS. Its optional as its not required for non IDCS realms. * `integration_instance_type` - (Required) (Updatable) Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX From afb2ede8d623b02a1c99b068c095f020a88eec79 Mon Sep 17 00:00:00 2001 From: Rakshith Siddanahalli Murukannappa Date: Fri, 22 Sep 2023 15:56:02 -0700 Subject: [PATCH 3/8] Vendored - oci-go-sdk v65.49.2 changes for existing & new services --- go.mod | 2 +- .../v65/database/exadata_infrastructure.go | 28 +- .../exadata_infrastructure_summary.go | 28 +- .../update_exadata_infrastructure_details.go | 28 +- .../create_integration_instance_details.go | 9 + .../v65/keymanagement/backup_key_details.go | 7 +- .../v65/keymanagement/backup_location.go | 5 +- .../keymanagement/backup_location_bucket.go | 5 +- .../v65/keymanagement/backup_location_uri.go | 5 +- .../v65/keymanagement/backup_vault_details.go | 8 +- .../change_key_compartment_details.go | 7 +- ...change_key_compartment_request_response.go | 1 + .../change_vault_compartment_details.go | 7 +- ...ange_vault_compartment_request_response.go | 1 + .../create_ekms_private_endpoint_details.go | 62 +++ ..._ekms_private_endpoint_request_response.go | 106 +++++ .../v65/keymanagement/create_key_details.go | 16 +- .../create_key_version_request_response.go | 3 + .../v65/keymanagement/create_vault_details.go | 13 +- .../create_vault_replica_details.go | 5 +- .../v65/keymanagement/decrypt_data_details.go | 7 +- .../v65/keymanagement/decrypted_data.go | 7 +- ..._ekms_private_endpoint_request_response.go | 100 +++++ .../delete_vault_replica_details.go | 5 +- .../keymanagement/ekms_private_endpoint.go | 137 +++++++ .../ekms_private_endpoint_summary.go | 122 ++++++ .../v65/keymanagement/encrypt_data_details.go | 7 +- .../v65/keymanagement/encrypted_data.go | 7 +- .../v65/keymanagement/export_key_details.go | 5 +- .../v65/keymanagement/exported_key_data.go | 5 +- .../external_key_manager_metadata.go | 43 ++ .../external_key_manager_metadata_summary.go | 47 +++ .../keymanagement/external_key_reference.go | 39 ++ .../external_key_reference_details.go | 42 ++ .../external_key_version_reference.go | 39 ++ .../v65/keymanagement/generate_key_details.go | 7 +- .../v65/keymanagement/generated_key.go | 7 +- ..._ekms_private_endpoint_request_response.go | 95 +++++ .../v65/keymanagement/import_key_details.go | 7 +- .../import_key_version_details.go | 7 +- .../oci-go-sdk/v65/keymanagement/key.go | 17 +- .../v65/keymanagement/key_replica_details.go | 5 +- .../oci-go-sdk/v65/keymanagement/key_shape.go | 7 +- .../v65/keymanagement/key_summary.go | 16 +- .../v65/keymanagement/key_version.go | 10 +- .../key_version_replica_details.go | 5 +- .../v65/keymanagement/key_version_summary.go | 9 +- .../keymanagement/keymanagement_ekm_client.go | 382 ++++++++++++++++++ .../keymanagement_kmscrypto_client.go | 20 +- .../keymanagement_kmsmanagement_client.go | 61 +-- .../keymanagement_kmsvault_client.go | 33 +- ...ekms_private_endpoints_request_response.go | 203 ++++++++++ .../list_key_versions_request_response.go | 2 +- .../list_keys_request_response.go | 8 +- .../list_vault_replicas_request_response.go | 2 +- .../list_vaults_request_response.go | 2 +- .../v65/keymanagement/oauth_metadata.go | 45 +++ .../keymanagement/oauth_metadata_summary.go | 42 ++ .../v65/keymanagement/replica_details.go | 5 +- .../replication_status_details.go | 7 +- .../restore_key_from_object_store_details.go | 7 +- ...restore_vault_from_object_store_details.go | 7 +- .../schedule_key_deletion_details.go | 5 +- .../schedule_key_version_deletion_details.go | 5 +- .../schedule_vault_deletion_details.go | 5 +- .../v65/keymanagement/sign_data_details.go | 7 +- .../v65/keymanagement/signed_data.go | 7 +- .../update_ekms_private_endpoint_details.go | 47 +++ ..._ekms_private_endpoint_request_response.go | 105 +++++ .../v65/keymanagement/update_key_details.go | 7 +- .../v65/keymanagement/update_vault_details.go | 7 +- .../oci-go-sdk/v65/keymanagement/vault.go | 14 +- .../keymanagement/vault_replica_details.go | 5 +- .../keymanagement/vault_replica_summary.go | 6 +- .../v65/keymanagement/vault_summary.go | 13 +- .../v65/keymanagement/vault_usage.go | 7 +- .../v65/keymanagement/verified_data.go | 7 +- .../v65/keymanagement/verify_data_details.go | 7 +- .../v65/keymanagement/wrapped_import_key.go | 7 +- .../v65/keymanagement/wrapping_key.go | 7 +- vendor/modules.txt | 2 +- 81 files changed, 1973 insertions(+), 273 deletions(-) create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_ekms_private_endpoint_details.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_ekms_private_endpoint_request_response.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/delete_ekms_private_endpoint_request_response.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/ekms_private_endpoint.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/ekms_private_endpoint_summary.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_manager_metadata.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_manager_metadata_summary.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_reference.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_reference_details.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_version_reference.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/get_ekms_private_endpoint_request_response.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_ekm_client.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_ekms_private_endpoints_request_response.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/oauth_metadata.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/oauth_metadata_summary.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_ekms_private_endpoint_details.go create mode 100644 vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_ekms_private_endpoint_request_response.go diff --git a/go.mod b/go.mod index 55983724260..a2c61fe8830 100644 --- a/go.mod +++ b/go.mod @@ -76,6 +76,6 @@ require ( ) // Uncomment this line to get OCI Go SDK from local source instead of github -//replace github.com/oracle/oci-go-sdk => ../../oracle/oci-go-sdk +replace github.com/oracle/oci-go-sdk/v65 v65.49.1 => ./vendor/github.com/oracle/oci-go-sdk go 1.20 diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/exadata_infrastructure.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/exadata_infrastructure.go index 8d127ed482c..d7a19cfeb52 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/exadata_infrastructure.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/exadata_infrastructure.go @@ -280,24 +280,27 @@ type ExadataInfrastructureAdditionalComputeSystemModelEnum string // Set of constants representing the allowable values for ExadataInfrastructureAdditionalComputeSystemModelEnum const ( - ExadataInfrastructureAdditionalComputeSystemModelX7 ExadataInfrastructureAdditionalComputeSystemModelEnum = "X7" - ExadataInfrastructureAdditionalComputeSystemModelX8 ExadataInfrastructureAdditionalComputeSystemModelEnum = "X8" - ExadataInfrastructureAdditionalComputeSystemModelX8m ExadataInfrastructureAdditionalComputeSystemModelEnum = "X8M" - ExadataInfrastructureAdditionalComputeSystemModelX9m ExadataInfrastructureAdditionalComputeSystemModelEnum = "X9M" + ExadataInfrastructureAdditionalComputeSystemModelX7 ExadataInfrastructureAdditionalComputeSystemModelEnum = "X7" + ExadataInfrastructureAdditionalComputeSystemModelX8 ExadataInfrastructureAdditionalComputeSystemModelEnum = "X8" + ExadataInfrastructureAdditionalComputeSystemModelX8m ExadataInfrastructureAdditionalComputeSystemModelEnum = "X8M" + ExadataInfrastructureAdditionalComputeSystemModelX9m ExadataInfrastructureAdditionalComputeSystemModelEnum = "X9M" + ExadataInfrastructureAdditionalComputeSystemModelX10m ExadataInfrastructureAdditionalComputeSystemModelEnum = "X10M" ) var mappingExadataInfrastructureAdditionalComputeSystemModelEnum = map[string]ExadataInfrastructureAdditionalComputeSystemModelEnum{ - "X7": ExadataInfrastructureAdditionalComputeSystemModelX7, - "X8": ExadataInfrastructureAdditionalComputeSystemModelX8, - "X8M": ExadataInfrastructureAdditionalComputeSystemModelX8m, - "X9M": ExadataInfrastructureAdditionalComputeSystemModelX9m, + "X7": ExadataInfrastructureAdditionalComputeSystemModelX7, + "X8": ExadataInfrastructureAdditionalComputeSystemModelX8, + "X8M": ExadataInfrastructureAdditionalComputeSystemModelX8m, + "X9M": ExadataInfrastructureAdditionalComputeSystemModelX9m, + "X10M": ExadataInfrastructureAdditionalComputeSystemModelX10m, } var mappingExadataInfrastructureAdditionalComputeSystemModelEnumLowerCase = map[string]ExadataInfrastructureAdditionalComputeSystemModelEnum{ - "x7": ExadataInfrastructureAdditionalComputeSystemModelX7, - "x8": ExadataInfrastructureAdditionalComputeSystemModelX8, - "x8m": ExadataInfrastructureAdditionalComputeSystemModelX8m, - "x9m": ExadataInfrastructureAdditionalComputeSystemModelX9m, + "x7": ExadataInfrastructureAdditionalComputeSystemModelX7, + "x8": ExadataInfrastructureAdditionalComputeSystemModelX8, + "x8m": ExadataInfrastructureAdditionalComputeSystemModelX8m, + "x9m": ExadataInfrastructureAdditionalComputeSystemModelX9m, + "x10m": ExadataInfrastructureAdditionalComputeSystemModelX10m, } // GetExadataInfrastructureAdditionalComputeSystemModelEnumValues Enumerates the set of values for ExadataInfrastructureAdditionalComputeSystemModelEnum @@ -316,6 +319,7 @@ func GetExadataInfrastructureAdditionalComputeSystemModelEnumStringValues() []st "X8", "X8M", "X9M", + "X10M", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/exadata_infrastructure_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/exadata_infrastructure_summary.go index 6b3905ece82..421b7f2b8a0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/exadata_infrastructure_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/exadata_infrastructure_summary.go @@ -281,24 +281,27 @@ type ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum string // Set of constants representing the allowable values for ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum const ( - ExadataInfrastructureSummaryAdditionalComputeSystemModelX7 ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = "X7" - ExadataInfrastructureSummaryAdditionalComputeSystemModelX8 ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = "X8" - ExadataInfrastructureSummaryAdditionalComputeSystemModelX8m ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = "X8M" - ExadataInfrastructureSummaryAdditionalComputeSystemModelX9m ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = "X9M" + ExadataInfrastructureSummaryAdditionalComputeSystemModelX7 ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = "X7" + ExadataInfrastructureSummaryAdditionalComputeSystemModelX8 ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = "X8" + ExadataInfrastructureSummaryAdditionalComputeSystemModelX8m ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = "X8M" + ExadataInfrastructureSummaryAdditionalComputeSystemModelX9m ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = "X9M" + ExadataInfrastructureSummaryAdditionalComputeSystemModelX10m ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = "X10M" ) var mappingExadataInfrastructureSummaryAdditionalComputeSystemModelEnum = map[string]ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum{ - "X7": ExadataInfrastructureSummaryAdditionalComputeSystemModelX7, - "X8": ExadataInfrastructureSummaryAdditionalComputeSystemModelX8, - "X8M": ExadataInfrastructureSummaryAdditionalComputeSystemModelX8m, - "X9M": ExadataInfrastructureSummaryAdditionalComputeSystemModelX9m, + "X7": ExadataInfrastructureSummaryAdditionalComputeSystemModelX7, + "X8": ExadataInfrastructureSummaryAdditionalComputeSystemModelX8, + "X8M": ExadataInfrastructureSummaryAdditionalComputeSystemModelX8m, + "X9M": ExadataInfrastructureSummaryAdditionalComputeSystemModelX9m, + "X10M": ExadataInfrastructureSummaryAdditionalComputeSystemModelX10m, } var mappingExadataInfrastructureSummaryAdditionalComputeSystemModelEnumLowerCase = map[string]ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum{ - "x7": ExadataInfrastructureSummaryAdditionalComputeSystemModelX7, - "x8": ExadataInfrastructureSummaryAdditionalComputeSystemModelX8, - "x8m": ExadataInfrastructureSummaryAdditionalComputeSystemModelX8m, - "x9m": ExadataInfrastructureSummaryAdditionalComputeSystemModelX9m, + "x7": ExadataInfrastructureSummaryAdditionalComputeSystemModelX7, + "x8": ExadataInfrastructureSummaryAdditionalComputeSystemModelX8, + "x8m": ExadataInfrastructureSummaryAdditionalComputeSystemModelX8m, + "x9m": ExadataInfrastructureSummaryAdditionalComputeSystemModelX9m, + "x10m": ExadataInfrastructureSummaryAdditionalComputeSystemModelX10m, } // GetExadataInfrastructureSummaryAdditionalComputeSystemModelEnumValues Enumerates the set of values for ExadataInfrastructureSummaryAdditionalComputeSystemModelEnum @@ -317,6 +320,7 @@ func GetExadataInfrastructureSummaryAdditionalComputeSystemModelEnumStringValues "X8", "X8M", "X9M", + "X10M", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/update_exadata_infrastructure_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/update_exadata_infrastructure_details.go index b175ca2c925..d66d18a47ae 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/update_exadata_infrastructure_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/update_exadata_infrastructure_details.go @@ -112,24 +112,27 @@ type UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum string // Set of constants representing the allowable values for UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum const ( - UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX7 UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = "X7" - UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8 UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = "X8" - UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8m UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = "X8M" - UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX9m UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = "X9M" + UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX7 UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = "X7" + UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8 UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = "X8" + UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8m UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = "X8M" + UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX9m UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = "X9M" + UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX10m UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = "X10M" ) var mappingUpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum = map[string]UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum{ - "X7": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX7, - "X8": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8, - "X8M": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8m, - "X9M": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX9m, + "X7": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX7, + "X8": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8, + "X8M": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8m, + "X9M": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX9m, + "X10M": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX10m, } var mappingUpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnumLowerCase = map[string]UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum{ - "x7": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX7, - "x8": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8, - "x8m": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8m, - "x9m": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX9m, + "x7": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX7, + "x8": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8, + "x8m": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX8m, + "x9m": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX9m, + "x10m": UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelX10m, } // GetUpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnumValues Enumerates the set of values for UpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnum @@ -148,6 +151,7 @@ func GetUpdateExadataInfrastructureDetailsAdditionalComputeSystemModelEnumString "X8", "X8M", "X9M", + "X10M", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/integration/create_integration_instance_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/integration/create_integration_instance_details.go index c6b9cc2c6e1..bcf90b6f4b8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/integration/create_integration_instance_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/integration/create_integration_instance_details.go @@ -71,6 +71,12 @@ type CreateIntegrationInstanceDetails struct { // Shape Shape CreateIntegrationInstanceDetailsShapeEnum `mandatory:"false" json:"shape,omitempty"` + + // The OCID of the identity domain, that will be used to determine the + // corresponding Idcs Stripe and create an Idcs application within the stripe. + // This parameter is mutually exclusive with parameter: idcsAt, i.e only one of + // two parameters should be specified. + DomainId *string `mandatory:"false" json:"domainId"` } func (m CreateIntegrationInstanceDetails) String() string { @@ -111,6 +117,7 @@ func (m *CreateIntegrationInstanceDetails) UnmarshalJSON(data []byte) (e error) IsFileServerEnabled *bool `json:"isFileServerEnabled"` NetworkEndpointDetails networkendpointdetails `json:"networkEndpointDetails"` Shape CreateIntegrationInstanceDetailsShapeEnum `json:"shape"` + DomainId *string `json:"domainId"` DisplayName *string `json:"displayName"` CompartmentId *string `json:"compartmentId"` IntegrationInstanceType CreateIntegrationInstanceDetailsIntegrationInstanceTypeEnum `json:"integrationInstanceType"` @@ -151,6 +158,8 @@ func (m *CreateIntegrationInstanceDetails) UnmarshalJSON(data []byte) (e error) m.Shape = model.Shape + m.DomainId = model.DomainId + m.DisplayName = model.DisplayName m.CompartmentId = model.CompartmentId diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_key_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_key_details.go index 9a7d2cb90ad..3b0514e7750 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_key_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_key_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -17,7 +16,7 @@ import ( "strings" ) -// BackupKeyDetails The representation of BackupKeyDetails +// BackupKeyDetails The details of the Key that you wish to backup. type BackupKeyDetails struct { BackupLocation BackupLocation `mandatory:"false" json:"backupLocation"` } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location.go index 7988090e2d8..92ffd4afb89 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location_bucket.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location_bucket.go index f3b17d1d8e0..a1a12f39434 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location_bucket.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location_bucket.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location_uri.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location_uri.go index 30ce754e344..17275dafc56 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location_uri.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_location_uri.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_vault_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_vault_details.go index 889d83ed1b1..aadd92e577a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_vault_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/backup_vault_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -17,10 +16,11 @@ import ( "strings" ) -// BackupVaultDetails The representation of BackupVaultDetails +// BackupVaultDetails The details of the Vault that you wish to backup. type BackupVaultDetails struct { BackupLocation BackupLocation `mandatory:"false" json:"backupLocation"` + // A Boolean value that indicates whether the Keys should be included during backing up the Vault. IsIncludeKeys *bool `mandatory:"false" json:"isIncludeKeys"` } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_key_compartment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_key_compartment_details.go index 1440df56d95..b5fd5cbf580 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_key_compartment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_key_compartment_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// ChangeKeyCompartmentDetails The representation of ChangeKeyCompartmentDetails +// ChangeKeyCompartmentDetails The deatils of the compartment that you wish to move the Key. type ChangeKeyCompartmentDetails struct { // The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment that you want to move the key to. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_key_compartment_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_key_compartment_request_response.go index dfa8d96bb50..5c2241fc1f7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_key_compartment_request_response.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_key_compartment_request_response.go @@ -21,6 +21,7 @@ type ChangeKeyCompartmentRequest struct { // The OCID of the key. KeyId *string `mandatory:"true" contributesTo:"path" name:"keyId"` + // Details of change key compartment. ChangeKeyCompartmentDetails `contributesTo:"body"` // For optimistic concurrency control. In the PUT or DELETE call for a diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_vault_compartment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_vault_compartment_details.go index 780ea2c61b4..82d9faf0009 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_vault_compartment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_vault_compartment_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// ChangeVaultCompartmentDetails The representation of ChangeVaultCompartmentDetails +// ChangeVaultCompartmentDetails The details of the compartment you wish to move the Vault. type ChangeVaultCompartmentDetails struct { // The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment to move the vault to. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_vault_compartment_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_vault_compartment_request_response.go index 4092911eddf..c9ef6b69b29 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_vault_compartment_request_response.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/change_vault_compartment_request_response.go @@ -21,6 +21,7 @@ type ChangeVaultCompartmentRequest struct { // The OCID of the vault. VaultId *string `mandatory:"true" contributesTo:"path" name:"vaultId"` + // ChangeVaultCompartmentDetails ChangeVaultCompartmentDetails `contributesTo:"body"` // For optimistic concurrency control. In the PUT or DELETE call for a diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_ekms_private_endpoint_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_ekms_private_endpoint_details.go new file mode 100644 index 00000000000..f848ac4398c --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_ekms_private_endpoint_details.go @@ -0,0 +1,62 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// CreateEkmsPrivateEndpointDetails Information needed to create EKMS private endpoint resource +type CreateEkmsPrivateEndpointDetails struct { + + // The OCID of subnet in which the EKMS private endpoint is to be created + SubnetId *string `mandatory:"true" json:"subnetId"` + + // Compartment identifier. + CompartmentId *string `mandatory:"true" json:"compartmentId"` + + // Display name of the EKMS private endpoint resource being created. + DisplayName *string `mandatory:"true" json:"displayName"` + + // External private IP to connect to from this EKMS private endpoint + ExternalKeyManagerIp *string `mandatory:"true" json:"externalKeyManagerIp"` + + // CABundle to validate TLS certificate of the external key manager system in PEM format + CaBundle *string `mandatory:"true" json:"caBundle"` + + // Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. + // Example: `{"bar-key": "value"}` + FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` + + // Usage of predefined tag keys. These predefined keys are scoped to namespaces. + // Example: `{"foo-namespace": {"bar-key": "value"}}` + DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` + + // The port of the external key manager system + Port *int `mandatory:"false" json:"port"` +} + +func (m CreateEkmsPrivateEndpointDetails) 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 CreateEkmsPrivateEndpointDetails) ValidateEnumValue() (bool, error) { + errMessage := []string{} + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_ekms_private_endpoint_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_ekms_private_endpoint_request_response.go new file mode 100644 index 00000000000..8b842741568 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_ekms_private_endpoint_request_response.go @@ -0,0 +1,106 @@ +// 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. + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "net/http" + "strings" +) + +// CreateEkmsPrivateEndpointRequest wrapper for the CreateEkmsPrivateEndpoint operation +// +// # See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CreateEkmsPrivateEndpoint.go.html to see an example of how to use CreateEkmsPrivateEndpointRequest. +type CreateEkmsPrivateEndpointRequest struct { + + // The information used to create EKMS private endpoint. + CreateEkmsPrivateEndpointDetails `contributesTo:"body"` + + // Unique identifier for the request. If provided, the returned request ID + // will include this value. Otherwise, a random request ID will be + // generated by the service. + 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 executing that same action + // again. Retry tokens expire after 24 hours, but can be invalidated + // before then due to conflicting operations (e.g., 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 +} + +func (request CreateEkmsPrivateEndpointRequest) String() string { + return common.PointerString(request) +} + +// HTTPRequest implements the OCIRequest interface +func (request CreateEkmsPrivateEndpointRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error) { + + _, err := request.ValidateEnumValue() + if err != nil { + return http.Request{}, err + } + return common.MakeDefaultHTTPRequestWithTaggedStructAndExtraHeaders(method, path, request, extraHeaders) +} + +// BinaryRequestBody implements the OCIRequest interface +func (request CreateEkmsPrivateEndpointRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool) { + + return nil, false + +} + +// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy. +func (request CreateEkmsPrivateEndpointRequest) RetryPolicy() *common.RetryPolicy { + return request.RequestMetadata.RetryPolicy +} + +// 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 (request CreateEkmsPrivateEndpointRequest) ValidateEnumValue() (bool, error) { + errMessage := []string{} + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} + +// CreateEkmsPrivateEndpointResponse wrapper for the CreateEkmsPrivateEndpoint operation +type CreateEkmsPrivateEndpointResponse struct { + + // The underlying http response + RawResponse *http.Response + + // The EkmsPrivateEndpoint instance + EkmsPrivateEndpoint `presentIn:"body"` + + // For optimistic concurrency control. See `if-match`. + Etag *string `presentIn:"header" name:"etag"` + + // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about + // a particular request, please provide the request ID. + OpcRequestId *string `presentIn:"header" name:"opc-request-id"` + + // Work request id to track progress of the create operation + OpcWorkRequestId *string `presentIn:"header" name:"opc-work-request-id"` +} + +func (response CreateEkmsPrivateEndpointResponse) String() string { + return common.PointerString(response) +} + +// HTTPResponse implements the OCIResponse interface +func (response CreateEkmsPrivateEndpointResponse) HTTPResponse() *http.Response { + return response.RawResponse +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_key_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_key_details.go index 9d5c391771a..19b5f51e37f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_key_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_key_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// CreateKeyDetails The representation of CreateKeyDetails +// CreateKeyDetails The details of the key that you want to create. type CreateKeyDetails struct { // The OCID of the compartment where you want to create the master encryption key. @@ -43,7 +42,12 @@ type CreateKeyDetails struct { // the HSM. A protection mode of `SOFTWARE` means that the key persists on the server, protected by the vault's RSA wrapping key which persists // on the HSM. All cryptographic operations that use a key with a protection mode of `SOFTWARE` are performed on the server. By default, // a key's protection mode is set to `HSM`. You can't change a key's protection mode after the key is created or imported. + // A protection mode of `EXTERNAL` mean that the key persists on the customer's external key manager which is hosted externally outside of oracle. + // Oracle only hold a reference to that key. + // All cryptographic operations that use a key with a protection mode of `EXTERNAL` are performed by external key manager. ProtectionMode CreateKeyDetailsProtectionModeEnum `mandatory:"false" json:"protectionMode,omitempty"` + + ExternalKeyReference *ExternalKeyReference `mandatory:"false" json:"externalKeyReference"` } func (m CreateKeyDetails) String() string { @@ -72,16 +76,19 @@ type CreateKeyDetailsProtectionModeEnum string const ( CreateKeyDetailsProtectionModeHsm CreateKeyDetailsProtectionModeEnum = "HSM" CreateKeyDetailsProtectionModeSoftware CreateKeyDetailsProtectionModeEnum = "SOFTWARE" + CreateKeyDetailsProtectionModeExternal CreateKeyDetailsProtectionModeEnum = "EXTERNAL" ) var mappingCreateKeyDetailsProtectionModeEnum = map[string]CreateKeyDetailsProtectionModeEnum{ "HSM": CreateKeyDetailsProtectionModeHsm, "SOFTWARE": CreateKeyDetailsProtectionModeSoftware, + "EXTERNAL": CreateKeyDetailsProtectionModeExternal, } var mappingCreateKeyDetailsProtectionModeEnumLowerCase = map[string]CreateKeyDetailsProtectionModeEnum{ "hsm": CreateKeyDetailsProtectionModeHsm, "software": CreateKeyDetailsProtectionModeSoftware, + "external": CreateKeyDetailsProtectionModeExternal, } // GetCreateKeyDetailsProtectionModeEnumValues Enumerates the set of values for CreateKeyDetailsProtectionModeEnum @@ -98,6 +105,7 @@ func GetCreateKeyDetailsProtectionModeEnumStringValues() []string { return []string{ "HSM", "SOFTWARE", + "EXTERNAL", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_key_version_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_key_version_request_response.go index cda52edec4b..c5d1ca4025d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_key_version_request_response.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_key_version_request_response.go @@ -34,6 +34,9 @@ type CreateKeyVersionRequest struct { // creation request may be rejected). OpcRetryToken *string `mandatory:"false" contributesTo:"header" name:"opc-retry-token"` + // CreateKeyMetadataDetails + CreateKeyMetadataDetails ExternalKeyVersionReference `contributesTo:"body"` + // 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 diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_vault_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_vault_details.go index 0ceed953d9c..5a639164a1c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_vault_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_vault_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// CreateVaultDetails The representation of CreateVaultDetails +// CreateVaultDetails The details of the vault that you want to create. type CreateVaultDetails struct { // The OCID of the compartment where you want to create this vault. @@ -38,6 +37,8 @@ type CreateVaultDetails struct { // For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` + + ExternalKeyManagerMetadata *ExternalKeyManagerMetadata `mandatory:"false" json:"externalKeyManagerMetadata"` } func (m CreateVaultDetails) String() string { @@ -66,16 +67,19 @@ type CreateVaultDetailsVaultTypeEnum string const ( CreateVaultDetailsVaultTypeVirtualPrivate CreateVaultDetailsVaultTypeEnum = "VIRTUAL_PRIVATE" CreateVaultDetailsVaultTypeDefault CreateVaultDetailsVaultTypeEnum = "DEFAULT" + CreateVaultDetailsVaultTypeExternal CreateVaultDetailsVaultTypeEnum = "EXTERNAL" ) var mappingCreateVaultDetailsVaultTypeEnum = map[string]CreateVaultDetailsVaultTypeEnum{ "VIRTUAL_PRIVATE": CreateVaultDetailsVaultTypeVirtualPrivate, "DEFAULT": CreateVaultDetailsVaultTypeDefault, + "EXTERNAL": CreateVaultDetailsVaultTypeExternal, } var mappingCreateVaultDetailsVaultTypeEnumLowerCase = map[string]CreateVaultDetailsVaultTypeEnum{ "virtual_private": CreateVaultDetailsVaultTypeVirtualPrivate, "default": CreateVaultDetailsVaultTypeDefault, + "external": CreateVaultDetailsVaultTypeExternal, } // GetCreateVaultDetailsVaultTypeEnumValues Enumerates the set of values for CreateVaultDetailsVaultTypeEnum @@ -92,6 +96,7 @@ func GetCreateVaultDetailsVaultTypeEnumStringValues() []string { return []string{ "VIRTUAL_PRIVATE", "DEFAULT", + "EXTERNAL", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_vault_replica_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_vault_replica_details.go index 008af3f3877..7c96fba5867 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_vault_replica_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/create_vault_replica_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/decrypt_data_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/decrypt_data_details.go index 77a79a7a0de..45c5dbc66b2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/decrypt_data_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/decrypt_data_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// DecryptDataDetails The representation of DecryptDataDetails +// DecryptDataDetails The details of the encrypted data that you want to decrypt. type DecryptDataDetails struct { // The encrypted data to decrypt. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/decrypted_data.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/decrypted_data.go index 741b6aeac3f..aaeea54f2f4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/decrypted_data.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/decrypted_data.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// DecryptedData The representation of DecryptedData +// DecryptedData The response to a request to decrypt the encrypted data. type DecryptedData struct { // The decrypted data, expressed as a base64-encoded value. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/delete_ekms_private_endpoint_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/delete_ekms_private_endpoint_request_response.go new file mode 100644 index 00000000000..b01998ba29b --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/delete_ekms_private_endpoint_request_response.go @@ -0,0 +1,100 @@ +// 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. + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "net/http" + "strings" +) + +// DeleteEkmsPrivateEndpointRequest wrapper for the DeleteEkmsPrivateEndpoint operation +// +// # See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/DeleteEkmsPrivateEndpoint.go.html to see an example of how to use DeleteEkmsPrivateEndpointRequest. +type DeleteEkmsPrivateEndpointRequest struct { + + // Unique EKMS private endpoint identifier. + EkmsPrivateEndpointId *string `mandatory:"true" contributesTo:"path" name:"ekmsPrivateEndpointId"` + + // 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"` + + // Unique identifier for the request. If provided, the returned request ID + // will include this value. Otherwise, a random request ID will be + // generated by the service. + 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 +} + +func (request DeleteEkmsPrivateEndpointRequest) String() string { + return common.PointerString(request) +} + +// HTTPRequest implements the OCIRequest interface +func (request DeleteEkmsPrivateEndpointRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error) { + + _, err := request.ValidateEnumValue() + if err != nil { + return http.Request{}, err + } + return common.MakeDefaultHTTPRequestWithTaggedStructAndExtraHeaders(method, path, request, extraHeaders) +} + +// BinaryRequestBody implements the OCIRequest interface +func (request DeleteEkmsPrivateEndpointRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool) { + + return nil, false + +} + +// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy. +func (request DeleteEkmsPrivateEndpointRequest) RetryPolicy() *common.RetryPolicy { + return request.RequestMetadata.RetryPolicy +} + +// 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 (request DeleteEkmsPrivateEndpointRequest) ValidateEnumValue() (bool, error) { + errMessage := []string{} + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} + +// DeleteEkmsPrivateEndpointResponse wrapper for the DeleteEkmsPrivateEndpoint operation +type DeleteEkmsPrivateEndpointResponse struct { + + // The underlying http response + RawResponse *http.Response + + // Unique Oracle-assigned identifier for the work request, used to track the progress of the + // operation. + OpcWorkRequestId *string `presentIn:"header" name:"opc-work-request-id"` + + // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about + // a particular request, please provide the request ID. + OpcRequestId *string `presentIn:"header" name:"opc-request-id"` +} + +func (response DeleteEkmsPrivateEndpointResponse) String() string { + return common.PointerString(response) +} + +// HTTPResponse implements the OCIResponse interface +func (response DeleteEkmsPrivateEndpointResponse) HTTPResponse() *http.Response { + return response.RawResponse +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/delete_vault_replica_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/delete_vault_replica_details.go index 37e3e628bd8..f269d489f88 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/delete_vault_replica_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/delete_vault_replica_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/ekms_private_endpoint.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/ekms_private_endpoint.go new file mode 100644 index 00000000000..956a38ab335 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/ekms_private_endpoint.go @@ -0,0 +1,137 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// EkmsPrivateEndpoint EKMS private endpoint created in customer subnet used to connect to external key manager system +type EkmsPrivateEndpoint struct { + + // Unique identifier that is immutable + Id *string `mandatory:"true" json:"id"` + + // Compartment Identifier. + CompartmentId *string `mandatory:"true" json:"compartmentId"` + + // Subnet Identifier + SubnetId *string `mandatory:"true" json:"subnetId"` + + // EKMS Private Endpoint display name + DisplayName *string `mandatory:"true" json:"displayName"` + + // The time the EKMS private endpoint was created. An RFC3339 (https://tools.ietf.org/html/rfc3339) formatted datetime string. + TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"` + + // The current state of the EKMS private endpoint resource. + LifecycleState EkmsPrivateEndpointLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` + + // Private IP of the external key manager system to connect to from the EKMS private endpoint + ExternalKeyManagerIp *string `mandatory:"true" json:"externalKeyManagerIp"` + + // The time the EKMS private endpoint was updated. An RFC3339 (https://tools.ietf.org/html/rfc3339) formatted datetime string. + TimeUpdated *common.SDKTime `mandatory:"false" json:"timeUpdated"` + + // Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. + // Example: `{"bar-key": "value"}` + FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` + + // Usage of predefined tag keys. These predefined keys are scoped to namespaces. + // Example: `{"foo-namespace": {"bar-key": "value"}}` + DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` + + // A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state. + LifecycleDetails *string `mandatory:"false" json:"lifecycleDetails"` + + // The port of the external key manager system + Port *int `mandatory:"false" json:"port"` + + // CABundle to validate TLS certificate of the external key manager system in PEM format + CaBundle *string `mandatory:"false" json:"caBundle"` + + // The IP address in the customer's VCN for the EKMS private endpoint. This is taken from subnet + PrivateEndpointIp *string `mandatory:"false" json:"privateEndpointIp"` +} + +func (m EkmsPrivateEndpoint) 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 EkmsPrivateEndpoint) ValidateEnumValue() (bool, error) { + errMessage := []string{} + if _, ok := GetMappingEkmsPrivateEndpointLifecycleStateEnum(string(m.LifecycleState)); !ok && m.LifecycleState != "" { + errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LifecycleState: %s. Supported values are: %s.", m.LifecycleState, strings.Join(GetEkmsPrivateEndpointLifecycleStateEnumStringValues(), ","))) + } + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} + +// EkmsPrivateEndpointLifecycleStateEnum Enum with underlying type: string +type EkmsPrivateEndpointLifecycleStateEnum string + +// Set of constants representing the allowable values for EkmsPrivateEndpointLifecycleStateEnum +const ( + EkmsPrivateEndpointLifecycleStateCreating EkmsPrivateEndpointLifecycleStateEnum = "CREATING" + EkmsPrivateEndpointLifecycleStateActive EkmsPrivateEndpointLifecycleStateEnum = "ACTIVE" + EkmsPrivateEndpointLifecycleStateDeleting EkmsPrivateEndpointLifecycleStateEnum = "DELETING" + EkmsPrivateEndpointLifecycleStateDeleted EkmsPrivateEndpointLifecycleStateEnum = "DELETED" + EkmsPrivateEndpointLifecycleStateFailed EkmsPrivateEndpointLifecycleStateEnum = "FAILED" +) + +var mappingEkmsPrivateEndpointLifecycleStateEnum = map[string]EkmsPrivateEndpointLifecycleStateEnum{ + "CREATING": EkmsPrivateEndpointLifecycleStateCreating, + "ACTIVE": EkmsPrivateEndpointLifecycleStateActive, + "DELETING": EkmsPrivateEndpointLifecycleStateDeleting, + "DELETED": EkmsPrivateEndpointLifecycleStateDeleted, + "FAILED": EkmsPrivateEndpointLifecycleStateFailed, +} + +var mappingEkmsPrivateEndpointLifecycleStateEnumLowerCase = map[string]EkmsPrivateEndpointLifecycleStateEnum{ + "creating": EkmsPrivateEndpointLifecycleStateCreating, + "active": EkmsPrivateEndpointLifecycleStateActive, + "deleting": EkmsPrivateEndpointLifecycleStateDeleting, + "deleted": EkmsPrivateEndpointLifecycleStateDeleted, + "failed": EkmsPrivateEndpointLifecycleStateFailed, +} + +// GetEkmsPrivateEndpointLifecycleStateEnumValues Enumerates the set of values for EkmsPrivateEndpointLifecycleStateEnum +func GetEkmsPrivateEndpointLifecycleStateEnumValues() []EkmsPrivateEndpointLifecycleStateEnum { + values := make([]EkmsPrivateEndpointLifecycleStateEnum, 0) + for _, v := range mappingEkmsPrivateEndpointLifecycleStateEnum { + values = append(values, v) + } + return values +} + +// GetEkmsPrivateEndpointLifecycleStateEnumStringValues Enumerates the set of values in String for EkmsPrivateEndpointLifecycleStateEnum +func GetEkmsPrivateEndpointLifecycleStateEnumStringValues() []string { + return []string{ + "CREATING", + "ACTIVE", + "DELETING", + "DELETED", + "FAILED", + } +} + +// GetMappingEkmsPrivateEndpointLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum +func GetMappingEkmsPrivateEndpointLifecycleStateEnum(val string) (EkmsPrivateEndpointLifecycleStateEnum, bool) { + enum, ok := mappingEkmsPrivateEndpointLifecycleStateEnumLowerCase[strings.ToLower(val)] + return enum, ok +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/ekms_private_endpoint_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/ekms_private_endpoint_summary.go new file mode 100644 index 00000000000..06e30b3b774 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/ekms_private_endpoint_summary.go @@ -0,0 +1,122 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// EkmsPrivateEndpointSummary EKMS private endpoints summary +type EkmsPrivateEndpointSummary struct { + + // Unique identifier that is immutable + Id *string `mandatory:"true" json:"id"` + + // Subnet Identifier + SubnetId *string `mandatory:"true" json:"subnetId"` + + // Identifier of the compartment this EKMS private endpoint belongs to + CompartmentId *string `mandatory:"true" json:"compartmentId"` + + // The time the EKMS private endpoint was created. An RFC3339 (https://tools.ietf.org/html/rfc3339) formatted datetime string. + TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"` + + // Mutable name of the EKMS private endpoint + DisplayName *string `mandatory:"true" json:"displayName"` + + // The current state of the EKMS private endpoint resource. + LifecycleState EkmsPrivateEndpointSummaryLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` + + // The time the EKMS private endpoint was updated. An RFC3339 (https://tools.ietf.org/html/rfc3339) formatted datetime string. + TimeUpdated *common.SDKTime `mandatory:"false" json:"timeUpdated"` + + // Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. + // Example: `{"bar-key": "value"}` + FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` + + // Usage of predefined tag keys. These predefined keys are scoped to namespaces. + // Example: `{"foo-namespace": {"bar-key": "value"}}` + DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` +} + +func (m EkmsPrivateEndpointSummary) 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 EkmsPrivateEndpointSummary) ValidateEnumValue() (bool, error) { + errMessage := []string{} + if _, ok := GetMappingEkmsPrivateEndpointSummaryLifecycleStateEnum(string(m.LifecycleState)); !ok && m.LifecycleState != "" { + errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LifecycleState: %s. Supported values are: %s.", m.LifecycleState, strings.Join(GetEkmsPrivateEndpointSummaryLifecycleStateEnumStringValues(), ","))) + } + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} + +// EkmsPrivateEndpointSummaryLifecycleStateEnum Enum with underlying type: string +type EkmsPrivateEndpointSummaryLifecycleStateEnum string + +// Set of constants representing the allowable values for EkmsPrivateEndpointSummaryLifecycleStateEnum +const ( + EkmsPrivateEndpointSummaryLifecycleStateCreating EkmsPrivateEndpointSummaryLifecycleStateEnum = "CREATING" + EkmsPrivateEndpointSummaryLifecycleStateActive EkmsPrivateEndpointSummaryLifecycleStateEnum = "ACTIVE" + EkmsPrivateEndpointSummaryLifecycleStateDeleting EkmsPrivateEndpointSummaryLifecycleStateEnum = "DELETING" + EkmsPrivateEndpointSummaryLifecycleStateDeleted EkmsPrivateEndpointSummaryLifecycleStateEnum = "DELETED" + EkmsPrivateEndpointSummaryLifecycleStateFailed EkmsPrivateEndpointSummaryLifecycleStateEnum = "FAILED" +) + +var mappingEkmsPrivateEndpointSummaryLifecycleStateEnum = map[string]EkmsPrivateEndpointSummaryLifecycleStateEnum{ + "CREATING": EkmsPrivateEndpointSummaryLifecycleStateCreating, + "ACTIVE": EkmsPrivateEndpointSummaryLifecycleStateActive, + "DELETING": EkmsPrivateEndpointSummaryLifecycleStateDeleting, + "DELETED": EkmsPrivateEndpointSummaryLifecycleStateDeleted, + "FAILED": EkmsPrivateEndpointSummaryLifecycleStateFailed, +} + +var mappingEkmsPrivateEndpointSummaryLifecycleStateEnumLowerCase = map[string]EkmsPrivateEndpointSummaryLifecycleStateEnum{ + "creating": EkmsPrivateEndpointSummaryLifecycleStateCreating, + "active": EkmsPrivateEndpointSummaryLifecycleStateActive, + "deleting": EkmsPrivateEndpointSummaryLifecycleStateDeleting, + "deleted": EkmsPrivateEndpointSummaryLifecycleStateDeleted, + "failed": EkmsPrivateEndpointSummaryLifecycleStateFailed, +} + +// GetEkmsPrivateEndpointSummaryLifecycleStateEnumValues Enumerates the set of values for EkmsPrivateEndpointSummaryLifecycleStateEnum +func GetEkmsPrivateEndpointSummaryLifecycleStateEnumValues() []EkmsPrivateEndpointSummaryLifecycleStateEnum { + values := make([]EkmsPrivateEndpointSummaryLifecycleStateEnum, 0) + for _, v := range mappingEkmsPrivateEndpointSummaryLifecycleStateEnum { + values = append(values, v) + } + return values +} + +// GetEkmsPrivateEndpointSummaryLifecycleStateEnumStringValues Enumerates the set of values in String for EkmsPrivateEndpointSummaryLifecycleStateEnum +func GetEkmsPrivateEndpointSummaryLifecycleStateEnumStringValues() []string { + return []string{ + "CREATING", + "ACTIVE", + "DELETING", + "DELETED", + "FAILED", + } +} + +// GetMappingEkmsPrivateEndpointSummaryLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum +func GetMappingEkmsPrivateEndpointSummaryLifecycleStateEnum(val string) (EkmsPrivateEndpointSummaryLifecycleStateEnum, bool) { + enum, ok := mappingEkmsPrivateEndpointSummaryLifecycleStateEnumLowerCase[strings.ToLower(val)] + return enum, ok +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/encrypt_data_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/encrypt_data_details.go index 37bb1597532..7af33db8eb2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/encrypt_data_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/encrypt_data_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// EncryptDataDetails The representation of EncryptDataDetails +// EncryptDataDetails The details of the plaintext data that you want to encrypt. type EncryptDataDetails struct { // The OCID of the key to encrypt with. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/encrypted_data.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/encrypted_data.go index 27e2aac1b4d..955f1ac4c1d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/encrypted_data.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/encrypted_data.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// EncryptedData The representation of EncryptedData +// EncryptedData The response to a request to encrypt the plaintext data. type EncryptedData struct { // The encrypted data. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/export_key_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/export_key_details.go index 954e3151e66..24d8603edf3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/export_key_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/export_key_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/exported_key_data.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/exported_key_data.go index 080fb3bb354..0f6db618dfe 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/exported_key_data.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/exported_key_data.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_manager_metadata.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_manager_metadata.go new file mode 100644 index 00000000000..69702265582 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_manager_metadata.go @@ -0,0 +1,43 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// ExternalKeyManagerMetadata Metadata required for accessing External Key manager +type ExternalKeyManagerMetadata struct { + OauthMetadata *OauthMetadata `mandatory:"true" json:"oauthMetadata"` + + // URI of the vault on external key manager. + ExternalVaultEndpointUrl *string `mandatory:"true" json:"externalVaultEndpointUrl"` + + // OCID of private endpoint created by customer. + PrivateEndpointId *string `mandatory:"true" json:"privateEndpointId"` +} + +func (m ExternalKeyManagerMetadata) 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 ExternalKeyManagerMetadata) ValidateEnumValue() (bool, error) { + errMessage := []string{} + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_manager_metadata_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_manager_metadata_summary.go new file mode 100644 index 00000000000..e5c7a4c90a9 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_manager_metadata_summary.go @@ -0,0 +1,47 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// ExternalKeyManagerMetadataSummary Summary about metadata of external key manager to be returned to the customer as a response. +type ExternalKeyManagerMetadataSummary struct { + + // URL of the vault on external key manager. + ExternalVaultEndpointUrl *string `mandatory:"true" json:"externalVaultEndpointUrl"` + + // OCID of the private endpoint. + PrivateEndpointId *string `mandatory:"true" json:"privateEndpointId"` + + // Vendor of the external key manager. + Vendor *string `mandatory:"false" json:"vendor"` + + OauthMetadataSummary *OauthMetadataSummary `mandatory:"false" json:"oauthMetadataSummary"` +} + +func (m ExternalKeyManagerMetadataSummary) 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 ExternalKeyManagerMetadataSummary) ValidateEnumValue() (bool, error) { + errMessage := []string{} + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_reference.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_reference.go new file mode 100644 index 00000000000..ceccd04fea2 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_reference.go @@ -0,0 +1,39 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// ExternalKeyReference A reference to the key on external key manager. +type ExternalKeyReference struct { + + // ExternalKeyId refers to the globally unique key Id associated with the key created in external vault in CTM + ExternalKeyId *string `mandatory:"true" json:"externalKeyId"` +} + +func (m ExternalKeyReference) 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 ExternalKeyReference) ValidateEnumValue() (bool, error) { + errMessage := []string{} + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_reference_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_reference_details.go new file mode 100644 index 00000000000..bd29b002216 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_reference_details.go @@ -0,0 +1,42 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// ExternalKeyReferenceDetails Key reference data to be returned to the customer as a response. +type ExternalKeyReferenceDetails struct { + + // ExternalKeyId refers to the globally unique key Id associated with the key created in external vault in CTM. + ExternalKeyId *string `mandatory:"true" json:"externalKeyId"` + + // Key version ID associated with the external key. + ExternalKeyVersionId *string `mandatory:"true" json:"externalKeyVersionId"` +} + +func (m ExternalKeyReferenceDetails) 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 ExternalKeyReferenceDetails) ValidateEnumValue() (bool, error) { + errMessage := []string{} + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_version_reference.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_version_reference.go new file mode 100644 index 00000000000..003920ae484 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/external_key_version_reference.go @@ -0,0 +1,39 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// ExternalKeyVersionReference A reference to key version on external key manager. +type ExternalKeyVersionReference struct { + + // Key version ID associated with the external key. + ExternalKeyVersionId *string `mandatory:"false" json:"externalKeyVersionId"` +} + +func (m ExternalKeyVersionReference) 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 ExternalKeyVersionReference) ValidateEnumValue() (bool, error) { + errMessage := []string{} + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/generate_key_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/generate_key_details.go index 388a6b0e116..0175f1a8100 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/generate_key_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/generate_key_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// GenerateKeyDetails The representation of GenerateKeyDetails +// GenerateKeyDetails The details of the key that you want to encrypt or decrypt data. type GenerateKeyDetails struct { // If true, the generated key is also returned unencrypted. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/generated_key.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/generated_key.go index 8eb8094a9cb..b969b71499a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/generated_key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/generated_key.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// GeneratedKey The representation of GeneratedKey +// GeneratedKey The reponse to the regeuest to generate the key to encrypt or decrypt the data. type GeneratedKey struct { // The encrypted data encryption key generated from a master encryption key. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/get_ekms_private_endpoint_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/get_ekms_private_endpoint_request_response.go new file mode 100644 index 00000000000..cba85416eaa --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/get_ekms_private_endpoint_request_response.go @@ -0,0 +1,95 @@ +// 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. + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "net/http" + "strings" +) + +// GetEkmsPrivateEndpointRequest wrapper for the GetEkmsPrivateEndpoint operation +// +// # See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GetEkmsPrivateEndpoint.go.html to see an example of how to use GetEkmsPrivateEndpointRequest. +type GetEkmsPrivateEndpointRequest struct { + + // Unique EKMS private endpoint identifier. + EkmsPrivateEndpointId *string `mandatory:"true" contributesTo:"path" name:"ekmsPrivateEndpointId"` + + // Unique identifier for the request. If provided, the returned request ID + // will include this value. Otherwise, a random request ID will be + // generated by the service. + 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 +} + +func (request GetEkmsPrivateEndpointRequest) String() string { + return common.PointerString(request) +} + +// HTTPRequest implements the OCIRequest interface +func (request GetEkmsPrivateEndpointRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error) { + + _, err := request.ValidateEnumValue() + if err != nil { + return http.Request{}, err + } + return common.MakeDefaultHTTPRequestWithTaggedStructAndExtraHeaders(method, path, request, extraHeaders) +} + +// BinaryRequestBody implements the OCIRequest interface +func (request GetEkmsPrivateEndpointRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool) { + + return nil, false + +} + +// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy. +func (request GetEkmsPrivateEndpointRequest) RetryPolicy() *common.RetryPolicy { + return request.RequestMetadata.RetryPolicy +} + +// 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 (request GetEkmsPrivateEndpointRequest) ValidateEnumValue() (bool, error) { + errMessage := []string{} + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} + +// GetEkmsPrivateEndpointResponse wrapper for the GetEkmsPrivateEndpoint operation +type GetEkmsPrivateEndpointResponse struct { + + // The underlying http response + RawResponse *http.Response + + // The EkmsPrivateEndpoint instance + EkmsPrivateEndpoint `presentIn:"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 `presentIn:"header" name:"opc-request-id"` + + // For optimistic concurrency control. See `if-match`. + Etag *string `presentIn:"header" name:"etag"` +} + +func (response GetEkmsPrivateEndpointResponse) String() string { + return common.PointerString(response) +} + +// HTTPResponse implements the OCIResponse interface +func (response GetEkmsPrivateEndpointResponse) HTTPResponse() *http.Response { + return response.RawResponse +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/import_key_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/import_key_details.go index 70c9976d5ce..f05f3b4169e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/import_key_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/import_key_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// ImportKeyDetails The representation of ImportKeyDetails +// ImportKeyDetails The details of the Key that you wish to import. type ImportKeyDetails struct { // The OCID of the compartment that contains this key. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/import_key_version_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/import_key_version_details.go index 5f1533921e7..d84d63f1774 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/import_key_version_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/import_key_version_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// ImportKeyVersionDetails The representation of ImportKeyVersionDetails +// ImportKeyVersionDetails The details of the KeyVersion that you wish to import. type ImportKeyVersionDetails struct { WrappedImportKey *WrappedImportKey `mandatory:"true" json:"wrappedImportKey"` diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key.go index 465db81a1ef..7da58e306d8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// Key The representation of Key +// Key The logical entities that represent one or more key versions, each of which contains cryptographic material. type Key struct { // The OCID of the compartment that contains this master encryption key. @@ -62,6 +61,9 @@ type Key struct { // the HSM. A protection mode of `SOFTWARE` means that the key persists on the server, protected by the vault's RSA wrapping key which persists // on the HSM. All cryptographic operations that use a key with a protection mode of `SOFTWARE` are performed on the server. By default, // a key's protection mode is set to `HSM`. You can't change a key's protection mode after the key is created or imported. + // A protection mode of `EXTERNAL` mean that the key persists on the customer's external key manager which is hosted externally outside of oracle. + // Oracle only hold a reference to that key. + // All cryptographic operations that use a key with a protection mode of `EXTERNAL` are performed by external key manager. ProtectionMode KeyProtectionModeEnum `mandatory:"false" json:"protectionMode,omitempty"` // An optional property indicating when to delete the key, expressed in RFC 3339 (https://tools.ietf.org/html/rfc3339) timestamp format. @@ -73,7 +75,10 @@ type Key struct { ReplicaDetails *KeyReplicaDetails `mandatory:"false" json:"replicaDetails"` + // A Boolean value that indicates whether the Key belongs to primary Vault or replica vault. IsPrimary *bool `mandatory:"false" json:"isPrimary"` + + ExternalKeyReferenceDetails *ExternalKeyReferenceDetails `mandatory:"false" json:"externalKeyReferenceDetails"` } func (m Key) String() string { @@ -105,16 +110,19 @@ type KeyProtectionModeEnum string const ( KeyProtectionModeHsm KeyProtectionModeEnum = "HSM" KeyProtectionModeSoftware KeyProtectionModeEnum = "SOFTWARE" + KeyProtectionModeExternal KeyProtectionModeEnum = "EXTERNAL" ) var mappingKeyProtectionModeEnum = map[string]KeyProtectionModeEnum{ "HSM": KeyProtectionModeHsm, "SOFTWARE": KeyProtectionModeSoftware, + "EXTERNAL": KeyProtectionModeExternal, } var mappingKeyProtectionModeEnumLowerCase = map[string]KeyProtectionModeEnum{ "hsm": KeyProtectionModeHsm, "software": KeyProtectionModeSoftware, + "external": KeyProtectionModeExternal, } // GetKeyProtectionModeEnumValues Enumerates the set of values for KeyProtectionModeEnum @@ -131,6 +139,7 @@ func GetKeyProtectionModeEnumStringValues() []string { return []string{ "HSM", "SOFTWARE", + "EXTERNAL", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_replica_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_replica_details.go index f4c599e7383..7ab10fad435 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_replica_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_replica_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_shape.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_shape.go index c06e9fef2db..d382d0e0df8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_shape.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_shape.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -19,7 +18,7 @@ import ( // KeyShape The cryptographic properties of a key. type KeyShape struct { - // The algorithm used by a key's key versions to encrypt or decrypt. + // The algorithm used by a key's key versions to encrypt or decrypt. Only AES algorithm is supported for `External` keys. Algorithm KeyShapeAlgorithmEnum `mandatory:"true" json:"algorithm"` // The length of the key in bytes, expressed as an integer. Supported values include the following: diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_summary.go index 48df8be7d8a..413993e1b4a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_summary.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// KeySummary The representation of KeySummary +// KeySummary The details of the Key. type KeySummary struct { // The OCID of the compartment that contains the key. @@ -55,10 +54,15 @@ type KeySummary struct { // the HSM. A protection mode of `SOFTWARE` means that the key persists on the server, protected by the vault's RSA wrapping key which persists // on the HSM. All cryptographic operations that use a key with a protection mode of `SOFTWARE` are performed on the server. By default, // a key's protection mode is set to `HSM`. You can't change a key's protection mode after the key is created or imported. + // A protection mode of `EXTERNAL` mean that the key persists on the customer's external key manager which is hosted externally outside of oracle. + // Oracle only hold a reference to that key. + // All cryptographic operations that use a key with a protection mode of `EXTERNAL` are performed by external key manager. ProtectionMode KeySummaryProtectionModeEnum `mandatory:"false" json:"protectionMode,omitempty"` // The algorithm used by a key's key versions to encrypt or decrypt data. Algorithm KeySummaryAlgorithmEnum `mandatory:"false" json:"algorithm,omitempty"` + + ExternalKeyReferenceDetails *ExternalKeyReferenceDetails `mandatory:"false" json:"externalKeyReferenceDetails"` } func (m KeySummary) String() string { @@ -179,16 +183,19 @@ type KeySummaryProtectionModeEnum string const ( KeySummaryProtectionModeHsm KeySummaryProtectionModeEnum = "HSM" KeySummaryProtectionModeSoftware KeySummaryProtectionModeEnum = "SOFTWARE" + KeySummaryProtectionModeExternal KeySummaryProtectionModeEnum = "EXTERNAL" ) var mappingKeySummaryProtectionModeEnum = map[string]KeySummaryProtectionModeEnum{ "HSM": KeySummaryProtectionModeHsm, "SOFTWARE": KeySummaryProtectionModeSoftware, + "EXTERNAL": KeySummaryProtectionModeExternal, } var mappingKeySummaryProtectionModeEnumLowerCase = map[string]KeySummaryProtectionModeEnum{ "hsm": KeySummaryProtectionModeHsm, "software": KeySummaryProtectionModeSoftware, + "external": KeySummaryProtectionModeExternal, } // GetKeySummaryProtectionModeEnumValues Enumerates the set of values for KeySummaryProtectionModeEnum @@ -205,6 +212,7 @@ func GetKeySummaryProtectionModeEnumStringValues() []string { return []string{ "HSM", "SOFTWARE", + "EXTERNAL", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version.go index 302bb4145d7..69410704ae0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// KeyVersion The representation of KeyVersion +// KeyVersion The details of the KeyVersion associated with the Key. type KeyVersion struct { // The OCID of the compartment that contains this key version. @@ -56,7 +55,10 @@ type KeyVersion struct { ReplicaDetails *KeyVersionReplicaDetails `mandatory:"false" json:"replicaDetails"` + // A Boolean value that indicates whether the KeyVersion belongs to primary Vault or replica Vault. IsPrimary *bool `mandatory:"false" json:"isPrimary"` + + ExternalKeyReferenceDetails *ExternalKeyReferenceDetails `mandatory:"false" json:"externalKeyReferenceDetails"` } func (m KeyVersion) String() string { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version_replica_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version_replica_details.go index 9c637a8dc9a..f9602db7081 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version_replica_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version_replica_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version_summary.go index 2b3fd7cc4b5..132ad1c6cfa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/key_version_summary.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// KeyVersionSummary The representation of KeyVersionSummary +// KeyVersionSummary The details of the KeyVersion. type KeyVersionSummary struct { // The OCID of the compartment that contains this key version. @@ -45,6 +44,8 @@ type KeyVersionSummary struct { // An optional property to indicate when to delete the key version, expressed in RFC 3339 (https://tools.ietf.org/html/rfc3339) timestamp format. // Example: `2019-04-03T21:10:29.600Z` TimeOfDeletion *common.SDKTime `mandatory:"false" json:"timeOfDeletion"` + + ExternalKeyReferenceDetails *ExternalKeyReferenceDetails `mandatory:"false" json:"externalKeyReferenceDetails"` } func (m KeyVersionSummary) String() string { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_ekm_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_ekm_client.go new file mode 100644 index 00000000000..1c384d7b43c --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_ekm_client.go @@ -0,0 +1,382 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "context" + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "github.com/oracle/oci-go-sdk/v65/common/auth" + "net/http" +) + +// EkmClient a client for Ekm +type EkmClient struct { + common.BaseClient + config *common.ConfigurationProvider +} + +// NewEkmClientWithConfigurationProvider Creates a new default Ekm client with the given configuration provider. +// the configuration provider will be used for the default signer as well as reading the region +func NewEkmClientWithConfigurationProvider(configProvider common.ConfigurationProvider) (client EkmClient, err error) { + if enabled := common.CheckForEnabledServices("keymanagement"); !enabled { + return client, fmt.Errorf("the Alloy configuration disabled this service, this behavior is controlled by OciSdkEnabledServicesMap variables. Please check if your local alloy_config file configured the service you're targeting or contact the cloud provider on the availability of this service") + } + provider, err := auth.GetGenericConfigurationProvider(configProvider) + if err != nil { + return client, err + } + baseClient, e := common.NewClientWithConfig(provider) + if e != nil { + return client, e + } + return newEkmClientFromBaseClient(baseClient, provider) +} + +// NewEkmClientWithOboToken Creates a new default Ekm client with the given configuration provider. +// The obotoken will be added to default headers and signed; the configuration provider will be used for the signer +// +// as well as reading the region +func NewEkmClientWithOboToken(configProvider common.ConfigurationProvider, oboToken string) (client EkmClient, err error) { + baseClient, err := common.NewClientWithOboToken(configProvider, oboToken) + if err != nil { + return client, err + } + + return newEkmClientFromBaseClient(baseClient, configProvider) +} + +func newEkmClientFromBaseClient(baseClient common.BaseClient, configProvider common.ConfigurationProvider) (client EkmClient, err error) { + // Ekm service default circuit breaker is enabled + baseClient.Configuration.CircuitBreaker = common.NewCircuitBreaker(common.DefaultCircuitBreakerSettingWithServiceName("Ekm")) + common.ConfigCircuitBreakerFromEnvVar(&baseClient) + common.ConfigCircuitBreakerFromGlobalVar(&baseClient) + + client = EkmClient{BaseClient: baseClient} + client.BasePath = "" + err = client.setConfigurationProvider(configProvider) + return +} + +// SetRegion overrides the region of this client. +func (client *EkmClient) SetRegion(region string) { + client.Host = common.StringToRegion(region).EndpointForTemplate("kms", "https://kms.{region}.{secondLevelDomain}") +} + +// SetConfigurationProvider sets the configuration provider including the region, returns an error if is not valid +func (client *EkmClient) setConfigurationProvider(configProvider common.ConfigurationProvider) error { + if ok, err := common.IsConfigurationProviderValid(configProvider); !ok { + return err + } + + // Error has been checked already + region, _ := configProvider.Region() + client.SetRegion(region) + if client.Host == "" { + return fmt.Errorf("invalid region or Host. Endpoint cannot be constructed without endpointServiceName or serviceEndpointTemplate for a dotted region") + } + client.config = &configProvider + return nil +} + +// ConfigurationProvider the ConfigurationProvider used in this client, or null if none set +func (client *EkmClient) ConfigurationProvider() *common.ConfigurationProvider { + return client.config +} + +// CreateEkmsPrivateEndpoint Create a new EKMS private endpoint used to connect to external key manager system +// +// See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CreateEkmsPrivateEndpoint.go.html to see an example of how to use CreateEkmsPrivateEndpoint API. +func (client EkmClient) CreateEkmsPrivateEndpoint(ctx context.Context, request CreateEkmsPrivateEndpointRequest) (response CreateEkmsPrivateEndpointResponse, err error) { + var ociResponse common.OCIResponse + policy := common.NoRetryPolicy() + if client.RetryPolicy() != nil { + policy = *client.RetryPolicy() + } + if request.RetryPolicy() != nil { + policy = *request.RetryPolicy() + } + + if !(request.OpcRetryToken != nil && *request.OpcRetryToken != "") { + request.OpcRetryToken = common.String(common.RetryToken()) + } + + ociResponse, err = common.Retry(ctx, request, client.createEkmsPrivateEndpoint, policy) + if err != nil { + if ociResponse != nil { + if httpResponse := ociResponse.HTTPResponse(); httpResponse != nil { + opcRequestId := httpResponse.Header.Get("opc-request-id") + response = CreateEkmsPrivateEndpointResponse{RawResponse: httpResponse, OpcRequestId: &opcRequestId} + } else { + response = CreateEkmsPrivateEndpointResponse{} + } + } + return + } + if convertedResponse, ok := ociResponse.(CreateEkmsPrivateEndpointResponse); ok { + response = convertedResponse + } else { + err = fmt.Errorf("failed to convert OCIResponse into CreateEkmsPrivateEndpointResponse") + } + return +} + +// createEkmsPrivateEndpoint implements the OCIOperation interface (enables retrying operations) +func (client EkmClient) createEkmsPrivateEndpoint(ctx context.Context, request common.OCIRequest, binaryReqBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (common.OCIResponse, error) { + + httpRequest, err := request.HTTPRequest(http.MethodPost, "/20180608/ekmsPrivateEndpoints", binaryReqBody, extraHeaders) + if err != nil { + return nil, err + } + + var response CreateEkmsPrivateEndpointResponse + var httpResponse *http.Response + httpResponse, err = client.Call(ctx, &httpRequest) + defer common.CloseBodyIfValid(httpResponse) + response.RawResponse = httpResponse + if err != nil { + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/EkmsPrivateEndpoint/CreateEkmsPrivateEndpoint" + err = common.PostProcessServiceError(err, "Ekm", "CreateEkmsPrivateEndpoint", apiReferenceLink) + return response, err + } + + err = common.UnmarshalResponse(httpResponse, &response) + return response, err +} + +// DeleteEkmsPrivateEndpoint Deletes EKMS private endpoint by identifier. +// +// See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/DeleteEkmsPrivateEndpoint.go.html to see an example of how to use DeleteEkmsPrivateEndpoint API. +func (client EkmClient) DeleteEkmsPrivateEndpoint(ctx context.Context, request DeleteEkmsPrivateEndpointRequest) (response DeleteEkmsPrivateEndpointResponse, err error) { + var ociResponse common.OCIResponse + policy := common.NoRetryPolicy() + if client.RetryPolicy() != nil { + policy = *client.RetryPolicy() + } + if request.RetryPolicy() != nil { + policy = *request.RetryPolicy() + } + ociResponse, err = common.Retry(ctx, request, client.deleteEkmsPrivateEndpoint, policy) + if err != nil { + if ociResponse != nil { + if httpResponse := ociResponse.HTTPResponse(); httpResponse != nil { + opcRequestId := httpResponse.Header.Get("opc-request-id") + response = DeleteEkmsPrivateEndpointResponse{RawResponse: httpResponse, OpcRequestId: &opcRequestId} + } else { + response = DeleteEkmsPrivateEndpointResponse{} + } + } + return + } + if convertedResponse, ok := ociResponse.(DeleteEkmsPrivateEndpointResponse); ok { + response = convertedResponse + } else { + err = fmt.Errorf("failed to convert OCIResponse into DeleteEkmsPrivateEndpointResponse") + } + return +} + +// deleteEkmsPrivateEndpoint implements the OCIOperation interface (enables retrying operations) +func (client EkmClient) deleteEkmsPrivateEndpoint(ctx context.Context, request common.OCIRequest, binaryReqBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (common.OCIResponse, error) { + + httpRequest, err := request.HTTPRequest(http.MethodDelete, "/20180608/ekmsPrivateEndpoints/{ekmsPrivateEndpointId}", binaryReqBody, extraHeaders) + if err != nil { + return nil, err + } + + var response DeleteEkmsPrivateEndpointResponse + var httpResponse *http.Response + httpResponse, err = client.Call(ctx, &httpRequest) + defer common.CloseBodyIfValid(httpResponse) + response.RawResponse = httpResponse + if err != nil { + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/EkmsPrivateEndpoint/DeleteEkmsPrivateEndpoint" + err = common.PostProcessServiceError(err, "Ekm", "DeleteEkmsPrivateEndpoint", apiReferenceLink) + return response, err + } + + err = common.UnmarshalResponse(httpResponse, &response) + return response, err +} + +// GetEkmsPrivateEndpoint Gets a specific EKMS private by identifier. +// +// See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GetEkmsPrivateEndpoint.go.html to see an example of how to use GetEkmsPrivateEndpoint API. +func (client EkmClient) GetEkmsPrivateEndpoint(ctx context.Context, request GetEkmsPrivateEndpointRequest) (response GetEkmsPrivateEndpointResponse, err error) { + var ociResponse common.OCIResponse + policy := common.NoRetryPolicy() + if client.RetryPolicy() != nil { + policy = *client.RetryPolicy() + } + if request.RetryPolicy() != nil { + policy = *request.RetryPolicy() + } + ociResponse, err = common.Retry(ctx, request, client.getEkmsPrivateEndpoint, policy) + if err != nil { + if ociResponse != nil { + if httpResponse := ociResponse.HTTPResponse(); httpResponse != nil { + opcRequestId := httpResponse.Header.Get("opc-request-id") + response = GetEkmsPrivateEndpointResponse{RawResponse: httpResponse, OpcRequestId: &opcRequestId} + } else { + response = GetEkmsPrivateEndpointResponse{} + } + } + return + } + if convertedResponse, ok := ociResponse.(GetEkmsPrivateEndpointResponse); ok { + response = convertedResponse + } else { + err = fmt.Errorf("failed to convert OCIResponse into GetEkmsPrivateEndpointResponse") + } + return +} + +// getEkmsPrivateEndpoint implements the OCIOperation interface (enables retrying operations) +func (client EkmClient) getEkmsPrivateEndpoint(ctx context.Context, request common.OCIRequest, binaryReqBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (common.OCIResponse, error) { + + httpRequest, err := request.HTTPRequest(http.MethodGet, "/20180608/ekmsPrivateEndpoints/{ekmsPrivateEndpointId}", binaryReqBody, extraHeaders) + if err != nil { + return nil, err + } + + var response GetEkmsPrivateEndpointResponse + var httpResponse *http.Response + httpResponse, err = client.Call(ctx, &httpRequest) + defer common.CloseBodyIfValid(httpResponse) + response.RawResponse = httpResponse + if err != nil { + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/EkmsPrivateEndpoint/GetEkmsPrivateEndpoint" + err = common.PostProcessServiceError(err, "Ekm", "GetEkmsPrivateEndpoint", apiReferenceLink) + return response, err + } + + err = common.UnmarshalResponse(httpResponse, &response) + return response, err +} + +// ListEkmsPrivateEndpoints Returns a list of all the EKMS private endpoints in the specified compartment. +// +// See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ListEkmsPrivateEndpoints.go.html to see an example of how to use ListEkmsPrivateEndpoints API. +func (client EkmClient) ListEkmsPrivateEndpoints(ctx context.Context, request ListEkmsPrivateEndpointsRequest) (response ListEkmsPrivateEndpointsResponse, err error) { + var ociResponse common.OCIResponse + policy := common.NoRetryPolicy() + if client.RetryPolicy() != nil { + policy = *client.RetryPolicy() + } + if request.RetryPolicy() != nil { + policy = *request.RetryPolicy() + } + ociResponse, err = common.Retry(ctx, request, client.listEkmsPrivateEndpoints, policy) + if err != nil { + if ociResponse != nil { + if httpResponse := ociResponse.HTTPResponse(); httpResponse != nil { + opcRequestId := httpResponse.Header.Get("opc-request-id") + response = ListEkmsPrivateEndpointsResponse{RawResponse: httpResponse, OpcRequestId: &opcRequestId} + } else { + response = ListEkmsPrivateEndpointsResponse{} + } + } + return + } + if convertedResponse, ok := ociResponse.(ListEkmsPrivateEndpointsResponse); ok { + response = convertedResponse + } else { + err = fmt.Errorf("failed to convert OCIResponse into ListEkmsPrivateEndpointsResponse") + } + return +} + +// listEkmsPrivateEndpoints implements the OCIOperation interface (enables retrying operations) +func (client EkmClient) listEkmsPrivateEndpoints(ctx context.Context, request common.OCIRequest, binaryReqBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (common.OCIResponse, error) { + + httpRequest, err := request.HTTPRequest(http.MethodGet, "/20180608/ekmsPrivateEndpoints", binaryReqBody, extraHeaders) + if err != nil { + return nil, err + } + + var response ListEkmsPrivateEndpointsResponse + var httpResponse *http.Response + httpResponse, err = client.Call(ctx, &httpRequest) + defer common.CloseBodyIfValid(httpResponse) + response.RawResponse = httpResponse + if err != nil { + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/EkmsPrivateEndpointSummary/ListEkmsPrivateEndpoints" + err = common.PostProcessServiceError(err, "Ekm", "ListEkmsPrivateEndpoints", apiReferenceLink) + return response, err + } + + err = common.UnmarshalResponse(httpResponse, &response) + return response, err +} + +// UpdateEkmsPrivateEndpoint Updates EKMS private endpoint. +// +// See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/UpdateEkmsPrivateEndpoint.go.html to see an example of how to use UpdateEkmsPrivateEndpoint API. +func (client EkmClient) UpdateEkmsPrivateEndpoint(ctx context.Context, request UpdateEkmsPrivateEndpointRequest) (response UpdateEkmsPrivateEndpointResponse, err error) { + var ociResponse common.OCIResponse + policy := common.NoRetryPolicy() + if client.RetryPolicy() != nil { + policy = *client.RetryPolicy() + } + if request.RetryPolicy() != nil { + policy = *request.RetryPolicy() + } + ociResponse, err = common.Retry(ctx, request, client.updateEkmsPrivateEndpoint, policy) + if err != nil { + if ociResponse != nil { + if httpResponse := ociResponse.HTTPResponse(); httpResponse != nil { + opcRequestId := httpResponse.Header.Get("opc-request-id") + response = UpdateEkmsPrivateEndpointResponse{RawResponse: httpResponse, OpcRequestId: &opcRequestId} + } else { + response = UpdateEkmsPrivateEndpointResponse{} + } + } + return + } + if convertedResponse, ok := ociResponse.(UpdateEkmsPrivateEndpointResponse); ok { + response = convertedResponse + } else { + err = fmt.Errorf("failed to convert OCIResponse into UpdateEkmsPrivateEndpointResponse") + } + return +} + +// updateEkmsPrivateEndpoint implements the OCIOperation interface (enables retrying operations) +func (client EkmClient) updateEkmsPrivateEndpoint(ctx context.Context, request common.OCIRequest, binaryReqBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (common.OCIResponse, error) { + + httpRequest, err := request.HTTPRequest(http.MethodPut, "/20180608/ekmsPrivateEndpoints/{ekmsPrivateEndpointId}", binaryReqBody, extraHeaders) + if err != nil { + return nil, err + } + + var response UpdateEkmsPrivateEndpointResponse + var httpResponse *http.Response + httpResponse, err = client.Call(ctx, &httpRequest) + defer common.CloseBodyIfValid(httpResponse) + response.RawResponse = httpResponse + if err != nil { + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/EkmsPrivateEndpoint/UpdateEkmsPrivateEndpoint" + err = common.PostProcessServiceError(err, "Ekm", "UpdateEkmsPrivateEndpoint", apiReferenceLink) + return response, err + } + + err = common.UnmarshalResponse(httpResponse, &response) + return response, err +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmscrypto_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmscrypto_client.go index f67610f451a..7698cc5d138 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmscrypto_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmscrypto_client.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -128,7 +127,7 @@ func (client KmsCryptoClient) decrypt(ctx context.Context, request common.OCIReq defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/DecryptedData/Decrypt" err = common.PostProcessServiceError(err, "KmsCrypto", "Decrypt", apiReferenceLink) return response, err } @@ -186,7 +185,7 @@ func (client KmsCryptoClient) encrypt(ctx context.Context, request common.OCIReq defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/EncryptedData/Encrypt" err = common.PostProcessServiceError(err, "KmsCrypto", "Encrypt", apiReferenceLink) return response, err } @@ -198,6 +197,7 @@ func (client KmsCryptoClient) encrypt(ctx context.Context, request common.OCIReq // ExportKey Exports a specific version of a master encryption key according to the details of the request. For their protection, // keys that you create and store on a hardware security module (HSM) can never leave the HSM. You can only export keys // stored on the server. For export, the key version is encrypted by an RSA public key that you provide. +// This operation is not supported for keys having protection mode `EXTERNAL`. // // See also // @@ -245,7 +245,7 @@ func (client KmsCryptoClient) exportKey(ctx context.Context, request common.OCIR defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/ExportedKeyData/ExportKey" err = common.PostProcessServiceError(err, "KmsCrypto", "ExportKey", apiReferenceLink) return response, err } @@ -302,7 +302,7 @@ func (client KmsCryptoClient) generateDataEncryptionKey(ctx context.Context, req defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/GeneratedKey/GenerateDataEncryptionKey" err = common.PostProcessServiceError(err, "KmsCrypto", "GenerateDataEncryptionKey", apiReferenceLink) return response, err } @@ -314,6 +314,7 @@ func (client KmsCryptoClient) generateDataEncryptionKey(ctx context.Context, req // Sign Creates a digital signature for a message or message digest by using the private key of a public-private key pair, // also known as an asymmetric key. To verify the generated signature, you can use the Verify (https://docs.cloud.oracle.com/api/#/en/key/latest/VerifiedData/Verify) // operation. Or, if you want to validate the signature outside of the service, you can do so by using the public key of the same asymmetric key. +// This operation is not supported for keys having protection mode `EXTERNAL`. // // See also // @@ -361,7 +362,7 @@ func (client KmsCryptoClient) sign(ctx context.Context, request common.OCIReques defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/SignedData/Sign" err = common.PostProcessServiceError(err, "KmsCrypto", "Sign", apiReferenceLink) return response, err } @@ -373,6 +374,7 @@ func (client KmsCryptoClient) sign(ctx context.Context, request common.OCIReques // Verify Verifies a digital signature that was generated by the Sign (https://docs.cloud.oracle.com/api/#/en/key/latest/SignedData/Sign) operation // by using the public key of the same asymmetric key that was used to sign the data. If you want to validate the // digital signature outside of the service, you can do so by using the public key of the asymmetric key. +// This operation is not supported for keys having protection mode `EXTERNAL`. // // See also // @@ -420,7 +422,7 @@ func (client KmsCryptoClient) verify(ctx context.Context, request common.OCIRequ defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/VerifiedData/Verify" err = common.PostProcessServiceError(err, "KmsCrypto", "Verify", apiReferenceLink) return response, err } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsmanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsmanagement_client.go index c737c9afd51..00f6637cb8a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsmanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsmanagement_client.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -134,7 +133,7 @@ func (client KmsManagementClient) backupKey(ctx context.Context, request common. defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/BackupKey" err = common.PostProcessServiceError(err, "KmsManagement", "BackupKey", apiReferenceLink) return response, err } @@ -202,7 +201,7 @@ func (client KmsManagementClient) cancelKeyDeletion(ctx context.Context, request defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/CancelKeyDeletion" err = common.PostProcessServiceError(err, "KmsManagement", "CancelKeyDeletion", apiReferenceLink) return response, err } @@ -270,7 +269,7 @@ func (client KmsManagementClient) cancelKeyVersionDeletion(ctx context.Context, defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/KeyVersion/CancelKeyVersionDeletion" err = common.PostProcessServiceError(err, "KmsManagement", "CancelKeyVersionDeletion", apiReferenceLink) return response, err } @@ -338,7 +337,7 @@ func (client KmsManagementClient) changeKeyCompartment(ctx context.Context, requ defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/ChangeKeyCompartment" err = common.PostProcessServiceError(err, "KmsManagement", "ChangeKeyCompartment", apiReferenceLink) return response, err } @@ -404,7 +403,7 @@ func (client KmsManagementClient) createKey(ctx context.Context, request common. defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/CreateKey" err = common.PostProcessServiceError(err, "KmsManagement", "CreateKey", apiReferenceLink) return response, err } @@ -471,7 +470,7 @@ func (client KmsManagementClient) createKeyVersion(ctx context.Context, request defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/KeyVersion/CreateKeyVersion" err = common.PostProcessServiceError(err, "KmsManagement", "CreateKeyVersion", apiReferenceLink) return response, err } @@ -538,7 +537,7 @@ func (client KmsManagementClient) disableKey(ctx context.Context, request common defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/DisableKey" err = common.PostProcessServiceError(err, "KmsManagement", "DisableKey", apiReferenceLink) return response, err } @@ -605,7 +604,7 @@ func (client KmsManagementClient) enableKey(ctx context.Context, request common. defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/EnableKey" err = common.PostProcessServiceError(err, "KmsManagement", "EnableKey", apiReferenceLink) return response, err } @@ -666,7 +665,7 @@ func (client KmsManagementClient) getKey(ctx context.Context, request common.OCI defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/GetKey" err = common.PostProcessServiceError(err, "KmsManagement", "GetKey", apiReferenceLink) return response, err } @@ -727,7 +726,7 @@ func (client KmsManagementClient) getKeyVersion(ctx context.Context, request com defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/KeyVersion/GetKeyVersion" err = common.PostProcessServiceError(err, "KmsManagement", "GetKeyVersion", apiReferenceLink) return response, err } @@ -787,7 +786,7 @@ func (client KmsManagementClient) getReplicationStatus(ctx context.Context, requ defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/ReplicationStatusDetails/GetReplicationStatus" err = common.PostProcessServiceError(err, "KmsManagement", "GetReplicationStatus", apiReferenceLink) return response, err } @@ -845,7 +844,7 @@ func (client KmsManagementClient) getWrappingKey(ctx context.Context, request co defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/WrappingKey/GetWrappingKey" err = common.PostProcessServiceError(err, "KmsManagement", "GetWrappingKey", apiReferenceLink) return response, err } @@ -854,9 +853,12 @@ func (client KmsManagementClient) getWrappingKey(ctx context.Context, request co return response, err } -// ImportKey Imports AES key material to create a new key with. The key material must be base64-encoded and -// wrapped by the vault's public RSA wrapping key before you can import it. Key Management supports AES symmetric keys -// that are exactly 16, 24, or 32 bytes. Furthermore, the key length must match what you specify at the time of import. +// ImportKey Imports AES and RSA keys to create a new key. The key material must be base64-encoded +// and wrapped by the vault's public RSA wrapping key before you can import it. +// Key Management supports both RSA and AES keys. The AES keys are symmetric keys +// of length 128 bits (16 bytes), 192 bits (24 bytes), or 256 bits (32 bytes), and the RSA keys are asymmetric keys of length 2048 bits (256 bytes), 3072 bits (384 bytes), and 4096 bits (512 bytes). +// Furthermore, the key length must match what you specify at the time of import. When importing an asymmetric key, +// only private key must be wrapped in PKCS8 format while the corresponding public key is generated internally by KMS. // // See also // @@ -909,7 +911,7 @@ func (client KmsManagementClient) importKey(ctx context.Context, request common. defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/ImportKey" err = common.PostProcessServiceError(err, "KmsManagement", "ImportKey", apiReferenceLink) return response, err } @@ -918,11 +920,12 @@ func (client KmsManagementClient) importKey(ctx context.Context, request common. return response, err } -// ImportKeyVersion Imports AES key material to create a new key version with, and then rotates the key to begin using the new +// ImportKeyVersion Imports AES key material to create a new key version and then rotate the key to begin using the new // key version. The key material must be base64-encoded and wrapped by the vault's public RSA wrapping key // before you can import it. Key Management supports AES symmetric keys that are exactly 16, 24, or 32 bytes. // Furthermore, the key length must match the length of the specified key and what you specify as the length -// at the time of import. +// at the time of import. When importing an asymmetric key, only the private key must be wrapped in PKCS8 format +// while the corresponding public key is generated internally by KMS. // // See also // @@ -975,7 +978,7 @@ func (client KmsManagementClient) importKeyVersion(ctx context.Context, request defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/KeyVersion/ImportKeyVersion" err = common.PostProcessServiceError(err, "KmsManagement", "ImportKeyVersion", apiReferenceLink) return response, err } @@ -1037,7 +1040,7 @@ func (client KmsManagementClient) listKeyVersions(ctx context.Context, request c defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/KeyVersionSummary/ListKeyVersions" err = common.PostProcessServiceError(err, "KmsManagement", "ListKeyVersions", apiReferenceLink) return response, err } @@ -1098,7 +1101,7 @@ func (client KmsManagementClient) listKeys(ctx context.Context, request common.O defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/KeySummary/ListKeys" err = common.PostProcessServiceError(err, "KmsManagement", "ListKeys", apiReferenceLink) return response, err } @@ -1162,7 +1165,7 @@ func (client KmsManagementClient) restoreKeyFromFile(ctx context.Context, reques defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/RestoreKeyFromFile" err = common.PostProcessServiceError(err, "KmsManagement", "RestoreKeyFromFile", apiReferenceLink) return response, err } @@ -1226,7 +1229,7 @@ func (client KmsManagementClient) restoreKeyFromObjectStore(ctx context.Context, defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/RestoreKeyFromObjectStore" err = common.PostProcessServiceError(err, "KmsManagement", "RestoreKeyFromObjectStore", apiReferenceLink) return response, err } @@ -1293,7 +1296,7 @@ func (client KmsManagementClient) scheduleKeyDeletion(ctx context.Context, reque defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/ScheduleKeyDeletion" err = common.PostProcessServiceError(err, "KmsManagement", "ScheduleKeyDeletion", apiReferenceLink) return response, err } @@ -1360,7 +1363,7 @@ func (client KmsManagementClient) scheduleKeyVersionDeletion(ctx context.Context defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/KeyVersion/ScheduleKeyVersionDeletion" err = common.PostProcessServiceError(err, "KmsManagement", "ScheduleKeyVersionDeletion", apiReferenceLink) return response, err } @@ -1423,7 +1426,7 @@ func (client KmsManagementClient) updateKey(ctx context.Context, request common. defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Key/UpdateKey" err = common.PostProcessServiceError(err, "KmsManagement", "UpdateKey", apiReferenceLink) return response, err } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsvault_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsvault_client.go index b8669271e00..701366ac3e6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsvault_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsvault_client.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -147,7 +146,7 @@ func (client KmsVaultClient) backupVault(ctx context.Context, request common.OCI defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/BackupVault" err = common.PostProcessServiceError(err, "KmsVault", "BackupVault", apiReferenceLink) return response, err } @@ -216,7 +215,7 @@ func (client KmsVaultClient) cancelVaultDeletion(ctx context.Context, request co defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/CancelVaultDeletion" err = common.PostProcessServiceError(err, "KmsVault", "CancelVaultDeletion", apiReferenceLink) return response, err } @@ -284,7 +283,7 @@ func (client KmsVaultClient) changeVaultCompartment(ctx context.Context, request defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/ChangeVaultCompartment" err = common.PostProcessServiceError(err, "KmsVault", "ChangeVaultCompartment", apiReferenceLink) return response, err } @@ -353,7 +352,7 @@ func (client KmsVaultClient) createVault(ctx context.Context, request common.OCI defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/CreateVault" err = common.PostProcessServiceError(err, "KmsVault", "CreateVault", apiReferenceLink) return response, err } @@ -422,7 +421,7 @@ func (client KmsVaultClient) createVaultReplica(ctx context.Context, request com defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/CreateVaultReplica" err = common.PostProcessServiceError(err, "KmsVault", "CreateVaultReplica", apiReferenceLink) return response, err } @@ -488,7 +487,7 @@ func (client KmsVaultClient) deleteVaultReplica(ctx context.Context, request com defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/DeleteVaultReplica" err = common.PostProcessServiceError(err, "KmsVault", "DeleteVaultReplica", apiReferenceLink) return response, err } @@ -549,7 +548,7 @@ func (client KmsVaultClient) getVault(ctx context.Context, request common.OCIReq defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/GetVault" err = common.PostProcessServiceError(err, "KmsVault", "GetVault", apiReferenceLink) return response, err } @@ -606,7 +605,7 @@ func (client KmsVaultClient) getVaultUsage(ctx context.Context, request common.O defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/VaultUsage/GetVaultUsage" err = common.PostProcessServiceError(err, "KmsVault", "GetVaultUsage", apiReferenceLink) return response, err } @@ -672,7 +671,7 @@ func (client KmsVaultClient) listVaultReplicas(ctx context.Context, request comm defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/ListVaultReplicas" err = common.PostProcessServiceError(err, "KmsVault", "ListVaultReplicas", apiReferenceLink) return response, err } @@ -733,7 +732,7 @@ func (client KmsVaultClient) listVaults(ctx context.Context, request common.OCIR defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/VaultSummary/ListVaults" err = common.PostProcessServiceError(err, "KmsVault", "ListVaults", apiReferenceLink) return response, err } @@ -797,7 +796,7 @@ func (client KmsVaultClient) restoreVaultFromFile(ctx context.Context, request c defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/RestoreVaultFromFile" err = common.PostProcessServiceError(err, "KmsVault", "RestoreVaultFromFile", apiReferenceLink) return response, err } @@ -861,7 +860,7 @@ func (client KmsVaultClient) restoreVaultFromObjectStore(ctx context.Context, re defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/RestoreVaultFromObjectStore" err = common.PostProcessServiceError(err, "KmsVault", "RestoreVaultFromObjectStore", apiReferenceLink) return response, err } @@ -931,7 +930,7 @@ func (client KmsVaultClient) scheduleVaultDeletion(ctx context.Context, request defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/ScheduleVaultDeletion" err = common.PostProcessServiceError(err, "KmsVault", "ScheduleVaultDeletion", apiReferenceLink) return response, err } @@ -994,7 +993,7 @@ func (client KmsVaultClient) updateVault(ctx context.Context, request common.OCI defer common.CloseBodyIfValid(httpResponse) response.RawResponse = httpResponse if err != nil { - apiReferenceLink := "" + apiReferenceLink := "https://docs.oracle.com/iaas/api/#/en/key/release/Vault/UpdateVault" err = common.PostProcessServiceError(err, "KmsVault", "UpdateVault", apiReferenceLink) return response, err } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_ekms_private_endpoints_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_ekms_private_endpoints_request_response.go new file mode 100644 index 00000000000..bdef1f7c61a --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_ekms_private_endpoints_request_response.go @@ -0,0 +1,203 @@ +// 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. + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "net/http" + "strings" +) + +// ListEkmsPrivateEndpointsRequest wrapper for the ListEkmsPrivateEndpoints operation +// +// # See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ListEkmsPrivateEndpoints.go.html to see an example of how to use ListEkmsPrivateEndpointsRequest. +type ListEkmsPrivateEndpointsRequest struct { + + // The OCID of the compartment. + CompartmentId *string `mandatory:"true" contributesTo:"query" name:"compartmentId"` + + // The maximum number of items to return in a paginated "List" call. + Limit *int `mandatory:"false" contributesTo:"query" name:"limit"` + + // The value of the `opc-next-page` response header + // from the previous "List" call. + Page *string `mandatory:"false" contributesTo:"query" name:"page"` + + // The sort order to use, either ascending (`ASC`) or descending (`DESC`). + SortOrder ListEkmsPrivateEndpointsSortOrderEnum `mandatory:"false" contributesTo:"query" name:"sortOrder" omitEmpty:"true"` + + // The field to sort by. You can specify only one sort order. The default + // order for `TIMECREATED` is descending. The default order for `DISPLAYNAME` + // is ascending. + SortBy ListEkmsPrivateEndpointsSortByEnum `mandatory:"false" contributesTo:"query" name:"sortBy" omitEmpty:"true"` + + // Unique identifier for the request. If provided, the returned request ID + // will include this value. Otherwise, a random request ID will be + // generated by the service. + 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 +} + +func (request ListEkmsPrivateEndpointsRequest) String() string { + return common.PointerString(request) +} + +// HTTPRequest implements the OCIRequest interface +func (request ListEkmsPrivateEndpointsRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error) { + + _, err := request.ValidateEnumValue() + if err != nil { + return http.Request{}, err + } + return common.MakeDefaultHTTPRequestWithTaggedStructAndExtraHeaders(method, path, request, extraHeaders) +} + +// BinaryRequestBody implements the OCIRequest interface +func (request ListEkmsPrivateEndpointsRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool) { + + return nil, false + +} + +// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy. +func (request ListEkmsPrivateEndpointsRequest) RetryPolicy() *common.RetryPolicy { + return request.RequestMetadata.RetryPolicy +} + +// 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 (request ListEkmsPrivateEndpointsRequest) ValidateEnumValue() (bool, error) { + errMessage := []string{} + if _, ok := GetMappingListEkmsPrivateEndpointsSortOrderEnum(string(request.SortOrder)); !ok && request.SortOrder != "" { + errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for SortOrder: %s. Supported values are: %s.", request.SortOrder, strings.Join(GetListEkmsPrivateEndpointsSortOrderEnumStringValues(), ","))) + } + if _, ok := GetMappingListEkmsPrivateEndpointsSortByEnum(string(request.SortBy)); !ok && request.SortBy != "" { + errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for SortBy: %s. Supported values are: %s.", request.SortBy, strings.Join(GetListEkmsPrivateEndpointsSortByEnumStringValues(), ","))) + } + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} + +// ListEkmsPrivateEndpointsResponse wrapper for the ListEkmsPrivateEndpoints operation +type ListEkmsPrivateEndpointsResponse struct { + + // The underlying http response + RawResponse *http.Response + + // A list of []EkmsPrivateEndpointSummary instances + Items []EkmsPrivateEndpointSummary `presentIn:"body"` + + // For pagination of a list of items. When paging through a list, if this header appears in the response, + // then there are additional items still to get. Include this value as the `page` parameter for the + // subsequent GET request. For information about pagination, see + // List Pagination (https://docs.cloud.oracle.com/Content/API/Concepts/usingapi.htm#nine). + OpcNextPage *string `presentIn:"header" name:"opc-next-page"` + + // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about + // a particular request, please provide the request ID. + OpcRequestId *string `presentIn:"header" name:"opc-request-id"` +} + +func (response ListEkmsPrivateEndpointsResponse) String() string { + return common.PointerString(response) +} + +// HTTPResponse implements the OCIResponse interface +func (response ListEkmsPrivateEndpointsResponse) HTTPResponse() *http.Response { + return response.RawResponse +} + +// ListEkmsPrivateEndpointsSortOrderEnum Enum with underlying type: string +type ListEkmsPrivateEndpointsSortOrderEnum string + +// Set of constants representing the allowable values for ListEkmsPrivateEndpointsSortOrderEnum +const ( + ListEkmsPrivateEndpointsSortOrderAsc ListEkmsPrivateEndpointsSortOrderEnum = "ASC" + ListEkmsPrivateEndpointsSortOrderDesc ListEkmsPrivateEndpointsSortOrderEnum = "DESC" +) + +var mappingListEkmsPrivateEndpointsSortOrderEnum = map[string]ListEkmsPrivateEndpointsSortOrderEnum{ + "ASC": ListEkmsPrivateEndpointsSortOrderAsc, + "DESC": ListEkmsPrivateEndpointsSortOrderDesc, +} + +var mappingListEkmsPrivateEndpointsSortOrderEnumLowerCase = map[string]ListEkmsPrivateEndpointsSortOrderEnum{ + "asc": ListEkmsPrivateEndpointsSortOrderAsc, + "desc": ListEkmsPrivateEndpointsSortOrderDesc, +} + +// GetListEkmsPrivateEndpointsSortOrderEnumValues Enumerates the set of values for ListEkmsPrivateEndpointsSortOrderEnum +func GetListEkmsPrivateEndpointsSortOrderEnumValues() []ListEkmsPrivateEndpointsSortOrderEnum { + values := make([]ListEkmsPrivateEndpointsSortOrderEnum, 0) + for _, v := range mappingListEkmsPrivateEndpointsSortOrderEnum { + values = append(values, v) + } + return values +} + +// GetListEkmsPrivateEndpointsSortOrderEnumStringValues Enumerates the set of values in String for ListEkmsPrivateEndpointsSortOrderEnum +func GetListEkmsPrivateEndpointsSortOrderEnumStringValues() []string { + return []string{ + "ASC", + "DESC", + } +} + +// GetMappingListEkmsPrivateEndpointsSortOrderEnum performs case Insensitive comparison on enum value and return the desired enum +func GetMappingListEkmsPrivateEndpointsSortOrderEnum(val string) (ListEkmsPrivateEndpointsSortOrderEnum, bool) { + enum, ok := mappingListEkmsPrivateEndpointsSortOrderEnumLowerCase[strings.ToLower(val)] + return enum, ok +} + +// ListEkmsPrivateEndpointsSortByEnum Enum with underlying type: string +type ListEkmsPrivateEndpointsSortByEnum string + +// Set of constants representing the allowable values for ListEkmsPrivateEndpointsSortByEnum +const ( + ListEkmsPrivateEndpointsSortByTimecreated ListEkmsPrivateEndpointsSortByEnum = "TIMECREATED" + ListEkmsPrivateEndpointsSortByDisplayname ListEkmsPrivateEndpointsSortByEnum = "DISPLAYNAME" +) + +var mappingListEkmsPrivateEndpointsSortByEnum = map[string]ListEkmsPrivateEndpointsSortByEnum{ + "TIMECREATED": ListEkmsPrivateEndpointsSortByTimecreated, + "DISPLAYNAME": ListEkmsPrivateEndpointsSortByDisplayname, +} + +var mappingListEkmsPrivateEndpointsSortByEnumLowerCase = map[string]ListEkmsPrivateEndpointsSortByEnum{ + "timecreated": ListEkmsPrivateEndpointsSortByTimecreated, + "displayname": ListEkmsPrivateEndpointsSortByDisplayname, +} + +// GetListEkmsPrivateEndpointsSortByEnumValues Enumerates the set of values for ListEkmsPrivateEndpointsSortByEnum +func GetListEkmsPrivateEndpointsSortByEnumValues() []ListEkmsPrivateEndpointsSortByEnum { + values := make([]ListEkmsPrivateEndpointsSortByEnum, 0) + for _, v := range mappingListEkmsPrivateEndpointsSortByEnum { + values = append(values, v) + } + return values +} + +// GetListEkmsPrivateEndpointsSortByEnumStringValues Enumerates the set of values in String for ListEkmsPrivateEndpointsSortByEnum +func GetListEkmsPrivateEndpointsSortByEnumStringValues() []string { + return []string{ + "TIMECREATED", + "DISPLAYNAME", + } +} + +// GetMappingListEkmsPrivateEndpointsSortByEnum performs case Insensitive comparison on enum value and return the desired enum +func GetMappingListEkmsPrivateEndpointsSortByEnum(val string) (ListEkmsPrivateEndpointsSortByEnum, bool) { + enum, ok := mappingListEkmsPrivateEndpointsSortByEnumLowerCase[strings.ToLower(val)] + return enum, ok +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_key_versions_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_key_versions_request_response.go index 513371e0519..2f7116e71a4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_key_versions_request_response.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_key_versions_request_response.go @@ -101,7 +101,7 @@ type ListKeyVersionsResponse struct { // For pagination of a list of items. When paging through a list, if this header appears in the response, // then there are additional items still to get. Include this value as the `page` parameter for the // subsequent GET request. For information about pagination, see - // List Pagination (https://docs.cloud.oracle.com/Content/API/Concepts/usingapi.htm#List_Pagination). + // List Pagination (https://docs.cloud.oracle.com/Content/API/Concepts/usingapi.htm#nine). OpcNextPage *string `presentIn:"header" name:"opc-next-page"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_keys_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_keys_request_response.go index 8aa8e8f4626..d04a610cd85 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_keys_request_response.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_keys_request_response.go @@ -46,6 +46,8 @@ type ListKeysRequest struct { // performed inside the HSM. A protection mode of `SOFTWARE` means that the key persists on the server, protected by the vault's // RSA wrapping key which persists on the HSM. All cryptographic operations that use a key with a protection mode of // `SOFTWARE` are performed on the server. + // A protection mode of `EXTERNAL` mean that the key persists on the customer's external key manager which is hosted externally outside of oracle. + // Oracle only hold a reference to that key. All cryptographic operations that use a key with a protection mode of `EXTERNAL` are performed by external key manager. ProtectionMode ListKeysProtectionModeEnum `mandatory:"false" contributesTo:"query" name:"protectionMode" omitEmpty:"true"` // The algorithm used by a key's key versions to encrypt or decrypt data. Currently, support includes AES, RSA, and ECDSA algorithms. @@ -126,7 +128,7 @@ type ListKeysResponse struct { // For pagination of a list of items. When paging through a list, if this header appears in the response, // then there are additional items still to get. Include this value as the `page` parameter for the // subsequent GET request. For information about pagination, see - // List Pagination (https://docs.cloud.oracle.com/Content/API/Concepts/usingapi.htm#List_Pagination). + // List Pagination (https://docs.cloud.oracle.com/Content/API/Concepts/usingapi.htm#nine). OpcNextPage *string `presentIn:"header" name:"opc-next-page"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about @@ -234,16 +236,19 @@ type ListKeysProtectionModeEnum string const ( ListKeysProtectionModeHsm ListKeysProtectionModeEnum = "HSM" ListKeysProtectionModeSoftware ListKeysProtectionModeEnum = "SOFTWARE" + ListKeysProtectionModeExternal ListKeysProtectionModeEnum = "EXTERNAL" ) var mappingListKeysProtectionModeEnum = map[string]ListKeysProtectionModeEnum{ "HSM": ListKeysProtectionModeHsm, "SOFTWARE": ListKeysProtectionModeSoftware, + "EXTERNAL": ListKeysProtectionModeExternal, } var mappingListKeysProtectionModeEnumLowerCase = map[string]ListKeysProtectionModeEnum{ "hsm": ListKeysProtectionModeHsm, "software": ListKeysProtectionModeSoftware, + "external": ListKeysProtectionModeExternal, } // GetListKeysProtectionModeEnumValues Enumerates the set of values for ListKeysProtectionModeEnum @@ -260,6 +265,7 @@ func GetListKeysProtectionModeEnumStringValues() []string { return []string{ "HSM", "SOFTWARE", + "EXTERNAL", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_vault_replicas_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_vault_replicas_request_response.go index 4494e64fec5..527e25fccdf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_vault_replicas_request_response.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_vault_replicas_request_response.go @@ -119,7 +119,7 @@ type ListVaultReplicasResponse struct { // For pagination of a list of items. When paging through a list, if this header appears in the response, // then there are additional items still to get. Include this value as the `page` parameter for the // subsequent GET request. For information about pagination, see - // List Pagination (https://docs.cloud.oracle.com/Content/API/Concepts/usingapi.htm#List_Pagination). + // List Pagination (https://docs.cloud.oracle.com/Content/API/Concepts/usingapi.htm#nine). OpcNextPage *string `presentIn:"header" name:"opc-next-page"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_vaults_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_vaults_request_response.go index 6b9390990bb..23616adee68 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_vaults_request_response.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/list_vaults_request_response.go @@ -101,7 +101,7 @@ type ListVaultsResponse struct { // For pagination of a list of items. When paging through a list, if this header appears in the response, // then there are additional items still to get. Include this value as the `page` parameter for the // subsequent GET request. For information about pagination, see - // List Pagination (https://docs.cloud.oracle.com/Content/API/Concepts/usingapi.htm#List_Pagination). + // List Pagination (https://docs.cloud.oracle.com/Content/API/Concepts/usingapi.htm#nine). OpcNextPage *string `presentIn:"header" name:"opc-next-page"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/oauth_metadata.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/oauth_metadata.go new file mode 100644 index 00000000000..4576a2876eb --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/oauth_metadata.go @@ -0,0 +1,45 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// OauthMetadata Authorization details required to get access token from IDP for accessing protected resources. +type OauthMetadata struct { + + // Base URL of the IDCS account where confidential client app is created. + IdcsAccountNameUrl *string `mandatory:"true" json:"idcsAccountNameUrl"` + + // ID of the client app created in IDP. + ClientAppId *string `mandatory:"true" json:"clientAppId"` + + // Secret of the client app created in IDP. + ClientAppSecret *string `mandatory:"true" json:"clientAppSecret"` +} + +func (m OauthMetadata) 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 OauthMetadata) ValidateEnumValue() (bool, error) { + errMessage := []string{} + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/oauth_metadata_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/oauth_metadata_summary.go new file mode 100644 index 00000000000..66274084eb9 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/oauth_metadata_summary.go @@ -0,0 +1,42 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// OauthMetadataSummary Summary about authorization to be returned to the customer as a response. +type OauthMetadataSummary struct { + + // Base URL of the IDCS account where confidential client app is created. + IdcsAccountNameUrl *string `mandatory:"true" json:"idcsAccountNameUrl"` + + // ID of the client app created in IDP. + ClientAppId *string `mandatory:"true" json:"clientAppId"` +} + +func (m OauthMetadataSummary) 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 OauthMetadataSummary) ValidateEnumValue() (bool, error) { + errMessage := []string{} + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/replica_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/replica_details.go index d5dd4a0577b..edb16d69f41 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/replica_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/replica_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/replication_status_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/replication_status_details.go index 251d9be757c..d6e66baa778 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/replication_status_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/replication_status_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -18,6 +17,8 @@ import ( // ReplicationStatusDetails Details of replication status across all replica regions type ReplicationStatusDetails struct { + + // Replica Details. ReplicaDetails []ReplicaDetails `mandatory:"false" json:"replicaDetails"` } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/restore_key_from_object_store_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/restore_key_from_object_store_details.go index 0fb33f27dba..c1859b592a1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/restore_key_from_object_store_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/restore_key_from_object_store_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -17,7 +16,7 @@ import ( "strings" ) -// RestoreKeyFromObjectStoreDetails The representation of RestoreKeyFromObjectStoreDetails +// RestoreKeyFromObjectStoreDetails The details of the backup location from which you want to restore the Key. type RestoreKeyFromObjectStoreDetails struct { BackupLocation BackupLocation `mandatory:"false" json:"backupLocation"` } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/restore_vault_from_object_store_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/restore_vault_from_object_store_details.go index bea3dd3cd6b..0063065e4be 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/restore_vault_from_object_store_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/restore_vault_from_object_store_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -17,7 +16,7 @@ import ( "strings" ) -// RestoreVaultFromObjectStoreDetails The representation of RestoreVaultFromObjectStoreDetails +// RestoreVaultFromObjectStoreDetails The details of the backup location from which you want to restore the Vault. type RestoreVaultFromObjectStoreDetails struct { BackupLocation BackupLocation `mandatory:"false" json:"backupLocation"` } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_key_deletion_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_key_deletion_details.go index 5eb0920c89c..79f2d891a1e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_key_deletion_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_key_deletion_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_key_version_deletion_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_key_version_deletion_details.go index 119fe8adb51..6ff11e56bd0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_key_version_deletion_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_key_version_deletion_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_vault_deletion_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_vault_deletion_details.go index b1a4c4f495b..5182ff8a04b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_vault_deletion_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/schedule_vault_deletion_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/sign_data_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/sign_data_details.go index bfb14753d93..24babb45980 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/sign_data_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/sign_data_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// SignDataDetails The representation of SignDataDetails +// SignDataDetails The details of the message that you want to sign. type SignDataDetails struct { // The base64-encoded binary data object denoting the message or message digest to sign. You can have a message up to 4096 bytes in size. To sign a larger message, provide the message digest. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/signed_data.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/signed_data.go index 54153097f7f..658ae42d88f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/signed_data.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/signed_data.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// SignedData The representation of SignedData +// SignedData The response to a request to sign the message. type SignedData struct { // The OCID of the key used to sign the message. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_ekms_private_endpoint_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_ekms_private_endpoint_details.go new file mode 100644 index 00000000000..82eaa3a7703 --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_ekms_private_endpoint_details.go @@ -0,0 +1,47 @@ +// 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. + +// Vault Key Management API +// +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). +// + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "strings" +) + +// UpdateEkmsPrivateEndpointDetails Information needed to modify EKMS private endpoint resource +type UpdateEkmsPrivateEndpointDetails struct { + + // Display name of EKMS private endpoint resource. + DisplayName *string `mandatory:"false" json:"displayName"` + + // Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + // Example: `{"bar-key": "value"}` + FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` + + // Usage of predefined tag keys. These predefined keys are scoped to namespaces. + // Example: `{"foo-namespace": {"bar-key": "value"}}` + DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` +} + +func (m UpdateEkmsPrivateEndpointDetails) 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 UpdateEkmsPrivateEndpointDetails) ValidateEnumValue() (bool, error) { + errMessage := []string{} + + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_ekms_private_endpoint_request_response.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_ekms_private_endpoint_request_response.go new file mode 100644 index 00000000000..9304feeb19c --- /dev/null +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_ekms_private_endpoint_request_response.go @@ -0,0 +1,105 @@ +// 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. + +package keymanagement + +import ( + "fmt" + "github.com/oracle/oci-go-sdk/v65/common" + "net/http" + "strings" +) + +// UpdateEkmsPrivateEndpointRequest wrapper for the UpdateEkmsPrivateEndpoint operation +// +// # See also +// +// Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/UpdateEkmsPrivateEndpoint.go.html to see an example of how to use UpdateEkmsPrivateEndpointRequest. +type UpdateEkmsPrivateEndpointRequest struct { + + // Unique EKMS private endpoint identifier. + EkmsPrivateEndpointId *string `mandatory:"true" contributesTo:"path" name:"ekmsPrivateEndpointId"` + + // The information to be updated in EKMS private endpoint + UpdateEkmsPrivateEndpointDetails `contributesTo:"body"` + + // 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"` + + // Unique identifier for the request. If provided, the returned request ID + // will include this value. Otherwise, a random request ID will be + // generated by the service. + 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 +} + +func (request UpdateEkmsPrivateEndpointRequest) String() string { + return common.PointerString(request) +} + +// HTTPRequest implements the OCIRequest interface +func (request UpdateEkmsPrivateEndpointRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error) { + + _, err := request.ValidateEnumValue() + if err != nil { + return http.Request{}, err + } + return common.MakeDefaultHTTPRequestWithTaggedStructAndExtraHeaders(method, path, request, extraHeaders) +} + +// BinaryRequestBody implements the OCIRequest interface +func (request UpdateEkmsPrivateEndpointRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool) { + + return nil, false + +} + +// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy. +func (request UpdateEkmsPrivateEndpointRequest) RetryPolicy() *common.RetryPolicy { + return request.RequestMetadata.RetryPolicy +} + +// 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 (request UpdateEkmsPrivateEndpointRequest) ValidateEnumValue() (bool, error) { + errMessage := []string{} + if len(errMessage) > 0 { + return true, fmt.Errorf(strings.Join(errMessage, "\n")) + } + return false, nil +} + +// UpdateEkmsPrivateEndpointResponse wrapper for the UpdateEkmsPrivateEndpoint operation +type UpdateEkmsPrivateEndpointResponse struct { + + // The underlying http response + RawResponse *http.Response + + // The EkmsPrivateEndpoint instance + EkmsPrivateEndpoint `presentIn:"body"` + + // For optimistic concurrency control. See `if-match`. + Etag *string `presentIn:"header" name:"etag"` + + // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about + // a particular request, please provide the request ID. + OpcRequestId *string `presentIn:"header" name:"opc-request-id"` +} + +func (response UpdateEkmsPrivateEndpointResponse) String() string { + return common.PointerString(response) +} + +// HTTPResponse implements the OCIResponse interface +func (response UpdateEkmsPrivateEndpointResponse) HTTPResponse() *http.Response { + return response.RawResponse +} diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_key_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_key_details.go index cfe20cf5b8d..dee01ac62f7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_key_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_key_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// UpdateKeyDetails The representation of UpdateKeyDetails +// UpdateKeyDetails The details of the Key that you wish to update. type UpdateKeyDetails struct { // Defined tags for this resource. Each key is predefined and scoped to a namespace. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_vault_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_vault_details.go index cfbff51e4c1..c70cb1c390d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_vault_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/update_vault_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// UpdateVaultDetails The representation of UpdateVaultDetails +// UpdateVaultDetails The details of the Vault that you wish to update. type UpdateVaultDetails struct { // Defined tags for this resource. Each key is predefined and scoped to a namespace. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault.go index 3a855a49375..86581647be3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// Vault The representation of Vault +// Vault The logical entity where the Vault service creates and durably stores keys. type Vault struct { // The OCID of the compartment that contains this vault. @@ -73,7 +72,10 @@ type Vault struct { ReplicaDetails *VaultReplicaDetails `mandatory:"false" json:"replicaDetails"` + // A Boolean value that indicates whether the Vault is primary Vault or replica Vault. IsPrimary *bool `mandatory:"false" json:"isPrimary"` + + ExternalKeyManagerMetadataSummary *ExternalKeyManagerMetadataSummary `mandatory:"false" json:"externalKeyManagerMetadataSummary"` } func (m Vault) String() string { @@ -179,16 +181,19 @@ type VaultVaultTypeEnum string const ( VaultVaultTypeVirtualPrivate VaultVaultTypeEnum = "VIRTUAL_PRIVATE" VaultVaultTypeDefault VaultVaultTypeEnum = "DEFAULT" + VaultVaultTypeExternal VaultVaultTypeEnum = "EXTERNAL" ) var mappingVaultVaultTypeEnum = map[string]VaultVaultTypeEnum{ "VIRTUAL_PRIVATE": VaultVaultTypeVirtualPrivate, "DEFAULT": VaultVaultTypeDefault, + "EXTERNAL": VaultVaultTypeExternal, } var mappingVaultVaultTypeEnumLowerCase = map[string]VaultVaultTypeEnum{ "virtual_private": VaultVaultTypeVirtualPrivate, "default": VaultVaultTypeDefault, + "external": VaultVaultTypeExternal, } // GetVaultVaultTypeEnumValues Enumerates the set of values for VaultVaultTypeEnum @@ -205,6 +210,7 @@ func GetVaultVaultTypeEnumStringValues() []string { return []string{ "VIRTUAL_PRIVATE", "DEFAULT", + "EXTERNAL", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_replica_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_replica_details.go index 99cd4cc3b59..b8a1061a95a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_replica_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_replica_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_replica_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_replica_summary.go index 90931bf4dc1..d4131d61cc0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_replica_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_replica_summary.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -28,6 +27,7 @@ type VaultReplicaSummary struct { // Region to which vault is replicated to Region *string `mandatory:"false" json:"region"` + // Status of the Vault Status VaultReplicaSummaryStatusEnum `mandatory:"false" json:"status,omitempty"` } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_summary.go index 2c44a206189..aa7db16409e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_summary.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// VaultSummary The representation of VaultSummary +// VaultSummary The details of the Vault. type VaultSummary struct { // The OCID of the compartment that contains a particular vault. @@ -58,6 +57,8 @@ type VaultSummary struct { // For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` + + ExternalKeyManagerMetadataSummary *ExternalKeyManagerMetadataSummary `mandatory:"false" json:"externalKeyManagerMetadataSummary"` } func (m VaultSummary) String() string { @@ -162,16 +163,19 @@ type VaultSummaryVaultTypeEnum string // Set of constants representing the allowable values for VaultSummaryVaultTypeEnum const ( VaultSummaryVaultTypeVirtualPrivate VaultSummaryVaultTypeEnum = "VIRTUAL_PRIVATE" + VaultSummaryVaultTypeExternal VaultSummaryVaultTypeEnum = "EXTERNAL" VaultSummaryVaultTypeDefault VaultSummaryVaultTypeEnum = "DEFAULT" ) var mappingVaultSummaryVaultTypeEnum = map[string]VaultSummaryVaultTypeEnum{ "VIRTUAL_PRIVATE": VaultSummaryVaultTypeVirtualPrivate, + "EXTERNAL": VaultSummaryVaultTypeExternal, "DEFAULT": VaultSummaryVaultTypeDefault, } var mappingVaultSummaryVaultTypeEnumLowerCase = map[string]VaultSummaryVaultTypeEnum{ "virtual_private": VaultSummaryVaultTypeVirtualPrivate, + "external": VaultSummaryVaultTypeExternal, "default": VaultSummaryVaultTypeDefault, } @@ -188,6 +192,7 @@ func GetVaultSummaryVaultTypeEnumValues() []VaultSummaryVaultTypeEnum { func GetVaultSummaryVaultTypeEnumStringValues() []string { return []string{ "VIRTUAL_PRIVATE", + "EXTERNAL", "DEFAULT", } } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_usage.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_usage.go index ce34a6fc44f..a7f5a189cc0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_usage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/vault_usage.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// VaultUsage The representation of VaultUsage +// VaultUsage The details of the number of Keys and KeyVersions usage in a Vault. type VaultUsage struct { // The number of keys in this vault that persist on a hardware security module (HSM), across all compartments, excluding keys in a `DELETED` state. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/verified_data.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/verified_data.go index c147dfd2887..b2fca795ddc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/verified_data.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/verified_data.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// VerifiedData The representation of VerifiedData +// VerifiedData The response to a request to verify the message. type VerifiedData struct { // A Boolean value that indicates whether the signature was verified. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/verify_data_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/verify_data_details.go index b8cac598d8b..b9c212258d5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/verify_data_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/verify_data_details.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// VerifyDataDetails The representation of VerifyDataDetails +// VerifyDataDetails The details of the message that you want to verify. type VerifyDataDetails struct { // The OCID of the key used to sign the message. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/wrapped_import_key.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/wrapped_import_key.go index 65a2dfdf691..9e3e5bc0b6a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/wrapped_import_key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/wrapped_import_key.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// WrappedImportKey The representation of WrappedImportKey +// WrappedImportKey The details of the wrapped import Key. type WrappedImportKey struct { // The key material to import, wrapped by the vault's RSA public wrapping key and base64-encoded. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/wrapping_key.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/wrapping_key.go index 49947545ea8..250f77b2ac8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/wrapping_key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/wrapping_key.go @@ -2,10 +2,9 @@ // 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. -// Vault Service Key Management API +// Vault Key Management API // -// API for managing and performing operations with keys and vaults. (For the API for managing secrets, see the Vault Service -// Secret Management API. For the API for retrieving secrets, see the Vault Service Secret Retrieval API.) +// Use the Key Management API to manage vaults and keys. For more information, see Managing Vaults (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingvaults.htm) and Managing Keys (https://docs.cloud.oracle.com/Content/KeyManagement/Tasks/managingkeys.htm). // package keymanagement @@ -16,7 +15,7 @@ import ( "strings" ) -// WrappingKey The representation of WrappingKey +// WrappingKey The public RSA wrapping key associated with the vault type WrappingKey struct { // The OCID of the compartment that contains this key. diff --git a/vendor/modules.txt b/vendor/modules.txt index 27d92440ca5..f00b087a5be 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -248,7 +248,7 @@ github.com/mitchellh/reflectwalk # github.com/oklog/run v1.0.0 ## explicit github.com/oklog/run -# github.com/oracle/oci-go-sdk/v65 v65.49.1 +# github.com/oracle/oci-go-sdk/v65 v65.49.1 => ./vendor/github.com/oracle/oci-go-sdk ## explicit; go 1.13 github.com/oracle/oci-go-sdk/v65/adm github.com/oracle/oci-go-sdk/v65/aianomalydetection From 9d95ce622a1795ef32e6a9ac4c9c758ce3062861 Mon Sep 17 00:00:00 2001 From: Rakshith Siddanahalli Murukannappa Date: Fri, 22 Sep 2023 17:13:20 -0700 Subject: [PATCH 4/8] Finalize changelog and release for version v5.14.0 --- CHANGELOG.md | 7 +++++++ internal/globalvar/version.go | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad7e6716b9e..1ab9b61b855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 5.14.0 (Unreleased) + +### Added +- Support for OIC: FAaas Self Service with Henosis +### Bug Fix +- Fix APM Synthetic service update the number of vantagepoints supported in monitor as per spec to 100 + ## 5.13.0 (September 13, 2023) ### Added diff --git a/internal/globalvar/version.go b/internal/globalvar/version.go index bf3d016d228..6a2f7fd7959 100644 --- a/internal/globalvar/version.go +++ b/internal/globalvar/version.go @@ -7,8 +7,8 @@ import ( "log" ) -const Version = "5.13.0" -const ReleaseDate = "2023-09-13" +const Version = "5.14.0" +const ReleaseDate = "2023-09-27" func PrintVersion() { log.Printf("[INFO] terraform-provider-oci %s\n", Version) From 779273720c9d3f86ae40629bd660a406c58632f2 Mon Sep 17 00:00:00 2001 From: Youngju Cho Date: Thu, 9 Mar 2023 20:57:30 +0000 Subject: [PATCH 5/8] Added - Support for X10M | ExaDB-C@C (EXACC) X10M --- .../d/database_autonomous_container_database.html.markdown | 4 ---- .../d/database_autonomous_container_databases.html.markdown | 4 ---- 2 files changed, 8 deletions(-) diff --git a/website/docs/d/database_autonomous_container_database.html.markdown b/website/docs/d/database_autonomous_container_database.html.markdown index fbf8ad8e47d..808c83be091 100644 --- a/website/docs/d/database_autonomous_container_database.html.markdown +++ b/website/docs/d/database_autonomous_container_database.html.markdown @@ -35,11 +35,7 @@ The following attributes are exported: * `autonomous_exadata_infrastructure_id` - **No longer used.** For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified `cloudAutonomousVmCluster`. * `autonomous_vm_cluster_id` - The OCID of the Autonomous VM Cluster. * `availability_domain` - The availability domain of the Autonomous Container Database. -<<<<<<< HEAD -* `available_cpus` - Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database.
For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. -======= * `available_cpus` - Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database.
For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details. ->>>>>>> 8f97e70da6 (Added - Support for Terraform for Serial Console Phase 1 ExaDB-C@C (EXACC) Serial Console Access to VM) * `backup_config` - Backup options for the Autonomous Container Database. * `backup_destination_details` - Backup destination details. * `dbrs_policy_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup. diff --git a/website/docs/d/database_autonomous_container_databases.html.markdown b/website/docs/d/database_autonomous_container_databases.html.markdown index dc3bcad4f8f..a29db4b8f72 100644 --- a/website/docs/d/database_autonomous_container_databases.html.markdown +++ b/website/docs/d/database_autonomous_container_databases.html.markdown @@ -60,11 +60,7 @@ The following attributes are exported: * `autonomous_exadata_infrastructure_id` - **No longer used.** For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified `cloudAutonomousVmCluster`. * `autonomous_vm_cluster_id` - The OCID of the Autonomous VM Cluster. * `availability_domain` - The availability domain of the Autonomous Container Database. -<<<<<<< HEAD -* `available_cpus` - Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database.
For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. -======= * `available_cpus` - Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database.
For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details. ->>>>>>> 8f97e70da6 (Added - Support for Terraform for Serial Console Phase 1 ExaDB-C@C (EXACC) Serial Console Access to VM) * `backup_config` - Backup options for the Autonomous Container Database. * `backup_destination_details` - Backup destination details. * `dbrs_policy_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup. From 693cd004701c82b8236011729156eb2b3ccdcc20 Mon Sep 17 00:00:00 2001 From: Varun Date: Tue, 26 Sep 2023 19:46:26 +0000 Subject: [PATCH 6/8] Vendored - oci-go-sdk for release version v65 --- go.mod | 4 +- go.sum | 4 +- ..._applicationdependencymanagement_client.go | 36 +- ...nomalydetection_anomalydetection_client.go | 72 +- .../embedded_detect_anomalies_request.go | 4 +- .../inline_detect_anomalies_request.go | 4 +- .../aidocument_aiservicedocument_client.go | 44 +- .../document_classification_model_metrics.go | 2 +- .../key_value_detection_model_metrics.go | 2 +- .../oci-go-sdk/v65/aidocument/value_array.go | 8 +- .../oci-go-sdk/v65/aidocument/value_date.go | 8 +- .../v65/aidocument/value_integer.go | 8 +- .../oci-go-sdk/v65/aidocument/value_number.go | 8 +- .../v65/aidocument/value_phone_number.go | 8 +- .../oci-go-sdk/v65/aidocument/value_string.go | 8 +- .../oci-go-sdk/v65/aidocument/value_time.go | 8 +- .../ailanguage_aiservicelanguage_client.go | 80 +-- ...ed_entity_recognition_evaluation_result.go | 4 +- .../named_entity_recognition_model_details.go | 2 +- .../pre_trained_health_nlu_model_details.go | 2 +- ...ned_key_phrase_extraction_model_details.go | 2 +- ...rained_language_detection_model_details.go | 2 +- ..._named_entity_recognition_model_details.go | 2 +- .../pre_trained_phi_model_details.go | 2 +- .../pre_trained_pii_model_details.go | 2 +- ...rained_sentiment_analysis_model_details.go | 2 +- .../ailanguage/pre_trained_summarization.go | 2 +- ...ained_text_classification_model_details.go | 2 +- .../ailanguage/pre_trained_universal_model.go | 2 +- .../text_classification_model_details.go | 2 +- ..._classification_model_evaluation_result.go | 4 +- .../aivision_aiservicevision_client.go | 50 +- .../oci-go-sdk/v65/aivision/value_array.go | 8 +- .../oci-go-sdk/v65/aivision/value_date.go | 8 +- .../oci-go-sdk/v65/aivision/value_integer.go | 8 +- .../oci-go-sdk/v65/aivision/value_number.go | 8 +- .../v65/aivision/value_phone_number.go | 8 +- .../oci-go-sdk/v65/aivision/value_string.go | 8 +- .../oci-go-sdk/v65/aivision/value_time.go | 8 +- .../v65/analytics/analytics_client.go | 46 +- .../v65/announcementsservice/announcement.go | 38 +- .../announcement_summary.go | 38 +- .../announcements_preferences.go | 14 +- .../announcements_preferences_summary.go | 14 +- ...nnouncementsservice_announcement_client.go | 8 +- ...service_announcementspreferences_client.go | 8 +- ...service_announcementsubscription_client.go | 18 +- ...reate_announcements_preferences_details.go | 8 +- ...pdate_announcements_preferences_details.go | 8 +- .../v65/apigateway/any_of_selection_key.go | 4 +- .../v65/apigateway/apigateway_client.go | 42 +- .../apigateway_deployment_client.go | 12 +- .../apigateway/apigateway_gateway_client.go | 12 +- .../apigateway_subscribers_client.go | 12 +- .../apigateway_usageplans_client.go | 12 +- .../apigateway_workrequests_client.go | 10 +- .../custom_authentication_policy.go | 2 +- .../oci-go-sdk/v65/apigateway/json_web_key.go | 2 +- .../apigateway/jwt_authentication_policy.go | 2 +- .../v65/apigateway/pem_encoded_public_key.go | 2 +- .../v65/apigateway/simple_lookup_policy.go | 4 +- .../apigateway/token_authentication_policy.go | 2 +- ...tion_remote_discovery_validation_policy.go | 2 +- ...ntication_remote_jwks_validation_policy.go | 2 +- ...ntication_static_keys_validation_policy.go | 2 +- .../v65/apigateway/wildcard_selection_key.go | 4 +- .../oci-go-sdk/v65/apmconfig/apdex_rules.go | 16 +- .../v65/apmconfig/apdex_rules_summary.go | 16 +- .../v65/apmconfig/apmconfig_config_client.go | 16 +- .../apmconfig/create_apdex_rules_details.go | 4 +- .../apmconfig/create_metric_group_details.go | 4 +- .../v65/apmconfig/create_options_details.go | 4 +- .../apmconfig/create_span_filter_details.go | 4 +- .../oci-go-sdk/v65/apmconfig/metric_group.go | 16 +- .../v65/apmconfig/metric_group_summary.go | 16 +- .../oci-go-sdk/v65/apmconfig/options.go | 16 +- .../v65/apmconfig/options_summary.go | 16 +- .../oci-go-sdk/v65/apmconfig/span_filter.go | 16 +- .../v65/apmconfig/span_filter_summary.go | 16 +- .../apmconfig/update_apdex_rules_details.go | 4 +- .../apmconfig/update_metric_group_details.go | 4 +- .../v65/apmconfig/update_options_details.go | 4 +- .../apmconfig/update_span_filter_details.go | 4 +- .../apmcontrolplane_apmdomain_client.go | 28 +- .../apmsynthetics_apmsynthetic_client.go | 36 +- .../browser_monitor_configuration.go | 4 +- .../network_monitor_configuration.go | 4 +- .../v65/apmsynthetics/oracle_rm_stack.go | 2 +- .../rest_monitor_configuration.go | 4 +- .../scripted_browser_monitor_configuration.go | 4 +- .../scripted_rest_monitor_configuration.go | 4 +- .../v65/apmtraces/apmtraces_query_client.go | 4 +- .../v65/apmtraces/apmtraces_trace_client.go | 8 +- .../appmgmtcontrol/appmgmtcontrol_client.go | 16 +- .../v65/artifacts/artifacts_client.go | 64 +- .../create_generic_repository_details.go | 12 +- .../v65/artifacts/generic_repository.go | 18 +- .../artifacts/generic_repository_summary.go | 18 +- .../update_generic_repository_details.go | 8 +- .../oci-go-sdk/v65/audit/audit_client.go | 6 +- .../v65/autoscaling/autoscaling_client.go | 22 +- .../create_scheduled_policy_details.go | 6 +- .../create_threshold_policy_details.go | 6 +- .../autoscaling/cron_execution_schedule.go | 2 +- .../v65/autoscaling/instance_pool_resource.go | 2 +- .../v65/autoscaling/scheduled_policy.go | 10 +- .../v65/autoscaling/threshold_policy.go | 10 +- .../update_scheduled_policy_details.go | 6 +- .../update_threshold_policy_details.go | 6 +- .../oci-go-sdk/v65/bastion/bastion_client.go | 30 +- .../oracle/oci-go-sdk/v65/bds/bds_client.go | 94 +-- ...based_horizontal_scaling_policy_details.go | 4 +- ...c_based_vertical_scaling_policy_details.go | 4 +- ...based_horizontal_scaling_policy_details.go | 4 +- ...e_based_vertical_scaling_policy_details.go | 4 +- .../blockchain_blockchainplatform_client.go | 54 +- .../oci-go-sdk/v65/budget/budget_client.go | 20 +- .../certificatesmanagement_client.go | 64 +- ...certificate_by_importing_config_details.go | 2 +- ...te_issued_by_internal_ca_config_details.go | 2 +- ...ly_issued_by_internal_ca_config_details.go | 2 +- ...by_generating_internally_config_details.go | 2 +- ...ca_issued_by_internal_ca_config_details.go | 2 +- ...certificate_by_importing_config_details.go | 4 +- ...te_issued_by_internal_ca_config_details.go | 4 +- ...ly_issued_by_internal_ca_config_details.go | 4 +- ...by_generating_internally_config_details.go | 4 +- ...ca_issued_by_internal_ca_config_details.go | 4 +- .../cloudbridge/cloudbridge_common_client.go | 10 +- .../cloudbridge_discovery_client.go | 28 +- .../cloudbridge_inventory_client.go | 32 +- .../cloudbridge_ocbagentsvc_client.go | 46 +- .../create_vm_ware_asset_source_details.go | 18 +- .../create_vmware_vm_asset_details.go | 16 +- .../import_inventory_via_assets_details.go | 6 +- .../cloudbridge/update_vm_asset_details.go | 8 +- .../update_vm_ware_asset_source_details.go | 10 +- .../update_vmware_vm_asset_details.go | 8 +- .../oci-go-sdk/v65/cloudbridge/vm_asset.go | 26 +- .../v65/cloudbridge/vm_ware_asset_source.go | 28 +- .../vm_ware_asset_source_summary.go | 26 +- .../v65/cloudbridge/vmware_vm_asset.go | 26 +- .../v65/cloudguard/cloudguard_client.go | 266 ++++---- .../as_is_resource_assessment_strategy.go | 2 +- .../average_resource_assessment_strategy.go | 2 +- .../cloudmigrations_migration_client.go | 86 +-- .../create_vm_target_asset_details.go | 4 +- .../create_vm_ware_asset_source_details.go | 18 +- .../peak_resource_assessment_strategy.go | 2 +- ...percentile_resource_assessment_strategy.go | 2 +- .../update_vm_target_asset_details.go | 2 +- .../update_vm_ware_asset_source_details.go | 10 +- .../v65/cloudmigrations/vm_target_asset.go | 28 +- .../vm_target_asset_summary.go | 28 +- .../cloudmigrations/vm_target_environment.go | 2 +- .../cloudmigrations/vm_ware_asset_source.go | 28 +- .../vm_ware_asset_source_summary.go | 26 +- .../oracle/oci-go-sdk/v65/common/version.go | 2 +- .../computeinstanceagent_client.go | 12 +- .../computeinstanceagent_plugin_client.go | 4 +- ...omputeinstanceagent_pluginconfig_client.go | 2 +- ...output_via_object_storage_tuple_details.go | 4 +- ...n_output_via_object_storage_uri_details.go | 4 +- ...mmand_execution_output_via_text_details.go | 4 +- .../containerengine/containerengine_client.go | 88 +-- .../node_source_via_image_option.go | 2 +- .../basic_image_pull_secret.go | 2 +- .../container_command_health_check.go | 18 +- .../container_config_file_volume.go | 2 +- .../container_empty_dir_volume.go | 2 +- .../container_http_health_check.go | 18 +- .../container_tcp_health_check.go | 18 +- ...ainerinstances_containerinstance_client.go | 36 +- .../create_basic_image_pull_secret_details.go | 2 +- ..._container_command_health_check_details.go | 14 +- ...te_container_config_file_volume_details.go | 2 +- ...eate_container_empty_dir_volume_details.go | 2 +- ...ate_container_http_health_check_details.go | 14 +- ...eate_container_tcp_health_check_details.go | 14 +- .../create_vault_image_pull_secret_details.go | 12 +- .../vault_image_pull_secret.go | 2 +- ..._bm_gpu_launch_instance_platform_config.go | 8 +- .../core/amd_milan_bm_gpu_platform_config.go | 8 +- ...ilan_bm_launch_instance_platform_config.go | 8 +- .../v65/core/amd_milan_bm_platform_config.go | 8 +- ..._bm_gpu_launch_instance_platform_config.go | 8 +- .../core/amd_rome_bm_gpu_platform_config.go | 8 +- ...rome_bm_launch_instance_platform_config.go | 8 +- .../v65/core/amd_rome_bm_platform_config.go | 8 +- .../amd_vm_launch_instance_platform_config.go | 8 +- .../v65/core/amd_vm_platform_config.go | 8 +- .../core/attach_emulated_volume_details.go | 12 +- .../v65/core/attach_i_scsi_volume_details.go | 12 +- .../attach_paravirtualized_volume_details.go | 12 +- ...ttach_service_determined_volume_details.go | 12 +- ...lean_image_capability_schema_descriptor.go | 2 +- .../v65/core/core_blockstorage_client.go | 134 ++-- .../v65/core/core_compute_client.go | 183 +++--- .../v65/core/core_computemanagement_client.go | 64 +- .../v65/core/core_virtualnetwork_client.go | 580 ++++++++-------- .../create_instance_configuration_details.go | 8 +- ...nce_configuration_from_instance_details.go | 8 +- .../v65/core/emulated_volume_attachment.go | 28 +- ...num_integer_image_capability_descriptor.go | 2 +- ...ring_image_capability_schema_descriptor.go | 2 +- ..._image_via_object_storage_tuple_details.go | 2 +- ...rt_image_via_object_storage_uri_details.go | 2 +- ...eric_bm_launch_instance_platform_config.go | 8 +- .../v65/core/generic_bm_platform_config.go | 8 +- .../v65/core/i_scsi_volume_attachment.go | 28 +- ...source_via_object_storage_tuple_details.go | 6 +- ...e_source_via_object_storage_uri_details.go | 6 +- ..._bm_gpu_launch_instance_platform_config.go | 8 +- ...ilan_bm_launch_instance_platform_config.go | 8 +- ..._bm_gpu_launch_instance_platform_config.go | 8 +- ...rome_bm_launch_instance_platform_config.go | 8 +- ..._amd_vm_launch_instance_platform_config.go | 8 +- ...eric_bm_launch_instance_platform_config.go | 8 +- ...lake_bm_launch_instance_platform_config.go | 8 +- ...lake_bm_launch_instance_platform_config.go | 8 +- ...ntel_vm_launch_instance_platform_config.go | 8 +- ...nfiguration_iscsi_attach_volume_details.go | 8 +- ...n_paravirtualized_attach_volume_details.go | 8 +- ...lake_bm_launch_instance_platform_config.go | 8 +- .../core/intel_icelake_bm_platform_config.go | 8 +- ...lake_bm_launch_instance_platform_config.go | 8 +- .../core/intel_skylake_bm_platform_config.go | 8 +- ...ntel_vm_launch_instance_platform_config.go | 8 +- .../v65/core/intel_vm_platform_config.go | 8 +- .../core/ip_sec_connection_device_config.go | 4 +- ...c_tunnel_drg_attachment_network_details.go | 2 +- ...oop_back_drg_attachment_network_details.go | 2 +- .../v65/core/network_security_group.go | 12 +- .../v65/core/networking_topology.go | 8 +- .../core/paravirtualized_volume_attachment.go | 28 +- ...nnection_drg_attachment_network_details.go | 2 +- .../oci-go-sdk/v65/core/subnet_topology.go | 8 +- ...ogy_associated_with_entity_relationship.go | 4 +- .../topology_contains_entity_relationship.go | 4 +- .../topology_routes_to_entity_relationship.go | 4 +- .../oci-go-sdk/v65/core/tunnel_config.go | 4 +- .../v65/core/tunnel_cpe_device_config.go | 8 +- ...n_drg_attachment_network_create_details.go | 2 +- .../vcn_drg_attachment_network_details.go | 2 +- .../oci-go-sdk/v65/core/vcn_topology.go | 8 +- ..._circuit_drg_attachment_network_details.go | 2 +- .../autonomous_database_connection_strings.go | 87 +-- ...reate_autonomous_database_clone_details.go | 92 +-- .../create_autonomous_database_details.go | 92 +-- ...autonomous_database_from_backup_details.go | 92 +-- ..._database_from_backup_timestamp_details.go | 92 +-- ..._autonomous_database_data_guard_details.go | 141 ++-- ..._cross_region_disaster_recovery_details.go | 136 ++-- ...sociation_to_existing_db_system_details.go | 14 +- ...ociation_to_existing_vm_cluster_details.go | 14 +- ..._association_with_new_db_system_details.go | 14 +- .../database/create_database_from_backup.go | 8 +- ...reate_db_home_with_db_system_id_details.go | 14 +- ...e_with_db_system_id_from_backup_details.go | 14 +- ...with_db_system_id_from_database_details.go | 14 +- ...eate_db_home_with_vm_cluster_id_details.go | 14 +- ..._with_vm_cluster_id_from_backup_details.go | 14 +- .../create_external_macs_connector_details.go | 8 +- .../database/create_new_database_details.go | 8 +- .../create_nfs_backup_destination_details.go | 8 +- ...ry_appliance_backup_destination_details.go | 8 +- ...hable_autonomous_database_clone_details.go | 92 +-- .../v65/database/database_client.go | 622 +++++++++--------- ...de_with_database_software_image_details.go | 2 +- .../database_upgrade_with_db_home_details.go | 2 +- ...atabase_upgrade_with_db_version_details.go | 2 +- .../v65/database/external_macs_connector.go | 22 +- .../external_macs_connector_summary.go | 22 +- .../v65/database/launch_db_system_details.go | 54 +- .../launch_db_system_from_backup_details.go | 54 +- .../launch_db_system_from_database_details.go | 54 +- ...launch_db_system_from_db_system_details.go | 54 +- .../update_external_macs_connector_details.go | 6 +- .../databasemanagement/awr_db_collection.go | 8 +- .../awr_db_cpu_usage_collection.go | 8 +- .../awr_db_metric_collection.go | 8 +- .../awr_db_parameter_change_collection.go | 8 +- .../awr_db_parameter_collection.go | 8 +- .../v65/databasemanagement/awr_db_report.go | 8 +- .../awr_db_snapshot_collection.go | 8 +- .../awr_db_snapshot_range_collection.go | 8 +- .../databasemanagement/awr_db_sql_report.go | 8 +- .../awr_db_sysstat_collection.go | 8 +- .../awr_db_top_wait_event_collection.go | 8 +- .../awr_db_wait_event_bucket_collection.go | 8 +- .../awr_db_wait_event_collection.go | 8 +- .../basic_preferred_credential.go | 6 +- ...ternal_db_system_macs_connector_details.go | 4 +- .../create_sql_job_details.go | 20 +- .../databasemanagement_dbmanagement_client.go | 382 +++++------ ...atabasemanagement_diagnosability_client.go | 8 +- .../databasemanagement_perfhub_client.go | 2 +- .../databasemanagement_sqltuning_client.go | 34 +- .../discovered_external_asm.go | 14 +- .../discovered_external_asm_instance.go | 14 +- .../discovered_external_cluster.go | 14 +- .../discovered_external_cluster_instance.go | 14 +- .../discovered_external_database.go | 14 +- .../discovered_external_db_home.go | 14 +- .../discovered_external_db_node.go | 14 +- .../discovered_external_listener.go | 14 +- .../discovered_external_pluggable_database.go | 14 +- ...ernal_database_system_discovery_summary.go | 20 +- ...rnal_db_system_discovery_macs_connector.go | 8 +- .../external_db_system_macs_connector.go | 22 +- ...xternal_exadata_database_system_summary.go | 20 +- .../external_exadata_infrastructure.go | 20 +- ...ternal_exadata_infrastructure_discovery.go | 20 +- ...xadata_infrastructure_discovery_summary.go | 20 +- ...external_exadata_infrastructure_summary.go | 20 +- .../external_exadata_storage_connector.go | 20 +- ...ernal_exadata_storage_connector_summary.go | 20 +- .../external_exadata_storage_grid.go | 20 +- .../external_exadata_storage_grid_summary.go | 20 +- .../external_exadata_storage_server.go | 20 +- ...external_exadata_storage_server_summary.go | 20 +- .../external_listener_ipc_endpoint.go | 2 +- .../external_listener_tcp_endpoint.go | 2 +- .../external_listener_tcps_endpoint.go | 2 +- ...external_storage_grid_discovery_summary.go | 20 +- ...ternal_storage_server_discovery_summary.go | 20 +- .../managed_database_password_credential.go | 4 +- .../managed_database_secret_credential.go | 4 +- .../patch_merge_instruction.go | 2 +- .../v65/databasemanagement/sql_job.go | 32 +- ...g_set_admin_password_credential_details.go | 4 +- ...ing_set_admin_secret_credential_details.go | 4 +- ...tuning_task_password_credential_details.go | 4 +- ...l_tuning_task_secret_credential_details.go | 4 +- ...space_admin_password_credential_details.go | 4 +- ...lespace_admin_secret_credential_details.go | 4 +- .../update_sql_job_details.go | 8 +- .../create_curl_transfer_details.go | 2 +- .../create_oci_cli_dump_transfer_details.go | 2 +- .../curl_transfer_details.go | 2 +- .../databasemigration_client.go | 82 +-- .../oci_cli_dump_transfer_details.go | 2 +- .../update_curl_transfer_details.go | 2 +- .../update_oci_cli_dump_transfer_details.go | 2 +- ...atabase_tools_connection_my_sql_details.go | 8 +- ...ools_connection_oracle_database_details.go | 8 +- .../database_tools_connection_my_sql.go | 20 +- ...atabase_tools_connection_my_sql_summary.go | 20 +- ...tabase_tools_connection_oracle_database.go | 20 +- ...ools_connection_oracle_database_summary.go | 20 +- .../v65/databasetools/databasetools_client.go | 38 +- ...atabase_tools_connection_my_sql_details.go | 6 +- ...ools_connection_oracle_database_details.go | 6 +- ...database_tools_connection_my_sql_result.go | 8 +- ...tools_connection_oracle_database_result.go | 8 +- .../datacatalog/data_asset_export_scope.go | 5 +- .../v65/datacatalog/datacatalog_client.go | 282 ++++---- .../v65/dataflow/create_run_details.go | 1 + .../v65/dataflow/dataflow_client.go | 84 +-- .../v65/dataintegration/abstract_field.go | 14 +- .../v65/dataintegration/aggregator.go | 24 +- .../v65/dataintegration/array_type.go | 12 +- .../dataintegration/avro_format_attribute.go | 2 +- .../v65/dataintegration/bip_call_attribute.go | 2 +- .../dataintegration/composite_field_map.go | 2 +- .../v65/dataintegration/composite_type.go | 12 +- .../conditional_composite_field_map.go | 2 +- .../dataintegration/conditional_input_link.go | 12 +- .../conditional_output_port.go | 14 +- .../v65/dataintegration/configured_type.go | 12 +- .../dataintegration/connection_from_adwc.go | 26 +- .../connection_from_adwc_details.go | 24 +- .../connection_from_amazon_s3.go | 26 +- .../connection_from_amazon_s3_details.go | 24 +- .../dataintegration/connection_from_atp.go | 26 +- .../connection_from_atp_details.go | 24 +- .../dataintegration/connection_from_bicc.go | 26 +- .../connection_from_bicc_details.go | 24 +- .../dataintegration/connection_from_bip.go | 26 +- .../connection_from_bip_details.go | 24 +- .../dataintegration/connection_from_hdfs.go | 26 +- .../connection_from_hdfs_details.go | 24 +- .../dataintegration/connection_from_jdbc.go | 26 +- .../connection_from_jdbc_details.go | 24 +- .../dataintegration/connection_from_lake.go | 26 +- .../connection_from_lake_details.go | 24 +- .../dataintegration/connection_from_my_sql.go | 26 +- .../connection_from_my_sql_details.go | 24 +- .../connection_from_my_sql_heat_wave.go | 26 +- ...onnection_from_my_sql_heat_wave_details.go | 24 +- .../connection_from_object_storage.go | 26 +- .../connection_from_object_storage_details.go | 24 +- .../dataintegration/connection_from_oracle.go | 26 +- .../connection_from_oracle_details.go | 24 +- .../connection_from_oracle_ebs.go | 26 +- .../connection_from_oracle_ebs_details.go | 24 +- .../connection_from_oracle_people_soft.go | 26 +- ...nection_from_oracle_people_soft_details.go | 24 +- .../connection_from_oracle_siebel.go | 26 +- .../connection_from_oracle_siebel_details.go | 24 +- .../connection_from_rest_basic_auth.go | 26 +- ...connection_from_rest_basic_auth_details.go | 24 +- .../connection_from_rest_no_auth.go | 26 +- .../connection_from_rest_no_auth_details.go | 24 +- .../connection_summary_from_adwc.go | 26 +- .../connection_summary_from_amazon_s3.go | 26 +- .../connection_summary_from_atp.go | 26 +- .../connection_summary_from_bicc.go | 26 +- .../connection_summary_from_bip.go | 26 +- .../connection_summary_from_hdfs.go | 26 +- .../connection_summary_from_jdbc.go | 26 +- .../connection_summary_from_lake.go | 26 +- .../connection_summary_from_my_sql.go | 26 +- ...onnection_summary_from_my_sql_heat_wave.go | 26 +- .../connection_summary_from_object_storage.go | 26 +- .../connection_summary_from_oracle.go | 26 +- .../connection_summary_from_oracle_ebs.go | 26 +- ...nection_summary_from_oracle_people_soft.go | 26 +- .../connection_summary_from_oracle_siebel.go | 26 +- ...connection_summary_from_rest_basic_auth.go | 26 +- .../connection_summary_from_rest_no_auth.go | 26 +- .../create_connection_from_adwc.go | 18 +- .../create_connection_from_amazon_s3.go | 18 +- .../create_connection_from_atp.go | 18 +- .../create_connection_from_bicc.go | 18 +- .../create_connection_from_bip.go | 18 +- .../create_connection_from_hdfs.go | 18 +- .../create_connection_from_jdbc.go | 18 +- .../create_connection_from_lake.go | 18 +- .../create_connection_from_my_sql.go | 18 +- ...create_connection_from_my_sql_heat_wave.go | 18 +- .../create_connection_from_object_storage.go | 18 +- .../create_connection_from_oracle.go | 18 +- .../create_connection_from_oracle_ebs.go | 18 +- ...eate_connection_from_oracle_people_soft.go | 18 +- .../create_connection_from_oracle_siebel.go | 18 +- .../create_connection_from_rest_basic_auth.go | 18 +- .../create_connection_from_rest_no_auth.go | 18 +- .../create_data_asset_from_adwc.go | 18 +- .../create_data_asset_from_amazon_s3.go | 18 +- .../create_data_asset_from_atp.go | 18 +- .../create_data_asset_from_fusion_app.go | 18 +- .../create_data_asset_from_hdfs.go | 18 +- .../create_data_asset_from_jdbc.go | 18 +- .../create_data_asset_from_lake.go | 18 +- .../create_data_asset_from_my_sql.go | 18 +- ...create_data_asset_from_my_sql_heat_wave.go | 18 +- .../create_data_asset_from_object_storage.go | 18 +- .../create_data_asset_from_oracle.go | 18 +- .../create_data_asset_from_oracle_ebs.go | 18 +- ...eate_data_asset_from_oracle_people_soft.go | 18 +- .../create_data_asset_from_oracle_siebel.go | 18 +- .../create_data_asset_from_rest.go | 18 +- .../create_task_from_data_loader_task.go | 26 +- .../create_task_from_integration_task.go | 26 +- .../create_task_from_oci_dataflow_task.go | 26 +- .../create_task_from_pipeline_task.go | 26 +- .../create_task_from_rest_task.go | 26 +- .../create_task_from_sql_task.go | 26 +- ...e_task_validation_from_data_loader_task.go | 28 +- ...e_task_validation_from_integration_task.go | 28 +- ...eate_task_validation_from_pipeline_task.go | 28 +- .../dataintegration/csv_format_attribute.go | 2 +- .../custom_frequency_details.go | 2 +- .../daily_frequency_details.go | 2 +- .../data_asset_from_adwc_details.go | 26 +- .../data_asset_from_amazon_s3.go | 26 +- .../data_asset_from_atp_details.go | 26 +- .../data_asset_from_fusion_app.go | 26 +- .../data_asset_from_hdfs_details.go | 26 +- .../dataintegration/data_asset_from_jdbc.go | 26 +- .../data_asset_from_lake_details.go | 26 +- .../dataintegration/data_asset_from_my_sql.go | 26 +- .../data_asset_from_my_sql_heat_wave.go | 26 +- .../data_asset_from_object_storage_details.go | 26 +- .../data_asset_from_oracle_details.go | 26 +- .../data_asset_from_oracle_ebs_details.go | 26 +- ...a_asset_from_oracle_people_soft_details.go | 26 +- .../data_asset_from_oracle_siebel_details.go | 26 +- .../data_asset_from_rest_details.go | 26 +- .../data_asset_summary_from_adwc.go | 24 +- .../data_asset_summary_from_amazon_s3.go | 24 +- .../data_asset_summary_from_atp.go | 24 +- .../data_asset_summary_from_fusion_app.go | 24 +- .../data_asset_summary_from_hdfs.go | 24 +- .../data_asset_summary_from_jdbc.go | 24 +- .../data_asset_summary_from_lake.go | 24 +- .../data_asset_summary_from_my_sql.go | 24 +- ...ata_asset_summary_from_my_sql_heat_wave.go | 24 +- .../data_asset_summary_from_object_storage.go | 24 +- .../data_asset_summary_from_oracle.go | 24 +- .../data_asset_summary_from_oracle_ebs.go | 24 +- ...a_asset_summary_from_oracle_people_soft.go | 24 +- .../data_asset_summary_from_oracle_siebel.go | 24 +- .../data_asset_summary_from_rest.go | 24 +- .../data_entity_from_data_store.go | 2 +- .../dataintegration/data_entity_from_file.go | 2 +- .../data_entity_from_object.go | 2 +- .../dataintegration/data_entity_from_sql.go | 2 +- .../dataintegration/data_entity_from_table.go | 2 +- .../dataintegration/data_entity_from_view.go | 2 +- .../data_entity_summary_from_data_store.go | 2 +- .../data_entity_summary_from_file.go | 2 +- .../data_entity_summary_from_object.go | 2 +- .../data_entity_summary_from_sql.go | 2 +- .../data_entity_summary_from_table.go | 2 +- .../data_entity_summary_from_view.go | 2 +- .../v65/dataintegration/data_type.go | 12 +- .../dataintegration/dataintegration_client.go | 329 ++++----- .../v65/dataintegration/decision_operator.go | 24 +- .../dataintegration/decision_output_port.go | 14 +- .../v65/dataintegration/derived_entity.go | 2 +- .../v65/dataintegration/derived_field.go | 14 +- .../v65/dataintegration/derived_type.go | 12 +- .../v65/dataintegration/direct_field_map.go | 2 +- .../dataintegration/direct_named_field_map.go | 2 +- .../v65/dataintegration/distinct.go | 24 +- .../dataintegration/dynamic_input_field.go | 14 +- .../dataintegration/dynamic_proxy_field.go | 14 +- .../v65/dataintegration/dynamic_type.go | 12 +- .../v65/dataintegration/end_operator.go | 24 +- .../dataintegration/entity_shape_from_file.go | 2 +- .../entity_shape_from_object.go | 2 +- .../dataintegration/entity_shape_from_sql.go | 2 +- .../dataintegration/expression_operator.go | 24 +- .../oci-go-sdk/v65/dataintegration/filter.go | 24 +- .../oci-go-sdk/v65/dataintegration/flatten.go | 24 +- .../v65/dataintegration/flow_port.go | 14 +- .../v65/dataintegration/function.go | 24 +- .../generic_rest_call_attribute.go | 2 +- .../grouped_name_pattern_rule.go | 14 +- .../hourly_frequency_details.go | 2 +- .../v65/dataintegration/input_field.go | 14 +- .../v65/dataintegration/input_link.go | 12 +- .../v65/dataintegration/input_port.go | 14 +- .../v65/dataintegration/input_proxy_field.go | 14 +- .../v65/dataintegration/intersect.go | 24 +- .../v65/dataintegration/java_type.go | 12 +- .../oci-go-sdk/v65/dataintegration/joiner.go | 24 +- .../dataintegration/json_format_attribute.go | 2 +- .../oci-go-sdk/v65/dataintegration/lookup.go | 24 +- .../v65/dataintegration/macro_field.go | 14 +- .../v65/dataintegration/map_type.go | 12 +- .../materialized_composite_type.go | 12 +- .../materialized_dynamic_field.go | 14 +- .../v65/dataintegration/merge_operator.go | 24 +- .../oci-go-sdk/v65/dataintegration/minus.go | 24 +- .../monthly_frequency_details.go | 2 +- .../monthly_rule_frequency_details.go | 2 +- .../v65/dataintegration/name_list_rule.go | 14 +- .../v65/dataintegration/name_pattern_rule.go | 14 +- .../v65/dataintegration/named_entity_map.go | 2 +- .../v65/dataintegration/operation_from_api.go | 2 +- .../operation_from_procedure.go | 2 +- .../v65/dataintegration/output_field.go | 14 +- .../v65/dataintegration/output_link.go | 12 +- .../v65/dataintegration/output_port.go | 14 +- .../v65/dataintegration/parameter.go | 14 +- .../parquet_format_attribute.go | 2 +- .../oci-go-sdk/v65/dataintegration/pivot.go | 24 +- .../v65/dataintegration/pivot_field.go | 14 +- .../v65/dataintegration/primary_key.go | 12 +- .../v65/dataintegration/projection.go | 24 +- .../v65/dataintegration/proxy_field.go | 14 +- .../published_object_from_data_loader_task.go | 16 +- .../published_object_from_integration_task.go | 16 +- .../published_object_from_pipeline_task.go | 16 +- ...ished_object_from_pipeline_task_summary.go | 18 +- ...ed_object_summary_from_data_loader_task.go | 18 +- ...ed_object_summary_from_integration_task.go | 18 +- .../dataintegration/read_operation_config.go | 6 +- .../referenced_data_object_from_api.go | 14 +- .../referenced_data_object_from_procedure.go | 14 +- .../v65/dataintegration/rename_rule.go | 14 +- .../resource_principal_auth_config.go | 6 +- .../dataintegration/rule_based_entity_map.go | 2 +- .../dataintegration/rule_based_field_map.go | 2 +- .../oci-go-sdk/v65/dataintegration/shape.go | 14 +- .../v65/dataintegration/shape_field.go | 14 +- .../v65/dataintegration/sort_oper.go | 24 +- .../oci-go-sdk/v65/dataintegration/source.go | 24 +- .../oci-go-sdk/v65/dataintegration/split.go | 24 +- .../v65/dataintegration/start_operator.go | 24 +- .../oci-go-sdk/v65/dataintegration/target.go | 24 +- .../task_from_data_loader_task_details.go | 32 +- .../task_from_integration_task_details.go | 32 +- .../task_from_oci_dataflow_task_details.go | 32 +- .../task_from_pipeline_task_details.go | 32 +- .../task_from_rest_task_details.go | 32 +- .../task_from_sql_task_details.go | 32 +- .../v65/dataintegration/task_operator.go | 24 +- .../task_summary_from_data_loader_task.go | 30 +- .../task_summary_from_integration_task.go | 30 +- .../task_summary_from_oci_dataflow_task.go | 30 +- .../task_summary_from_pipeline_task.go | 30 +- .../task_summary_from_rest_task.go | 30 +- .../task_summary_from_sql_task.go | 30 +- .../v65/dataintegration/type_list_rule.go | 14 +- .../v65/dataintegration/typed_expression.go | 14 +- .../typed_name_pattern_rule.go | 14 +- .../oci-go-sdk/v65/dataintegration/union.go | 24 +- .../v65/dataintegration/unique_data_key.go | 12 +- .../update_connection_from_adwc.go | 20 +- .../update_connection_from_amazon_s3.go | 20 +- .../update_connection_from_atp.go | 20 +- .../update_connection_from_bicc.go | 20 +- .../update_connection_from_bip.go | 20 +- .../update_connection_from_hdfs.go | 20 +- .../update_connection_from_jdbc.go | 20 +- .../update_connection_from_lake.go | 20 +- .../update_connection_from_my_sql.go | 20 +- ...update_connection_from_my_sql_heat_wave.go | 20 +- .../update_connection_from_object_storage.go | 20 +- .../update_connection_from_oracle.go | 20 +- .../update_connection_from_oracle_ebs.go | 20 +- ...date_connection_from_oracle_people_soft.go | 20 +- .../update_connection_from_oracle_siebel.go | 20 +- .../update_connection_from_rest_basic_auth.go | 20 +- .../update_connection_from_rest_no_auth.go | 20 +- .../update_data_asset_from_adwc.go | 20 +- .../update_data_asset_from_amazon_s3.go | 20 +- .../update_data_asset_from_atp.go | 20 +- .../update_data_asset_from_fusion_app.go | 20 +- .../update_data_asset_from_hdfs.go | 20 +- .../update_data_asset_from_jdbc.go | 20 +- .../update_data_asset_from_lake.go | 20 +- .../update_data_asset_from_my_sql.go | 20 +- ...update_data_asset_from_my_sql_heat_wave.go | 20 +- .../update_data_asset_from_object_storage.go | 20 +- .../update_data_asset_from_oracle.go | 20 +- .../update_data_asset_from_oracle_ebs.go | 20 +- ...date_data_asset_from_oracle_people_soft.go | 20 +- .../update_data_asset_from_oracle_siebel.go | 20 +- .../update_data_asset_from_rest.go | 20 +- .../update_task_from_data_loader_task.go | 28 +- .../update_task_from_integration_task.go | 28 +- .../update_task_from_oci_dataflow_task.go | 28 +- .../update_task_from_pipeline_task.go | 28 +- .../update_task_from_rest_task.go | 28 +- .../update_task_from_sql_task.go | 28 +- .../weekly_frequency_details.go | 2 +- .../dataintegration/write_operation_config.go | 6 +- ...ngservice_datalabelingmanagement_client.go | 34 +- .../datasafe/autonomous_database_details.go | 2 +- .../compatible_formats_for_data_types.go | 11 +- .../create_sensitive_category_details.go | 14 +- .../create_sensitive_type_pattern_details.go | 14 +- .../database_cloud_service_details.go | 2 +- .../v65/datasafe/datasafe_client.go | 428 ++++++------ .../v65/datasafe/delete_rows_format_entry.go | 2 +- ...erministic_encryption_date_format_entry.go | 2 +- .../deterministic_encryption_format_entry.go | 2 +- ...deterministic_substitution_format_entry.go | 2 +- .../v65/datasafe/fixed_number_format_entry.go | 2 +- .../v65/datasafe/fixed_string_format_entry.go | 2 +- .../datasafe/installed_database_details.go | 2 +- .../datasafe/library_masking_format_entry.go | 2 +- .../v65/datasafe/null_value_format_entry.go | 2 +- .../v65/datasafe/patch_insert_instruction.go | 2 +- .../v65/datasafe/patch_merge_instruction.go | 2 +- .../v65/datasafe/patch_remove_instruction.go | 2 +- .../v65/datasafe/ppf_format_entry.go | 2 +- .../preserve_original_data_format_entry.go | 2 +- .../v65/datasafe/random_date_format_entry.go | 2 +- .../random_decimal_number_format_entry.go | 2 +- .../datasafe/random_digits_format_entry.go | 2 +- .../v65/datasafe/random_list_format_entry.go | 2 +- .../datasafe/random_number_format_entry.go | 2 +- .../datasafe/random_string_format_entry.go | 2 +- .../random_substitution_format_entry.go | 2 +- .../regular_expression_format_entry.go | 2 +- .../v65/datasafe/sensitive_category.go | 26 +- .../v65/datasafe/sensitive_type_pattern.go | 26 +- .../v65/datasafe/shuffle_format_entry.go | 2 +- .../datasafe/sql_expression_format_entry.go | 2 +- .../v65/datasafe/substring_format_entry.go | 2 +- .../datasafe/truncate_table_format_entry.go | 2 +- .../v65/datasafe/udf_format_entry.go | 2 +- .../update_sensitive_category_details.go | 12 +- .../update_sensitive_type_pattern_details.go | 12 +- .../v65/datascience/datascience_client.go | 170 ++--- .../pipeline_custom_script_step_details.go | 8 +- .../pipeline_custom_script_step_run.go | 10 +- ...eline_custom_script_step_update_details.go | 6 +- .../pipeline_ml_job_step_details.go | 8 +- .../datascience/pipeline_ml_job_step_run.go | 10 +- .../pipeline_ml_job_step_update_details.go | 6 +- ...bitbucket_cloud_app_password_connection.go | 26 +- ...t_cloud_app_password_connection_summary.go | 26 +- .../devops/bitbucket_cloud_build_source.go | 6 +- .../v65/devops/bitbucket_cloud_trigger.go | 26 +- .../bitbucket_cloud_trigger_create_result.go | 26 +- .../devops/bitbucket_cloud_trigger_summary.go | 24 +- ...itbucket_server_access_token_connection.go | 26 +- .../devops/bitbucket_server_build_source.go | 6 +- ...tbucket_server_token_connection_summary.go | 26 +- .../v65/devops/bitbucket_server_trigger.go | 26 +- .../bitbucket_server_trigger_create_result.go | 26 +- .../bitbucket_server_trigger_summary.go | 24 +- .../oci-go-sdk/v65/devops/build_stage.go | 28 +- .../v65/devops/build_stage_run_progress.go | 12 +- .../v65/devops/build_stage_summary.go | 28 +- ..._instance_group_blue_green_deploy_stage.go | 28 +- ...e_green_deploy_stage_execution_progress.go | 14 +- ...e_group_blue_green_deploy_stage_summary.go | 28 +- ...p_blue_green_traffic_shift_deploy_stage.go | 28 +- ...c_shift_deploy_stage_execution_progress.go | 14 +- ...reen_traffic_shift_deploy_stage_summary.go | 28 +- ...ance_group_canary_approval_deploy_stage.go | 28 +- ...pproval_deploy_stage_execution_progress.go | 14 +- ...up_canary_approval_deploy_stage_summary.go | 28 +- ...pute_instance_group_canary_deploy_stage.go | 28 +- ..._canary_deploy_stage_execution_progress.go | 14 +- ...tance_group_canary_deploy_stage_summary.go | 28 +- ...group_canary_traffic_shift_deploy_stage.go | 28 +- ...c_shift_deploy_stage_execution_progress.go | 14 +- ...nary_traffic_shift_deploy_stage_summary.go | 28 +- ...mpute_instance_group_deploy_environment.go | 24 +- ...stance_group_deploy_environment_summary.go | 24 +- .../compute_instance_group_deploy_stage.go | 28 +- ...e_group_deploy_stage_execution_progress.go | 14 +- ...ute_instance_group_deploy_stage_summary.go | 28 +- ...ce_group_linear_rollout_policy_by_count.go | 2 +- ...oup_linear_rollout_policy_by_percentage.go | 2 +- .../container_registry_delivered_artifact.go | 4 +- ...t_cloud_app_password_connection_details.go | 10 +- .../create_bitbucket_cloud_trigger_details.go | 12 +- ..._server_access_token_connection_details.go | 10 +- ...create_bitbucket_server_trigger_details.go | 12 +- .../v65/devops/create_build_stage_details.go | 12 +- ...e_group_blue_green_deploy_stage_details.go | 12 +- ...reen_traffic_shift_deploy_stage_details.go | 12 +- ...up_canary_approval_deploy_stage_details.go | 12 +- ...tance_group_canary_deploy_stage_details.go | 12 +- ...nary_traffic_shift_deploy_stage_details.go | 12 +- ...stance_group_deploy_environment_details.go | 10 +- ...ute_instance_group_deploy_stage_details.go | 12 +- .../create_deliver_artifact_stage_details.go | 12 +- ...eate_deploy_pipeline_deployment_details.go | 8 +- ...te_deploy_pipeline_redeployment_details.go | 8 +- ..._devops_code_repository_trigger_details.go | 12 +- ...ate_function_deploy_environment_details.go | 10 +- .../create_function_deploy_stage_details.go | 12 +- ..._github_access_token_connection_details.go | 10 +- .../devops/create_github_trigger_details.go | 12 +- ..._gitlab_access_token_connection_details.go | 10 +- ..._server_access_token_connection_details.go | 10 +- .../create_gitlab_server_trigger_details.go | 12 +- .../devops/create_gitlab_trigger_details.go | 12 +- ...te_invoke_function_deploy_stage_details.go | 12 +- ...ncer_traffic_shift_deploy_stage_details.go | 12 +- ...te_manual_approval_deploy_stage_details.go | 12 +- ...ate_oke_blue_green_deploy_stage_details.go | 12 +- ...reen_traffic_shift_deploy_stage_details.go | 12 +- ...ke_canary_approval_deploy_stage_details.go | 12 +- .../create_oke_canary_deploy_stage_details.go | 12 +- ...nary_traffic_shift_deploy_stage_details.go | 12 +- ..._oke_cluster_deploy_environment_details.go | 10 +- .../devops/create_oke_deploy_stage_details.go | 12 +- ...ate_oke_helm_chart_deploy_stage_details.go | 12 +- .../create_shell_deploy_stage_details.go | 12 +- ..._single_deploy_stage_deployment_details.go | 8 +- ...ingle_deploy_stage_redeployment_details.go | 8 +- ...create_trigger_deployment_stage_details.go | 12 +- ...ate_vbs_access_token_connection_details.go | 10 +- .../v65/devops/create_vbs_trigger_details.go | 12 +- .../create_wait_deploy_stage_details.go | 12 +- .../v65/devops/create_wait_stage_details.go | 12 +- .../v65/devops/deliver_artifact_stage.go | 28 +- .../deliver_artifact_stage_run_progress.go | 12 +- .../devops/deliver_artifact_stage_summary.go | 28 +- .../v65/devops/deploy_pipeline_deployment.go | 36 +- .../deploy_pipeline_deployment_summary.go | 30 +- .../devops/deploy_pipeline_redeployment.go | 36 +- .../deploy_pipeline_redeployment_summary.go | 30 +- .../oci-go-sdk/v65/devops/devops_client.go | 178 ++--- .../devops_code_repository_build_source.go | 6 +- .../devops/devops_code_repository_trigger.go | 26 +- ...s_code_repository_trigger_create_result.go | 26 +- .../devops_code_repository_trigger_summary.go | 24 +- .../v65/devops/function_deploy_environment.go | 24 +- .../function_deploy_environment_summary.go | 24 +- .../v65/devops/function_deploy_stage.go | 28 +- ...unction_deploy_stage_execution_progress.go | 14 +- .../devops/function_deploy_stage_summary.go | 28 +- .../v65/devops/generic_delivered_artifact.go | 4 +- .../devops/github_access_token_connection.go | 26 +- .../github_access_token_connection_summary.go | 26 +- .../v65/devops/github_build_source.go | 6 +- .../oci-go-sdk/v65/devops/github_trigger.go | 26 +- .../devops/github_trigger_create_result.go | 26 +- .../v65/devops/github_trigger_summary.go | 24 +- .../devops/gitlab_access_token_connection.go | 26 +- .../gitlab_access_token_connection_summary.go | 26 +- .../v65/devops/gitlab_build_source.go | 6 +- .../gitlab_server_access_token_connection.go | 26 +- ..._server_access_token_connection_summary.go | 26 +- .../v65/devops/gitlab_server_build_source.go | 6 +- .../v65/devops/gitlab_server_trigger.go | 26 +- .../gitlab_server_trigger_create_result.go | 26 +- .../devops/gitlab_server_trigger_summary.go | 24 +- .../oci-go-sdk/v65/devops/gitlab_trigger.go | 26 +- .../devops/gitlab_trigger_create_result.go | 26 +- .../v65/devops/gitlab_trigger_summary.go | 24 +- .../devops/invoke_function_deploy_stage.go | 28 +- ...unction_deploy_stage_execution_progress.go | 14 +- .../invoke_function_deploy_stage_summary.go | 28 +- ...oad_balancer_traffic_shift_deploy_stage.go | 28 +- ...c_shift_deploy_stage_execution_progress.go | 14 +- ...ncer_traffic_shift_deploy_stage_summary.go | 28 +- .../devops/manual_approval_deploy_stage.go | 28 +- ...pproval_deploy_stage_execution_progress.go | 14 +- .../manual_approval_deploy_stage_summary.go | 28 +- .../oci-go-sdk/v65/devops/network_channel.go | 3 +- .../v65/devops/oke_blue_green_deploy_stage.go | 28 +- ...e_green_deploy_stage_execution_progress.go | 14 +- .../oke_blue_green_deploy_stage_summary.go | 28 +- ...e_blue_green_traffic_shift_deploy_stage.go | 28 +- ...c_shift_deploy_stage_execution_progress.go | 14 +- ...reen_traffic_shift_deploy_stage_summary.go | 28 +- .../oke_canary_approval_deploy_stage.go | 28 +- ...pproval_deploy_stage_execution_progress.go | 14 +- ...ke_canary_approval_deploy_stage_summary.go | 28 +- .../v65/devops/oke_canary_deploy_stage.go | 28 +- ..._canary_deploy_stage_execution_progress.go | 14 +- .../devops/oke_canary_deploy_stage_summary.go | 28 +- .../oke_canary_traffic_shift_deploy_stage.go | 28 +- ...c_shift_deploy_stage_execution_progress.go | 14 +- ...nary_traffic_shift_deploy_stage_summary.go | 28 +- .../devops/oke_cluster_deploy_environment.go | 24 +- .../oke_cluster_deploy_environment_summary.go | 24 +- .../oci-go-sdk/v65/devops/oke_deploy_stage.go | 28 +- .../oke_deploy_stage_execution_progress.go | 14 +- .../v65/devops/oke_deploy_stage_summary.go | 28 +- .../v65/devops/oke_helm_chart_deploy_stage.go | 28 +- .../oke_helm_chart_deploy_stage_summary.go | 28 +- ...art_deployment_stage_execution_progress.go | 14 +- .../v65/devops/repository_branch.go | 10 +- .../v65/devops/repository_branch_summary.go | 10 +- .../oci-go-sdk/v65/devops/repository_tag.go | 10 +- .../v65/devops/repository_tag_summary.go | 10 +- .../v65/devops/shell_deploy_stage.go | 28 +- .../shell_deploy_stage_execution_progress.go | 14 +- .../v65/devops/shell_deploy_stage_summary.go | 28 +- .../devops/single_deploy_stage_deployment.go | 36 +- .../single_deploy_stage_deployment_summary.go | 30 +- .../single_deploy_stage_redeployment.go | 36 +- ...ingle_deploy_stage_redeployment_summary.go | 30 +- .../devops/trigger_build_pipeline_action.go | 2 +- ..._deployment_pipeline_stage_run_progress.go | 12 +- .../v65/devops/trigger_deployment_stage.go | 28 +- .../trigger_deployment_stage_summary.go | 28 +- ...t_cloud_app_password_connection_details.go | 8 +- .../update_bitbucket_cloud_trigger_details.go | 10 +- ..._server_access_token_connection_details.go | 8 +- ...update_bitbucket_server_trigger_details.go | 10 +- .../v65/devops/update_build_stage_details.go | 10 +- ...e_group_blue_green_deploy_stage_details.go | 10 +- ...reen_traffic_shift_deploy_stage_details.go | 10 +- ...up_canary_approval_deploy_stage_details.go | 10 +- ...tance_group_canary_deploy_stage_details.go | 10 +- ...nary_traffic_shift_deploy_stage_details.go | 10 +- ...stance_group_deploy_environment_details.go | 8 +- ...ute_instance_group_deploy_stage_details.go | 10 +- .../update_deliver_artifact_stage_details.go | 10 +- ...date_deploy_pipeline_deployment_details.go | 6 +- ...te_deploy_pipeline_redeployment_details.go | 6 +- ..._devops_code_repository_trigger_details.go | 10 +- ...ate_function_deploy_environment_details.go | 8 +- .../update_function_deploy_stage_details.go | 10 +- ..._github_access_token_connection_details.go | 8 +- .../devops/update_github_trigger_details.go | 10 +- ..._gitlab_access_token_connection_details.go | 8 +- ..._server_access_token_connection_details.go | 8 +- .../update_gitlab_server_trigger_details.go | 10 +- .../devops/update_gitlab_trigger_details.go | 10 +- ...te_invoke_function_deploy_stage_details.go | 10 +- ...ncer_traffic_shift_deploy_stage_details.go | 10 +- ...te_manual_approval_deploy_stage_details.go | 10 +- ...ate_oke_blue_green_deploy_stage_details.go | 10 +- ...reen_traffic_shift_deploy_stage_details.go | 10 +- ...ke_canary_approval_deploy_stage_details.go | 10 +- .../update_oke_canary_deploy_stage_details.go | 10 +- ...nary_traffic_shift_deploy_stage_details.go | 10 +- ..._oke_cluster_deploy_environment_details.go | 8 +- .../devops/update_oke_deploy_stage_details.go | 10 +- ...ate_oke_helm_chart_deploy_stage_details.go | 10 +- .../update_shell_deploy_stage_details.go | 10 +- ..._single_deploy_stage_deployment_details.go | 6 +- ...ingle_deploy_stage_redeployment_details.go | 6 +- ...update_trigger_deployment_stage_details.go | 10 +- ...ate_vbs_access_token_connection_details.go | 8 +- .../v65/devops/update_vbs_trigger_details.go | 10 +- .../update_wait_deploy_stage_details.go | 10 +- .../v65/devops/update_wait_stage_details.go | 10 +- .../v65/devops/vbs_access_token_connection.go | 26 +- .../vbs_access_token_connection_summary.go | 26 +- .../oci-go-sdk/v65/devops/vbs_build_source.go | 6 +- .../oci-go-sdk/v65/devops/vbs_trigger.go | 26 +- .../v65/devops/vbs_trigger_create_result.go | 26 +- .../v65/devops/vbs_trigger_summary.go | 24 +- .../v65/devops/wait_deploy_stage.go | 28 +- .../wait_deploy_stage_execution_progress.go | 14 +- .../v65/devops/wait_deploy_stage_summary.go | 28 +- .../oci-go-sdk/v65/devops/wait_stage.go | 28 +- .../v65/devops/wait_stage_run_progress.go | 12 +- .../v65/devops/wait_stage_summary.go | 28 +- ...roup_member_autonomous_database_details.go | 2 +- ...n_group_member_compute_instance_details.go | 2 +- ...member_compute_instance_movable_details.go | 2 +- ...er_compute_instance_non_movable_details.go | 2 +- ...rotection_group_member_database_details.go | 2 +- ...ction_group_member_volume_group_details.go | 2 +- .../disasterrecovery_client.go | 58 +- ...ection_group_member_autonomous_database.go | 2 +- ...rotection_group_member_compute_instance.go | 2 +- ...n_group_member_compute_instance_movable.go | 2 +- ...oup_member_compute_instance_non_movable.go | 2 +- .../dr_protection_group_member_database.go | 2 +- ...dr_protection_group_member_volume_group.go | 2 +- ...roup_member_autonomous_database_details.go | 2 +- ...n_group_member_compute_instance_details.go | 2 +- ...member_compute_instance_movable_details.go | 2 +- ...er_compute_instance_non_movable_details.go | 2 +- ...rotection_group_member_database_details.go | 2 +- ...ction_group_member_volume_group_details.go | 2 +- .../create_migrated_dynect_zone_details.go | 8 +- .../create_resolver_vnic_endpoint_details.go | 10 +- .../oci-go-sdk/v65/dns/create_zone_details.go | 8 +- .../oracle/oci-go-sdk/v65/dns/dns_client.go | 104 +-- .../v65/dns/resolver_forward_rule.go | 4 +- .../v65/dns/resolver_forward_rule_details.go | 4 +- .../v65/dns/resolver_vnic_endpoint.go | 20 +- .../v65/dns/resolver_vnic_endpoint_summary.go | 20 +- .../v65/dns/steering_policy_filter_rule.go | 2 +- .../v65/dns/steering_policy_health_rule.go | 2 +- .../v65/dns/steering_policy_limit_rule.go | 2 +- .../v65/dns/steering_policy_priority_rule.go | 2 +- .../v65/dns/steering_policy_weighted_rule.go | 2 +- .../oci-go-sdk/v65/email/email_client.go | 50 +- .../v65/emwarehouse/emwarehouse_client.go | 26 +- .../v65/events/create_faa_s_action_details.go | 4 +- ...ate_notification_service_action_details.go | 4 +- ...create_streaming_service_action_details.go | 4 +- .../oci-go-sdk/v65/events/events_client.go | 12 +- .../oci-go-sdk/v65/events/faa_s_action.go | 10 +- .../v65/events/notification_service_action.go | 10 +- .../v65/events/streaming_service_action.go | 10 +- .../create_ldap_bind_account_details.go | 10 +- .../oci-go-sdk/v65/filestorage/export.go | 12 +- .../v65/filestorage/filestorage_client.go | 100 +-- .../v65/filestorage/ldap_bind_account.go | 16 +- .../filestorage/ldap_bind_account_summary.go | 16 +- .../functions_functionsinvoke_client.go | 2 +- .../functions_functionsmanagement_client.go | 32 +- .../fusionapps_fusionapplications_client.go | 78 +-- .../oci-go-sdk/v65/fusionapps/patch_action.go | 6 +- .../v65/fusionapps/upgrade_action.go | 6 +- .../v65/fusionapps/vertex_action.go | 6 +- .../genericartifactscontent_client.go | 6 +- .../v65/goldengate/amazon_s3_connection.go | 32 +- .../amazon_s3_connection_summary.go | 32 +- .../azure_data_lake_storage_connection.go | 32 +- ...re_data_lake_storage_connection_summary.go | 32 +- .../goldengate/azure_synapse_connection.go | 32 +- .../azure_synapse_connection_summary.go | 32 +- .../create_amazon_s3_connection_details.go | 18 +- ...re_data_lake_storage_connection_details.go | 18 +- ...create_azure_synapse_connection_details.go | 18 +- .../create_golden_gate_connection_details.go | 18 +- .../create_hdfs_connection_details.go | 18 +- ...java_message_service_connection_details.go | 18 +- .../create_kafka_connection_details.go | 18 +- ...afka_schema_registry_connection_details.go | 18 +- ..._microsoft_sqlserver_connection_details.go | 18 +- .../create_mongo_db_connection_details.go | 18 +- .../create_mysql_connection_details.go | 18 +- ...e_oci_object_storage_connection_details.go | 18 +- .../create_oracle_connection_details.go | 18 +- .../create_oracle_nosql_connection_details.go | 18 +- .../create_postgresql_connection_details.go | 18 +- .../create_snowflake_connection_details.go | 18 +- .../v65/goldengate/golden_gate_connection.go | 32 +- .../golden_gate_connection_summary.go | 32 +- .../v65/goldengate/goldengate_client.go | 114 ++-- .../v65/goldengate/hdfs_connection.go | 32 +- .../v65/goldengate/hdfs_connection_summary.go | 32 +- .../java_message_service_connection.go | 32 +- ...java_message_service_connection_summary.go | 32 +- .../v65/goldengate/kafka_connection.go | 32 +- .../goldengate/kafka_connection_summary.go | 32 +- .../kafka_schema_registry_connection.go | 32 +- ...afka_schema_registry_connection_summary.go | 32 +- .../microsoft_sqlserver_connection.go | 32 +- .../microsoft_sqlserver_connection_summary.go | 32 +- .../v65/goldengate/mongo_db_connection.go | 32 +- .../goldengate/mongo_db_connection_summary.go | 32 +- .../v65/goldengate/mysql_connection.go | 32 +- .../goldengate/mysql_connection_summary.go | 32 +- .../oci_object_storage_connection.go | 32 +- .../oci_object_storage_connection_summary.go | 32 +- .../v65/goldengate/oracle_connection.go | 32 +- .../goldengate/oracle_connection_summary.go | 32 +- .../v65/goldengate/oracle_nosql_connection.go | 32 +- .../oracle_nosql_connection_summary.go | 32 +- .../v65/goldengate/postgresql_connection.go | 32 +- .../postgresql_connection_summary.go | 32 +- .../v65/goldengate/snowflake_connection.go | 32 +- .../snowflake_connection_summary.go | 32 +- .../update_amazon_s3_connection_details.go | 14 +- ...re_data_lake_storage_connection_details.go | 14 +- ...update_azure_synapse_connection_details.go | 14 +- .../update_golden_gate_connection_details.go | 14 +- .../update_hdfs_connection_details.go | 14 +- ...java_message_service_connection_details.go | 14 +- .../update_kafka_connection_details.go | 14 +- ...afka_schema_registry_connection_details.go | 14 +- ..._microsoft_sqlserver_connection_details.go | 14 +- .../update_mongo_db_connection_details.go | 14 +- .../update_mysql_connection_details.go | 14 +- ...e_oci_object_storage_connection_details.go | 14 +- .../update_oracle_connection_details.go | 14 +- .../update_oracle_nosql_connection_details.go | 14 +- .../update_postgresql_connection_details.go | 14 +- .../update_snowflake_connection_details.go | 14 +- .../v65/healthchecks/healthchecks_client.go | 34 +- .../create_saml2_identity_provider_details.go | 12 +- .../v65/identity/identity_client.go | 324 ++++----- .../oracle/oci-go-sdk/v65/identity/policy.go | 7 +- .../v65/identity/saml2_identity_provider.go | 20 +- .../update_saml2_identity_provider_details.go | 6 +- .../identitydataplane_dataplane_client.go | 4 +- .../identitydomains/account_mgmt_info_app.go | 14 +- .../account_mgmt_info_object_class.go | 14 +- .../account_mgmt_info_owner.go | 14 +- .../account_mgmt_info_resource_type.go | 14 +- .../account_mgmt_info_user_wallet_artifact.go | 14 +- .../v65/identitydomains/api_key_user.go | 16 +- .../identitydomains/app_allow_authz_policy.go | 12 +- .../v65/identitydomains/app_app_resources.go | 16 +- .../identitydomains/app_app_signon_policy.go | 12 +- .../v65/identitydomains/app_as_opc_service.go | 12 +- .../identitydomains/app_based_on_template.go | 12 +- .../app_bundle_configuration_properties.go | 16 +- .../app_bundle_pool_configuration.go | 14 +- .../identitydomains/app_connector_bundle.go | 14 +- .../identitydomains/app_deny_authz_policy.go | 12 +- .../v65/identitydomains/app_domain_app.go | 14 +- ...at_file_bundle_configuration_properties.go | 16 +- .../app_flat_file_connector_bundle.go | 14 +- .../app_form_fill_url_match.go | 14 +- .../app_group_assertion_attributes.go | 20 +- .../app_group_membership_to_return.go | 16 +- .../identitydomains/app_identity_bridges.go | 14 +- .../v65/identitydomains/app_idp_policy.go | 12 +- .../v65/identitydomains/app_object_classes.go | 16 +- .../app_outbound_assertion_attributes.go | 18 +- .../v65/identitydomains/app_radius_policy.go | 12 +- .../v65/identitydomains/app_role_app.go | 16 +- .../app_saml_service_provider.go | 14 +- .../v65/identitydomains/app_signon_policy.go | 12 +- .../v65/identitydomains/app_terms_of_use.go | 12 +- .../app_three_legged_o_auth_credential.go | 12 +- .../app_user_assertion_attributes.go | 20 +- .../v65/identitydomains/auth_token_user.go | 16 +- ...on_factor_settings_bypass_code_settings.go | 14 +- ...ion_factor_settings_client_app_settings.go | 14 +- ...n_factor_settings_duo_security_settings.go | 14 +- ...tication_factor_settings_email_settings.go | 14 +- ...n_factor_settings_endpoint_restrictions.go | 14 +- ...factor_settings_identity_store_settings.go | 14 +- ...n_factor_settings_notification_settings.go | 14 +- ...tion_factor_settings_third_party_factor.go | 14 +- ...ntication_factor_settings_totp_settings.go | 14 +- .../authentication_factors_remover_user.go | 16 +- .../customer_secret_key_user.go | 16 +- .../v65/identitydomains/defined_tags.go | 14 +- .../v65/identitydomains/freeform_tags.go | 14 +- .../v65/identitydomains/grant_app.go | 16 +- .../grant_app_entitlement_collection.go | 14 +- .../v65/identitydomains/grant_entitlement.go | 14 +- .../v65/identitydomains/grant_grantee.go | 16 +- .../v65/identitydomains/grant_grantor.go | 14 +- .../identitydomains/group_ext_app_roles.go | 18 +- .../group_ext_domain_level_schema_names.go | 14 +- .../v65/identitydomains/group_ext_grants.go | 14 +- .../group_ext_instance_level_schema_names.go | 14 +- .../v65/identitydomains/group_ext_owners.go | 18 +- .../group_ext_password_policy.go | 18 +- .../group_ext_synced_from_app.go | 16 +- .../v65/identitydomains/idcs_created_by.go | 12 +- .../identitydomains/idcs_last_modified_by.go | 12 +- .../identity_provider_correlation_policy.go | 16 +- ...ntity_provider_jit_user_prov_attributes.go | 16 +- .../identity_settings_my_profile.go | 10 +- .../identity_settings_posix_gid.go | 10 +- .../identity_settings_posix_uid.go | 10 +- .../identitydomains/identitydomains_client.go | 380 +++++------ .../oci-go-sdk/v65/identitydomains/me_name.go | 16 +- .../oci-go-sdk/v65/identitydomains/meta.go | 16 +- .../v65/identitydomains/my_api_key_user.go | 16 +- .../v65/identitydomains/my_app_app.go | 14 +- .../v65/identitydomains/my_app_owner.go | 14 +- .../my_app_user_wallet_artifact.go | 14 +- .../v65/identitydomains/my_auth_token_user.go | 16 +- ...ion_factor_initiator_third_party_factor.go | 16 +- ...ion_factor_validator_third_party_factor.go | 16 +- .../my_authentication_factors_remover_user.go | 16 +- .../my_customer_secret_key_user.go | 16 +- .../my_device_push_notification_target.go | 14 +- .../my_device_third_party_factor.go | 14 +- .../v65/identitydomains/my_device_user.go | 16 +- .../my_o_auth2_client_credential_user.go | 16 +- .../identitydomains/my_request_requesting.go | 14 +- .../identitydomains/my_request_requestor.go | 14 +- .../my_smtp_credential_user.go | 16 +- .../my_support_account_user.go | 16 +- .../identitydomains/my_trusted_user_agent.go | 5 +- .../my_trusted_user_agent_user.go | 16 +- .../my_user_db_credentials_user.go | 18 +- .../o_auth2_client_credential_user.go | 16 +- .../identitydomains/smtp_credential_user.go | 16 +- .../user_db_credentials_user.go | 18 +- .../v65/identitydomains/user_ext_accounts.go | 16 +- .../v65/identitydomains/user_ext_api_keys.go | 16 +- .../v65/identitydomains/user_ext_app_roles.go | 14 +- ...xt_applicable_authentication_target_app.go | 14 +- .../user_ext_applicable_password_policy.go | 18 +- .../identitydomains/user_ext_auth_tokens.go | 16 +- .../identitydomains/user_ext_bypass_codes.go | 14 +- .../user_ext_customer_secret_keys.go | 16 +- .../user_ext_db_credentials.go | 16 +- ...ext_delegated_authentication_target_app.go | 16 +- .../v65/identitydomains/user_ext_devices.go | 14 +- .../user_ext_factor_identifier.go | 16 +- .../v65/identitydomains/user_ext_grants.go | 14 +- ...er_ext_idcs_app_roles_limited_to_groups.go | 14 +- .../v65/identitydomains/user_ext_locked.go | 18 +- .../v65/identitydomains/user_ext_manager.go | 16 +- .../user_ext_o_auth2_client_credentials.go | 16 +- .../user_ext_password_verifiers.go | 16 +- .../user_ext_preferred_device.go | 16 +- .../identitydomains/user_ext_realm_users.go | 14 +- .../user_ext_recovery_locked.go | 14 +- .../identitydomains/user_ext_risk_scores.go | 16 +- .../identitydomains/user_ext_sec_questions.go | 14 +- .../user_ext_self_registration_profile.go | 14 +- .../user_ext_smtp_credentials.go | 16 +- .../user_ext_social_accounts.go | 18 +- .../user_ext_support_accounts.go | 16 +- .../user_ext_synced_from_app.go | 16 +- .../user_ext_terms_of_use_consents.go | 16 +- .../user_ext_trusted_user_agents.go | 14 +- .../identitydomains/user_ext_user_token.go | 14 +- .../v65/identitydomains/user_name.go | 16 +- .../user_password_resetter_user_token.go | 14 +- .../integration_integrationinstance_client.go | 30 +- .../v65/jms/application_work_item_details.go | 2 +- .../v65/jms/basic_work_item_details.go | 2 +- .../jms/jms_javamanagementservice_client.go | 112 ++-- .../keymanagement/keymanagement_ekm_client.go | 10 +- .../keymanagement_kmscrypto_client.go | 12 +- .../keymanagement_kmsmanagement_client.go | 42 +- .../keymanagement_kmsvault_client.go | 28 +- .../licensemanager/licensemanager_client.go | 36 +- .../oci-go-sdk/v65/limits/add_lock_details.go | 3 +- .../oci-go-sdk/v65/limits/limits_client.go | 14 +- .../v65/limits/limits_quotas_client.go | 14 +- .../oracle/oci-go-sdk/v65/limits/quota.go | 6 +- .../add_http_request_header_rule.go | 10 +- .../add_http_response_header_rule.go | 10 +- .../oci-go-sdk/v65/loadbalancer/allow_rule.go | 6 +- .../create_ssl_cipher_suite_details.go | 290 ++++---- .../extend_http_request_header_value_rule.go | 12 +- .../extend_http_response_header_value_rule.go | 12 +- .../v65/loadbalancer/loadbalancer_client.go | 122 ++-- .../v65/loadbalancer/redirect_rule.go | 12 +- .../v65/loadbalancer/ssl_cipher_suite.go | 290 ++++---- .../loadbalancer/ssl_cipher_suite_details.go | 290 ++++---- .../add_fields_command_descriptor.go | 12 +- .../add_insights_command_descriptor.go | 12 +- .../anomaly_command_descriptor.go | 12 +- .../loganalytics/bottom_command_descriptor.go | 12 +- .../loganalytics/bucket_command_descriptor.go | 12 +- .../v65/loganalytics/chart_column.go | 22 +- .../v65/loganalytics/chart_data_column.go | 22 +- .../v65/loganalytics/classify_column.go | 22 +- .../classify_command_descriptor.go | 12 +- .../cluster_command_descriptor.go | 12 +- .../cluster_compare_command_descriptor.go | 12 +- .../cluster_details_command_descriptor.go | 12 +- .../cluster_split_command_descriptor.go | 12 +- .../oci-go-sdk/v65/loganalytics/column.go | 22 +- .../v65/loganalytics/command_descriptor.go | 12 +- .../compare_command_descriptor.go | 12 +- .../create_acceleration_task_details.go | 8 +- .../create_standard_task_details.go | 8 +- .../create_view_command_descriptor.go | 12 +- .../v65/loganalytics/cron_schedule.go | 4 +- .../loganalytics/dedup_command_descriptor.go | 12 +- .../loganalytics/delete_command_descriptor.go | 12 +- .../loganalytics/delta_command_descriptor.go | 12 +- .../demo_mode_command_descriptor.go | 12 +- .../distinct_command_descriptor.go | 12 +- .../loganalytics/eval_command_descriptor.go | 12 +- .../event_stats_command_descriptor.go | 12 +- .../extract_command_descriptor.go | 12 +- .../oci-go-sdk/v65/loganalytics/field.go | 20 +- .../field_summary_command_descriptor.go | 12 +- .../loganalytics/fields_add_remove_field.go | 20 +- .../loganalytics/fields_command_descriptor.go | 12 +- .../loganalytics/fixed_frequency_schedule.go | 4 +- .../frequent_command_descriptor.go | 12 +- .../v65/loganalytics/function_field.go | 20 +- .../geo_stats_command_descriptor.go | 12 +- .../loganalytics/head_command_descriptor.go | 12 +- .../highlight_command_descriptor.go | 12 +- .../highlight_groups_command_descriptor.go | 12 +- .../highlight_rows_command_descriptor.go | 12 +- .../json_extract_command_descriptor.go | 12 +- .../loganalytics/link_command_descriptor.go | 12 +- .../link_details_command_descriptor.go | 12 +- .../v65/loganalytics/loganalytics_client.go | 384 +++++------ .../loganalytics/lookup_command_descriptor.go | 12 +- .../loganalytics/macro_command_descriptor.go | 12 +- .../loganalytics/map_command_descriptor.go | 12 +- .../loganalytics/module_command_descriptor.go | 12 +- .../multi_search_command_descriptor.go | 12 +- .../loganalytics/nlp_command_descriptor.go | 12 +- .../outlier_command_descriptor.go | 12 +- .../loganalytics/rare_command_descriptor.go | 12 +- .../loganalytics/regex_command_descriptor.go | 12 +- .../loganalytics/rename_command_descriptor.go | 12 +- .../loganalytics/search_command_descriptor.go | 12 +- .../search_lookup_command_descriptor.go | 12 +- .../loganalytics/sort_command_descriptor.go | 12 +- .../oci-go-sdk/v65/loganalytics/sort_field.go | 20 +- .../v65/loganalytics/standard_task.go | 32 +- .../loganalytics/stats_command_descriptor.go | 12 +- .../v65/loganalytics/table_column.go | 22 +- .../loganalytics/tail_command_descriptor.go | 12 +- .../v65/loganalytics/time_cluster_column.go | 22 +- .../time_cluster_command_descriptor.go | 12 +- .../loganalytics/time_cluster_data_column.go | 22 +- .../v65/loganalytics/time_column.go | 22 +- .../time_compare_command_descriptor.go | 12 +- .../v65/loganalytics/time_stats_column.go | 22 +- .../time_stats_command_descriptor.go | 12 +- .../loganalytics/time_stats_data_column.go | 22 +- .../loganalytics/top_command_descriptor.go | 12 +- .../v65/loganalytics/trend_column.go | 22 +- .../update_standard_task_details.go | 8 +- .../loganalytics/where_command_descriptor.go | 12 +- .../xml_extract_command_descriptor.go | 12 +- .../logging_loggingmanagement_client.go | 69 +- .../logging/unified_agent_apache2_parser.go | 14 +- .../unified_agent_apache_error_parser.go | 14 +- .../logging/unified_agent_auditd_parser.go | 14 +- .../v65/logging/unified_agent_cri_parser.go | 14 +- .../v65/logging/unified_agent_csv_parser.go | 14 +- .../v65/logging/unified_agent_grok_parser.go | 14 +- .../logging/unified_agent_msgpack_parser.go | 14 +- .../unified_agent_multiline_grok_parser.go | 14 +- .../logging/unified_agent_multiline_parser.go | 14 +- .../v65/logging/unified_agent_none_parser.go | 14 +- .../v65/logging/unified_agent_regex_parser.go | 14 +- .../logging/unified_agent_syslog_parser.go | 14 +- .../logging/unified_agent_tail_log_source.go | 2 +- .../v65/logging/unified_agent_tsv_parser.go | 14 +- .../unified_agent_windows_event_source.go | 2 +- .../v65/logging/unified_json_parser.go | 14 +- .../managementagent/managementagent_client.go | 46 +- .../managementdashboard_dashxapis_client.go | 28 +- .../create_image_publication_package.go | 6 +- .../marketplace/free_text_search_details.go | 2 +- .../v65/marketplace/image_listing_package.go | 16 +- .../marketplace/image_publication_package.go | 12 +- .../marketplace/marketplace_account_client.go | 4 +- .../v65/marketplace/marketplace_client.go | 50 +- .../orchestration_listing_package.go | 16 +- .../orchestration_publication_package.go | 12 +- .../marketplace/structured_search_details.go | 2 +- ...create_media_workflow_job_by_id_details.go | 12 +- ...eate_media_workflow_job_by_name_details.go | 12 +- .../dash_stream_packaging_config.go | 24 +- .../hls_stream_packaging_config.go | 24 +- .../v65/mediaservices/mediaservices_client.go | 96 +-- .../mediaservices_mediastream_client.go | 4 +- .../v65/monitoring/monitoring_client.go | 36 +- .../v65/mysql/mysql_channels_client.go | 14 +- .../v65/mysql/mysql_dbbackups_client.go | 12 +- .../v65/mysql/mysql_dbsystem_client.go | 34 +- .../v65/mysql/mysql_mysqlaas_client.go | 14 +- .../v65/mysql/mysql_replicas_client.go | 10 +- .../v65/mysql/mysql_workrequests_client.go | 8 +- .../networkfirewall/networkfirewall_client.go | 34 +- .../networkfirewall/vault_mapped_secret.go | 2 +- .../networkloadbalancer_client.go | 68 +- .../oci-go-sdk/v65/nosql/nosql_client.go | 44 +- .../v65/objectstorage/objectstorage_client.go | 100 +-- .../objectstorage/reencrypt_object_details.go | 10 +- .../v65/oce/oce_oceinstance_client.go | 20 +- .../v65/ocvp/ocvp_esxihost_client.go | 12 +- .../oci-go-sdk/v65/ocvp/ocvp_sddc_client.go | 26 +- .../v65/ocvp/ocvp_workrequest_client.go | 8 +- .../oci-go-sdk/v65/oda/android_channel.go | 20 +- .../oci-go-sdk/v65/oda/app_event_channel.go | 20 +- .../oci-go-sdk/v65/oda/application_channel.go | 20 +- .../oda/clone_digital_assistant_details.go | 14 +- .../oci-go-sdk/v65/oda/clone_skill_details.go | 14 +- .../oci-go-sdk/v65/oda/cortana_channel.go | 20 +- .../v65/oda/create_android_channel_details.go | 10 +- .../v65/oda/create_android_channel_result.go | 20 +- .../oda/create_app_event_channel_details.go | 10 +- .../oda/create_app_event_channel_result.go | 20 +- .../oda/create_application_channel_details.go | 10 +- .../oda/create_application_channel_result.go | 20 +- .../v65/oda/create_cortana_channel_details.go | 10 +- .../v65/oda/create_cortana_channel_result.go | 20 +- ...reate_digital_assistant_version_details.go | 14 +- .../oda/create_facebook_channel_details.go | 10 +- .../v65/oda/create_facebook_channel_result.go | 20 +- .../v65/oda/create_ios_channel_details.go | 10 +- .../v65/oda/create_ios_channel_result.go | 20 +- .../oda/create_ms_teams_channel_details.go | 10 +- .../v65/oda/create_ms_teams_channel_result.go | 20 +- .../create_new_digital_assistant_details.go | 14 +- .../v65/oda/create_new_skill_details.go | 14 +- .../v65/oda/create_oss_channel_details.go | 10 +- .../v65/oda/create_oss_channel_result.go | 20 +- .../v65/oda/create_osvc_channel_details.go | 10 +- .../v65/oda/create_osvc_channel_result.go | 20 +- .../create_service_cloud_channel_details.go | 10 +- .../create_service_cloud_channel_result.go | 20 +- .../v65/oda/create_skill_version_details.go | 14 +- .../v65/oda/create_slack_channel_details.go | 10 +- .../v65/oda/create_slack_channel_result.go | 20 +- .../v65/oda/create_test_channel_result.go | 20 +- .../v65/oda/create_twilio_channel_details.go | 10 +- .../v65/oda/create_twilio_channel_result.go | 20 +- .../v65/oda/create_web_channel_details.go | 10 +- .../v65/oda/create_web_channel_result.go | 20 +- .../v65/oda/create_webhook_channel_details.go | 10 +- .../v65/oda/create_webhook_channel_result.go | 20 +- .../oda/extend_digital_assistant_details.go | 14 +- .../v65/oda/extend_skill_details.go | 14 +- .../oci-go-sdk/v65/oda/facebook_channel.go | 20 +- .../oracle/oci-go-sdk/v65/oda/ios_channel.go | 20 +- .../oci-go-sdk/v65/oda/ms_teams_channel.go | 20 +- .../oracle/oci-go-sdk/v65/oda/oda_client.go | 34 +- .../v65/oda/oda_management_client.go | 112 ++-- .../v65/oda/oda_odapackage_client.go | 14 +- .../oracle/oci-go-sdk/v65/oda/oss_channel.go | 20 +- .../oracle/oci-go-sdk/v65/oda/osvc_channel.go | 20 +- .../v65/oda/service_cloud_channel.go | 20 +- .../oci-go-sdk/v65/oda/slack_channel.go | 20 +- .../oracle/oci-go-sdk/v65/oda/test_channel.go | 20 +- .../oci-go-sdk/v65/oda/twilio_channel.go | 20 +- .../v65/oda/update_android_channel_details.go | 10 +- .../oda/update_app_event_channel_details.go | 10 +- .../oda/update_application_channel_details.go | 10 +- .../v65/oda/update_cortana_channel_details.go | 10 +- .../oda/update_facebook_channel_details.go | 10 +- .../v65/oda/update_ios_channel_details.go | 10 +- .../oda/update_ms_teams_channel_details.go | 10 +- .../v65/oda/update_oss_channel_details.go | 10 +- .../v65/oda/update_osvc_channel_details.go | 10 +- .../update_service_cloud_channel_details.go | 10 +- .../v65/oda/update_slack_channel_details.go | 10 +- .../v65/oda/update_twilio_channel_details.go | 10 +- .../v65/oda/update_web_channel_details.go | 10 +- .../v65/oda/update_webhook_channel_details.go | 10 +- .../oracle/oci-go-sdk/v65/oda/web_channel.go | 20 +- .../oci-go-sdk/v65/oda/webhook_channel.go | 20 +- .../onesubscription_billingschedule_client.go | 2 +- .../onesubscription_commitment_client.go | 4 +- .../onesubscription_computedusage_client.go | 6 +- .../onesubscription_invoicesummary_client.go | 4 +- ...ription_organizationsubscription_client.go | 2 +- .../onesubscription_ratecard_client.go | 2 +- ...nesubscription_subscribedservice_client.go | 4 +- .../onesubscription_subscription_client.go | 2 +- .../ons_notificationcontrolplane_client.go | 12 +- .../ons/ons_notificationdataplane_client.go | 20 +- .../v65/opa/opa_opainstance_client.go | 22 +- .../opensearch_opensearchcluster_client.go | 28 +- ...ensearch_opensearchclusterbackup_client.go | 8 +- ...atoraccesscontrol_accessrequests_client.go | 18 +- ...toraccesscontrol_operatoractions_client.go | 4 +- ...toraccesscontrol_operatorcontrol_client.go | 12 +- ...ontrol_operatorcontrolassignment_client.go | 12 +- ...tonomous_database_configuration_summary.go | 20 +- .../v65/opsi/autonomous_database_insight.go | 28 +- .../autonomous_database_insight_summary.go | 36 +- .../v65/opsi/awr_database_collection.go | 6 +- .../opsi/awr_database_cpu_usage_collection.go | 6 +- .../opsi/awr_database_metric_collection.go | 6 +- ...wr_database_parameter_change_collection.go | 6 +- .../opsi/awr_database_parameter_collection.go | 6 +- .../v65/opsi/awr_database_report.go | 6 +- .../opsi/awr_database_snapshot_collection.go | 6 +- .../awr_database_snapshot_range_collection.go | 6 +- .../v65/opsi/awr_database_sql_report.go | 6 +- .../opsi/awr_database_sysstat_collection.go | 6 +- .../awr_database_top_wait_event_collection.go | 6 +- ...r_database_wait_event_bucket_collection.go | 6 +- .../awr_database_wait_event_collection.go | 6 +- ...cloud_importable_compute_entity_summary.go | 6 +- ...naged_external_database_insight_details.go | 6 +- ...anaged_external_exadata_insight_details.go | 6 +- ...m_managed_external_host_insight_details.go | 6 +- ...macs_managed_cloud_host_insight_details.go | 6 +- ...s_managed_external_host_insight_details.go | 6 +- .../create_opsi_ux_configuration_details.go | 14 +- ...e_pe_comanaged_database_insight_details.go | 6 +- ...te_pe_comanaged_exadata_insight_details.go | 6 +- .../v65/opsi/credential_by_vault.go | 2 +- .../v65/opsi/credentials_by_source.go | 2 +- .../v65/opsi/data_object_core_column_unit.go | 2 +- .../opsi/data_object_custom_column_unit.go | 2 +- .../opsi/data_object_data_size_column_unit.go | 2 +- .../opsi/data_object_frequency_column_unit.go | 2 +- .../data_object_other_standard_column_unit.go | 2 +- .../v65/opsi/data_object_power_column_unit.go | 2 +- .../v65/opsi/data_object_rate_column_unit.go | 2 +- .../v65/opsi/data_object_standard_query.go | 4 +- .../data_object_temperature_column_unit.go | 2 +- .../v65/opsi/data_object_templatized_query.go | 4 +- .../v65/opsi/data_object_time_column_unit.go | 2 +- .../v65/opsi/database_insights_data_object.go | 16 +- .../database_insights_data_object_summary.go | 10 +- .../v65/opsi/db_external_instance.go | 2 +- .../v65/opsi/db_external_properties.go | 2 +- .../oci-go-sdk/v65/opsi/db_parameters.go | 2 +- .../v65/opsi/dbos_config_instance.go | 2 +- ...external_database_configuration_summary.go | 20 +- .../em_managed_external_database_insight.go | 28 +- ...naged_external_database_insight_summary.go | 36 +- .../em_managed_external_exadata_insight.go | 30 +- ...anaged_external_exadata_insight_summary.go | 28 +- ...ged_external_host_configuration_summary.go | 38 +- .../opsi/em_managed_external_host_insight.go | 28 +- ...m_managed_external_host_insight_summary.go | 30 +- ..._database_machine_configuration_summary.go | 18 +- .../exadata_exacs_configuration_summary.go | 18 +- .../v65/opsi/exadata_insights_data_object.go | 16 +- .../exadata_insights_data_object_summary.go | 10 +- .../opsi/host_cpu_hardware_configuration.go | 2 +- .../v65/opsi/host_cpu_statistics.go | 8 +- .../oci-go-sdk/v65/opsi/host_cpu_usage.go | 2 +- .../oci-go-sdk/v65/opsi/host_entities.go | 2 +- .../v65/opsi/host_filesystem_configuration.go | 2 +- .../v65/opsi/host_filesystem_usage.go | 2 +- .../v65/opsi/host_hardware_configuration.go | 2 +- .../host_importable_agent_entity_summary.go | 4 +- .../v65/opsi/host_insights_data_object.go | 16 +- .../opsi/host_insights_data_object_summary.go | 10 +- .../v65/opsi/host_memory_configuration.go | 2 +- .../v65/opsi/host_memory_statistics.go | 8 +- .../oci-go-sdk/v65/opsi/host_memory_usage.go | 2 +- .../v65/opsi/host_network_activity_summary.go | 2 +- .../v65/opsi/host_network_configuration.go | 2 +- .../v65/opsi/host_network_statistics.go | 8 +- .../oci-go-sdk/v65/opsi/host_product.go | 2 +- .../v65/opsi/host_resource_allocation.go | 2 +- .../v65/opsi/host_storage_statistics.go | 8 +- .../oci-go-sdk/v65/opsi/host_top_processes.go | 2 +- ...idual_opsi_data_object_details_in_query.go | 2 +- ...anaged_cloud_host_configuration_summary.go | 38 +- .../opsi/macs_managed_cloud_host_insight.go | 28 +- ...macs_managed_cloud_host_insight_summary.go | 30 +- ...external_database_configuration_summary.go | 20 +- .../macs_managed_external_database_insight.go | 28 +- ...naged_external_database_insight_summary.go | 36 +- ...ged_external_host_configuration_summary.go | 38 +- .../macs_managed_external_host_insight.go | 28 +- ...s_managed_external_host_insight_summary.go | 30 +- ..._type_opsi_data_object_details_in_query.go | 2 +- .../opsi/opsi_operationsinsights_client.go | 334 +++++----- .../v65/opsi/opsi_ux_configuration.go | 24 +- .../v65/opsi/opsi_ux_configuration_summary.go | 22 +- .../v65/opsi/pe_comanaged_database_insight.go | 28 +- .../pe_comanaged_database_insight_summary.go | 36 +- .../v65/opsi/pe_comanaged_exadata_insight.go | 30 +- .../pe_comanaged_exadata_insight_summary.go | 28 +- ...pe_comanaged_host_configuration_summary.go | 38 +- .../v65/opsi/pe_comanaged_host_insight.go | 28 +- .../opsi/pe_comanaged_host_insight_summary.go | 30 +- ...external_database_configuration_summary.go | 20 +- ...ate_autonomous_database_insight_details.go | 4 +- ...naged_external_database_insight_details.go | 4 +- ...anaged_external_exadata_insight_details.go | 4 +- ...m_managed_external_host_insight_details.go | 4 +- ...macs_managed_cloud_host_insight_details.go | 4 +- ...naged_external_database_insight_details.go | 4 +- ...s_managed_external_host_insight_details.go | 4 +- .../update_opsi_ux_configuration_details.go | 12 +- ...e_pe_comanaged_database_insight_details.go | 4 +- ...te_pe_comanaged_exadata_insight_details.go | 4 +- .../opsi/ux_configuration_items_collection.go | 2 +- .../v65/optimizer/optimizer_client.go | 64 +- .../v65/osmanagement/kernel_crash_event.go | 22 +- .../v65/osmanagement/kernel_oops_event.go | 22 +- .../v65/osmanagement/osmanagement_client.go | 138 ++-- .../osmanagement/osmanagement_event_client.go | 16 +- .../ospgateway/credit_card_payment_detail.go | 6 +- .../ospgateway/credit_card_payment_option.go | 4 +- .../v65/ospgateway/echeck_payment_detail.go | 6 +- .../ospgateway_addressruleservice_client.go | 2 +- .../ospgateway_addressservice_client.go | 4 +- .../ospgateway_invoiceservice_client.go | 10 +- .../ospgateway_subscriptionservice_client.go | 10 +- .../v65/ospgateway/other_payment_detail.go | 6 +- .../v65/ospgateway/paypal_payment_detail.go | 6 +- .../v65/ospgateway/paypal_payment_option.go | 4 +- ...bbillingschedule_billingschedule_client.go | 2 +- ...ription_organizationsubscription_client.go | 2 +- .../osubsubscription_commitment_client.go | 4 +- .../osubsubscription_ratecard_client.go | 2 +- .../osubsubscription_subscription_client.go | 2 +- .../osubusage_computedusage_client.go | 6 +- .../oci-go-sdk/v65/queue/queue_client.go | 16 +- .../v65/queue/queue_queueadmin_client.go | 22 +- .../recovery_databaserecovery_client.go | 46 +- .../bitbucket_cloud_config_source.go | 2 +- ..._password_configuration_source_provider.go | 22 +- ...d_configuration_source_provider_summary.go | 18 +- ...ess_token_configuration_source_provider.go | 22 +- ...n_configuration_source_provider_summary.go | 18 +- .../bitbucket_server_config_source.go | 2 +- .../compartment_config_source.go | 2 +- .../create_apply_job_operation_details.go | 2 +- ...te_apply_rollback_job_operation_details.go | 2 +- ...e_bitbucket_cloud_config_source_details.go | 2 +- ...d_configuration_source_provider_details.go | 12 +- ...n_configuration_source_provider_details.go | 12 +- ..._bitbucket_server_config_source_details.go | 2 +- ...reate_compartment_config_source_details.go | 2 +- .../create_destroy_job_operation_details.go | 2 +- .../create_dev_ops_config_source_details.go | 2 +- .../create_git_config_source_details.go | 2 +- ...n_configuration_source_provider_details.go | 12 +- ...n_configuration_source_provider_details.go | 12 +- ...e_import_tf_state_job_operation_details.go | 2 +- ...te_object_storage_config_source_details.go | 2 +- .../create_plan_job_operation_details.go | 2 +- ...ate_plan_rollback_job_operation_details.go | 2 +- ...te_stack_template_config_source_details.go | 2 +- ...create_zip_upload_config_source_details.go | 2 +- .../resourcemanager/dev_ops_config_source.go | 2 +- .../v65/resourcemanager/git_config_source.go | 2 +- ...ess_token_configuration_source_provider.go | 22 +- ...n_configuration_source_provider_summary.go | 18 +- ...ess_token_configuration_source_provider.go | 22 +- ...n_configuration_source_provider_summary.go | 18 +- .../object_storage_config_source.go | 2 +- .../resourcemanager/resourcemanager_client.go | 104 +-- ...e_bitbucket_cloud_config_source_details.go | 2 +- ...d_configuration_source_provider_details.go | 10 +- ...n_configuration_source_provider_details.go | 10 +- ..._bitbucket_server_config_source_details.go | 2 +- .../update_dev_ops_config_source_details.go | 2 +- .../update_git_config_source_details.go | 2 +- ...n_configuration_source_provider_details.go | 10 +- ...n_configuration_source_provider_details.go | 10 +- ...te_object_storage_config_source_details.go | 2 +- ...update_zip_upload_config_source_details.go | 2 +- .../zip_upload_config_source.go | 2 +- .../v65/sch/sch_serviceconnector_client.go | 24 +- .../oci-go-sdk/v65/secrets/secrets_client.go | 6 +- ...reate_private_application_stack_package.go | 2 +- .../private_application_stack_package.go | 10 +- .../servicecatalog/servicecatalog_client.go | 52 +- .../servicemanagerproxy_client.go | 4 +- ...http_ingress_gateway_traffic_route_rule.go | 4 +- ...ress_gateway_traffic_route_rule_details.go | 4 +- ...http_virtual_service_traffic_route_rule.go | 2 +- ...tual_service_traffic_route_rule_details.go | 2 +- .../v65/servicemesh/servicemesh_client.go | 96 +-- .../tcp_ingress_gateway_traffic_route_rule.go | 4 +- ...ress_gateway_traffic_route_rule_details.go | 4 +- .../tcp_virtual_service_traffic_route_rule.go | 2 +- ...tual_service_traffic_route_rule_details.go | 2 +- ...ough_ingress_gateway_traffic_route_rule.go | 4 +- ...ress_gateway_traffic_route_rule_details.go | 4 +- ...ough_virtual_service_traffic_route_rule.go | 2 +- ...tual_service_traffic_route_rule_details.go | 2 +- .../auto_promote_config_details.go | 18 +- .../auto_promote_config_summary.go | 18 +- .../create_auto_promote_config_details.go | 8 +- .../stackmonitoring/encrypted_credentials.go | 8 +- .../stackmonitoring/plain_text_credentials.go | 8 +- .../pre_existing_credentials.go | 8 +- .../stackmonitoring/stackmonitoring_client.go | 56 +- .../update_auto_promote_config_details.go | 6 +- .../v65/streaming/streaming_stream_client.go | 16 +- .../streaming/streaming_streamadmin_client.go | 36 +- .../v65/usage/usage_resources_client.go | 4 +- .../v65/usage/usage_rewards_client.go | 12 +- .../v65/usage/usage_usagelimits_client.go | 2 +- .../v65/usageapi/usageapi_client.go | 38 +- .../vault/base64_secret_content_details.go | 4 +- .../v65/vault/vault_vaults_client.go | 22 +- .../v65/vbsinst/vbsinst_vbsinstance_client.go | 20 +- .../visualbuilder_vbinstance_client.go | 26 +- .../access_denied_traffic_node.go | 8 +- .../vnmonitoring/allowed_security_action.go | 2 +- .../vnmonitoring/denied_security_action.go | 2 +- .../vnmonitoring/forwarded_routing_action.go | 2 +- .../indeterminate_routing_action.go | 2 +- .../ip_sec_connection_device_config.go | 4 +- ...c_tunnel_drg_attachment_network_details.go | 2 +- ...oop_back_drg_attachment_network_details.go | 2 +- .../vnmonitoring/network_security_group.go | 12 +- .../v65/vnmonitoring/networking_topology.go | 8 +- .../vnmonitoring/no_route_routing_action.go | 2 +- .../v65/vnmonitoring/path_topology.go | 8 +- ...nnection_drg_attachment_network_details.go | 2 +- .../v65/vnmonitoring/subnet_topology.go | 8 +- ...ogy_associated_with_entity_relationship.go | 4 +- .../topology_contains_entity_relationship.go | 4 +- .../topology_routes_to_entity_relationship.go | 4 +- .../v65/vnmonitoring/tunnel_config.go | 4 +- .../vnmonitoring/tunnel_cpe_device_config.go | 8 +- ...n_drg_attachment_network_create_details.go | 2 +- .../vcn_drg_attachment_network_details.go | 2 +- .../v65/vnmonitoring/vcn_topology.go | 8 +- ..._circuit_drg_attachment_network_details.go | 2 +- .../v65/vnmonitoring/visible_traffic_node.go | 8 +- .../v65/vnmonitoring/vnmonitoring_client.go | 24 +- ...te_ocir_container_scan_registry_details.go | 2 +- .../host_scan_agent_configuration_oci.go | 2 +- .../host_scan_agent_configuration_qualys.go | 2 +- .../ocir_container_scan_registry.go | 2 +- ...te_ocir_container_scan_registry_details.go | 2 +- .../vulnerabilityscanning_client.go | 116 ++-- ..._app_acceleration_load_balancer_details.go | 12 +- .../oracle/oci-go-sdk/v65/waa/waa_client.go | 26 +- .../v65/waa/waa_workrequest_client.go | 8 +- .../waa/web_app_acceleration_load_balancer.go | 22 +- ..._app_acceleration_load_balancer_summary.go | 22 +- .../v65/waas/protection_rule_exclusion.go | 26 +- .../oracle/oci-go-sdk/v65/waas/waas_client.go | 132 ++-- .../v65/waas/waas_redirect_client.go | 12 +- .../oci-go-sdk/v65/waf/access_control_rule.go | 14 +- .../oracle/oci-go-sdk/v65/waf/allow_action.go | 2 +- .../oracle/oci-go-sdk/v65/waf/check_action.go | 2 +- ..._network_address_list_addresses_details.go | 10 +- ...work_address_list_vcn_addresses_details.go | 10 +- ..._web_app_firewall_load_balancer_details.go | 12 +- .../v65/waf/network_address_list_addresses.go | 20 +- .../network_address_list_addresses_summary.go | 20 +- .../waf/network_address_list_vcn_addresses.go | 20 +- ...work_address_list_vcn_addresses_summary.go | 20 +- .../oci-go-sdk/v65/waf/protection_rule.go | 12 +- .../v65/waf/request_rate_limiting_rule.go | 12 +- .../v65/waf/return_http_response_action.go | 2 +- .../v65/waf/static_text_http_response_body.go | 9 +- ..._network_address_list_addresses_details.go | 8 +- ...work_address_list_vcn_addresses_details.go | 8 +- .../oracle/oci-go-sdk/v65/waf/waf_client.go | 48 +- .../v65/waf/web_app_firewall_load_balancer.go | 22 +- .../web_app_firewall_load_balancer_summary.go | 22 +- .../v65/waf/web_app_firewall_policy.go | 15 +- .../workrequests_workrequest_client.go | 8 +- vendor/modules.txt | 2 +- 1666 files changed, 16080 insertions(+), 16026 deletions(-) diff --git a/go.mod b/go.mod index a2c61fe8830..cd586b15582 100644 --- a/go.mod +++ b/go.mod @@ -53,7 +53,7 @@ require ( github.com/mitchellh/mapstructure v1.1.2 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/oklog/run v1.0.0 // indirect - github.com/oracle/oci-go-sdk/v65 v65.49.1 + github.com/oracle/oci-go-sdk/v65 v65.49.2 github.com/pmezard/go-difflib v1.0.0 // indirect github.com/sony/gobreaker v0.5.0 // indirect github.com/ulikunitz/xz v0.5.8 // indirect @@ -76,6 +76,6 @@ require ( ) // Uncomment this line to get OCI Go SDK from local source instead of github -replace github.com/oracle/oci-go-sdk/v65 v65.49.1 => ./vendor/github.com/oracle/oci-go-sdk +//replace github.com/oracle/oci-go-sdk => ../../oracle/oci-go-sdk go 1.20 diff --git a/go.sum b/go.sum index 35b90f1a86a..df93e368c95 100644 --- a/go.sum +++ b/go.sum @@ -289,8 +289,8 @@ github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQ github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/oracle/oci-go-sdk/v65 v65.49.1 h1:2c2txRWdeNNCVWO+4vJao4cq0MOCIZoRGVw5u6rcvlk= -github.com/oracle/oci-go-sdk/v65 v65.49.1/go.mod h1:IBEV9l1qBzUpo7zgGaRUhbB05BVfcDGYRFBCPlTcPp0= +github.com/oracle/oci-go-sdk/v65 v65.49.2 h1:optOfjGIVmZZMT3a/8ri/CVV1loDG0ab1p2tEpNW5ro= +github.com/oracle/oci-go-sdk/v65 v65.49.2/go.mod h1:IBEV9l1qBzUpo7zgGaRUhbB05BVfcDGYRFBCPlTcPp0= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/adm/adm_applicationdependencymanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/adm/adm_applicationdependencymanagement_client.go index a0c2a008924..b2d1617108a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/adm/adm_applicationdependencymanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/adm/adm_applicationdependencymanagement_client.go @@ -93,7 +93,7 @@ func (client *ApplicationDependencyManagementClient) ConfigurationProvider() *co // CancelWorkRequest Cancel work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -151,7 +151,7 @@ func (client ApplicationDependencyManagementClient) cancelWorkRequest(ctx contex // ChangeKnowledgeBaseCompartment Moves a Knowledge Base from one compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ChangeKnowledgeBaseCompartment.go.html to see an example of how to use ChangeKnowledgeBaseCompartment API. // A default retry strategy applies to this operation ChangeKnowledgeBaseCompartment() @@ -214,7 +214,7 @@ func (client ApplicationDependencyManagementClient) changeKnowledgeBaseCompartme // ChangeVulnerabilityAuditCompartment Moves a Vulnerability Audit from one compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ChangeVulnerabilityAuditCompartment.go.html to see an example of how to use ChangeVulnerabilityAuditCompartment API. // A default retry strategy applies to this operation ChangeVulnerabilityAuditCompartment() @@ -277,7 +277,7 @@ func (client ApplicationDependencyManagementClient) changeVulnerabilityAuditComp // CreateKnowledgeBase Creates a new Knowledge Base. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/CreateKnowledgeBase.go.html to see an example of how to use CreateKnowledgeBase API. // A default retry strategy applies to this operation CreateKnowledgeBase() @@ -340,7 +340,7 @@ func (client ApplicationDependencyManagementClient) createKnowledgeBase(ctx cont // CreateVulnerabilityAudit Creates a new Vulnerability Audit by providing a tree of Application Dependencies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/CreateVulnerabilityAudit.go.html to see an example of how to use CreateVulnerabilityAudit API. // A default retry strategy applies to this operation CreateVulnerabilityAudit() @@ -403,7 +403,7 @@ func (client ApplicationDependencyManagementClient) createVulnerabilityAudit(ctx // DeleteKnowledgeBase Deletes the specified Knowledge Base. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/DeleteKnowledgeBase.go.html to see an example of how to use DeleteKnowledgeBase API. // A default retry strategy applies to this operation DeleteKnowledgeBase() @@ -461,7 +461,7 @@ func (client ApplicationDependencyManagementClient) deleteKnowledgeBase(ctx cont // DeleteVulnerabilityAudit Deletes the specified Vulnerability Audit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/DeleteVulnerabilityAudit.go.html to see an example of how to use DeleteVulnerabilityAudit API. // A default retry strategy applies to this operation DeleteVulnerabilityAudit() @@ -519,7 +519,7 @@ func (client ApplicationDependencyManagementClient) deleteVulnerabilityAudit(ctx // GetKnowledgeBase Returns the details of the specified Knowledge Base. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/GetKnowledgeBase.go.html to see an example of how to use GetKnowledgeBase API. // A default retry strategy applies to this operation GetKnowledgeBase() @@ -577,7 +577,7 @@ func (client ApplicationDependencyManagementClient) getKnowledgeBase(ctx context // GetVulnerabilityAudit Returns the details of the specified Vulnerability Audit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/GetVulnerabilityAudit.go.html to see an example of how to use GetVulnerabilityAudit API. // A default retry strategy applies to this operation GetVulnerabilityAudit() @@ -635,7 +635,7 @@ func (client ApplicationDependencyManagementClient) getVulnerabilityAudit(ctx co // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -693,7 +693,7 @@ func (client ApplicationDependencyManagementClient) getWorkRequest(ctx context.C // ListApplicationDependencyVulnerabilities Returns a list of Application Dependencies with their associated vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListApplicationDependencyVulnerabilities.go.html to see an example of how to use ListApplicationDependencyVulnerabilities API. // A default retry strategy applies to this operation ListApplicationDependencyVulnerabilities() @@ -752,7 +752,7 @@ func (client ApplicationDependencyManagementClient) listApplicationDependencyVul // ListKnowledgeBases Returns a list of KnowledgeBases based on the specified query parameters. // At least id or compartmentId query parameter must be provided. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListKnowledgeBases.go.html to see an example of how to use ListKnowledgeBases API. // A default retry strategy applies to this operation ListKnowledgeBases() @@ -811,7 +811,7 @@ func (client ApplicationDependencyManagementClient) listKnowledgeBases(ctx conte // ListVulnerabilityAudits Returns a list of Vulnerability Audits based on the specified query parameters. // At least one of id, compartmentId or knowledgeBaseId query parameter must be provided. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListVulnerabilityAudits.go.html to see an example of how to use ListVulnerabilityAudits API. // A default retry strategy applies to this operation ListVulnerabilityAudits() @@ -869,7 +869,7 @@ func (client ApplicationDependencyManagementClient) listVulnerabilityAudits(ctx // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -927,7 +927,7 @@ func (client ApplicationDependencyManagementClient) listWorkRequestErrors(ctx co // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -985,7 +985,7 @@ func (client ApplicationDependencyManagementClient) listWorkRequestLogs(ctx cont // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1043,7 +1043,7 @@ func (client ApplicationDependencyManagementClient) listWorkRequests(ctx context // UpdateKnowledgeBase Updates one or more attributes of the specified Knowledge Base. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/UpdateKnowledgeBase.go.html to see an example of how to use UpdateKnowledgeBase API. // A default retry strategy applies to this operation UpdateKnowledgeBase() @@ -1101,7 +1101,7 @@ func (client ApplicationDependencyManagementClient) updateKnowledgeBase(ctx cont // UpdateVulnerabilityAudit Updates one or more attributes of the specified Vulnerability Audit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/adm/UpdateVulnerabilityAudit.go.html to see an example of how to use UpdateVulnerabilityAudit API. // A default retry strategy applies to this operation UpdateVulnerabilityAudit() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/aianomalydetection_anomalydetection_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/aianomalydetection_anomalydetection_client.go index 199316ff000..9726d3716fb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/aianomalydetection_anomalydetection_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/aianomalydetection_anomalydetection_client.go @@ -95,7 +95,7 @@ func (client *AnomalyDetectionClient) ConfigurationProvider() *common.Configurat // CancelWorkRequest Cancel work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -153,7 +153,7 @@ func (client AnomalyDetectionClient) cancelWorkRequest(ctx context.Context, requ // ChangeAiPrivateEndpointCompartment Moves a resource into a different compartment. When provided, 'If-Match' is checked against 'ETag' values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ChangeAiPrivateEndpointCompartment.go.html to see an example of how to use ChangeAiPrivateEndpointCompartment API. // A default retry strategy applies to this operation ChangeAiPrivateEndpointCompartment() @@ -216,7 +216,7 @@ func (client AnomalyDetectionClient) changeAiPrivateEndpointCompartment(ctx cont // ChangeDataAssetCompartment Changing the compartment of a data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ChangeDataAssetCompartment.go.html to see an example of how to use ChangeDataAssetCompartment API. // A default retry strategy applies to this operation ChangeDataAssetCompartment() @@ -279,7 +279,7 @@ func (client AnomalyDetectionClient) changeDataAssetCompartment(ctx context.Cont // ChangeDetectAnomalyJobCompartment Moves a asynchronous anomaly detect job resource from one compartment to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ChangeDetectAnomalyJobCompartment.go.html to see an example of how to use ChangeDetectAnomalyJobCompartment API. // A default retry strategy applies to this operation ChangeDetectAnomalyJobCompartment() @@ -337,7 +337,7 @@ func (client AnomalyDetectionClient) changeDetectAnomalyJobCompartment(ctx conte // ChangeModelCompartment Moves a Model resource from one compartment to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ChangeModelCompartment.go.html to see an example of how to use ChangeModelCompartment API. // A default retry strategy applies to this operation ChangeModelCompartment() @@ -400,7 +400,7 @@ func (client AnomalyDetectionClient) changeModelCompartment(ctx context.Context, // ChangeProjectCompartment Moves a Project resource from one compartment to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ChangeProjectCompartment.go.html to see an example of how to use ChangeProjectCompartment API. // A default retry strategy applies to this operation ChangeProjectCompartment() @@ -463,7 +463,7 @@ func (client AnomalyDetectionClient) changeProjectCompartment(ctx context.Contex // CreateAiPrivateEndpoint Create a new private reverse connection endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/CreateAiPrivateEndpoint.go.html to see an example of how to use CreateAiPrivateEndpoint API. // A default retry strategy applies to this operation CreateAiPrivateEndpoint() @@ -526,7 +526,7 @@ func (client AnomalyDetectionClient) createAiPrivateEndpoint(ctx context.Context // CreateDataAsset Creates a new DataAsset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/CreateDataAsset.go.html to see an example of how to use CreateDataAsset API. // A default retry strategy applies to this operation CreateDataAsset() @@ -589,7 +589,7 @@ func (client AnomalyDetectionClient) createDataAsset(ctx context.Context, reques // CreateDetectAnomalyJob Creates a job to perform anomaly detection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/CreateDetectAnomalyJob.go.html to see an example of how to use CreateDetectAnomalyJob API. // A default retry strategy applies to this operation CreateDetectAnomalyJob() @@ -652,7 +652,7 @@ func (client AnomalyDetectionClient) createDetectAnomalyJob(ctx context.Context, // CreateModel Creates a new Model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/CreateModel.go.html to see an example of how to use CreateModel API. // A default retry strategy applies to this operation CreateModel() @@ -715,7 +715,7 @@ func (client AnomalyDetectionClient) createModel(ctx context.Context, request co // CreateProject Creates a new Project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/CreateProject.go.html to see an example of how to use CreateProject API. // A default retry strategy applies to this operation CreateProject() @@ -778,7 +778,7 @@ func (client AnomalyDetectionClient) createProject(ctx context.Context, request // DeleteAiPrivateEndpoint Deletes a private reverse connection endpoint by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/DeleteAiPrivateEndpoint.go.html to see an example of how to use DeleteAiPrivateEndpoint API. // A default retry strategy applies to this operation DeleteAiPrivateEndpoint() @@ -836,7 +836,7 @@ func (client AnomalyDetectionClient) deleteAiPrivateEndpoint(ctx context.Context // DeleteDataAsset Deletes a DataAsset resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/DeleteDataAsset.go.html to see an example of how to use DeleteDataAsset API. // A default retry strategy applies to this operation DeleteDataAsset() @@ -894,7 +894,7 @@ func (client AnomalyDetectionClient) deleteDataAsset(ctx context.Context, reques // DeleteDetectAnomalyJob Deletes an accepted, but not started detect anomaly asynchronous job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/DeleteDetectAnomalyJob.go.html to see an example of how to use DeleteDetectAnomalyJob API. // A default retry strategy applies to this operation DeleteDetectAnomalyJob() @@ -952,7 +952,7 @@ func (client AnomalyDetectionClient) deleteDetectAnomalyJob(ctx context.Context, // DeleteModel Deletes an ai model resource by identifier. This operation fails with a 409 error unless all associated resources are in a DELETED state. You must delete all associated resources before deleting a project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/DeleteModel.go.html to see an example of how to use DeleteModel API. // A default retry strategy applies to this operation DeleteModel() @@ -1010,7 +1010,7 @@ func (client AnomalyDetectionClient) deleteModel(ctx context.Context, request co // DeleteProject Deletes a Project resource by identifier. This operation fails with a 409 error unless all associated resources (models deployments or data assets) are in a DELETED state. You must delete all associated resources before deleting a project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/DeleteProject.go.html to see an example of how to use DeleteProject API. // A default retry strategy applies to this operation DeleteProject() @@ -1068,7 +1068,7 @@ func (client AnomalyDetectionClient) deleteProject(ctx context.Context, request // DetectAnomalies Make a detect call with an anomaly model and detection data // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/DetectAnomalies.go.html to see an example of how to use DetectAnomalies API. // A default retry strategy applies to this operation DetectAnomalies() @@ -1131,7 +1131,7 @@ func (client AnomalyDetectionClient) detectAnomalies(ctx context.Context, reques // GetAiPrivateEndpoint Gets a specific private reverse connection by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/GetAiPrivateEndpoint.go.html to see an example of how to use GetAiPrivateEndpoint API. // A default retry strategy applies to this operation GetAiPrivateEndpoint() @@ -1189,7 +1189,7 @@ func (client AnomalyDetectionClient) getAiPrivateEndpoint(ctx context.Context, r // GetDataAsset Gets a DataAsset by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/GetDataAsset.go.html to see an example of how to use GetDataAsset API. // A default retry strategy applies to this operation GetDataAsset() @@ -1247,7 +1247,7 @@ func (client AnomalyDetectionClient) getDataAsset(ctx context.Context, request c // GetDetectAnomalyJob Gets a detect anomaly asynchronous job by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/GetDetectAnomalyJob.go.html to see an example of how to use GetDetectAnomalyJob API. // A default retry strategy applies to this operation GetDetectAnomalyJob() @@ -1305,7 +1305,7 @@ func (client AnomalyDetectionClient) getDetectAnomalyJob(ctx context.Context, re // GetModel Gets a Model by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/GetModel.go.html to see an example of how to use GetModel API. // A default retry strategy applies to this operation GetModel() @@ -1363,7 +1363,7 @@ func (client AnomalyDetectionClient) getModel(ctx context.Context, request commo // GetProject Gets a Project by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/GetProject.go.html to see an example of how to use GetProject API. // A default retry strategy applies to this operation GetProject() @@ -1421,7 +1421,7 @@ func (client AnomalyDetectionClient) getProject(ctx context.Context, request com // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1479,7 +1479,7 @@ func (client AnomalyDetectionClient) getWorkRequest(ctx context.Context, request // ListAiPrivateEndpoints Returns a list of all the AI private endpoints in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ListAiPrivateEndpoints.go.html to see an example of how to use ListAiPrivateEndpoints API. // A default retry strategy applies to this operation ListAiPrivateEndpoints() @@ -1537,7 +1537,7 @@ func (client AnomalyDetectionClient) listAiPrivateEndpoints(ctx context.Context, // ListDataAssets Returns a list of DataAssets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ListDataAssets.go.html to see an example of how to use ListDataAssets API. // A default retry strategy applies to this operation ListDataAssets() @@ -1595,7 +1595,7 @@ func (client AnomalyDetectionClient) listDataAssets(ctx context.Context, request // ListDetectAnomalyJobs Returns a list of all the Anomaly Detection jobs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ListDetectAnomalyJobs.go.html to see an example of how to use ListDetectAnomalyJobs API. // A default retry strategy applies to this operation ListDetectAnomalyJobs() @@ -1653,7 +1653,7 @@ func (client AnomalyDetectionClient) listDetectAnomalyJobs(ctx context.Context, // ListModels Returns a list of Models. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ListModels.go.html to see an example of how to use ListModels API. // A default retry strategy applies to this operation ListModels() @@ -1711,7 +1711,7 @@ func (client AnomalyDetectionClient) listModels(ctx context.Context, request com // ListProjects Returns a list of Projects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ListProjects.go.html to see an example of how to use ListProjects API. // A default retry strategy applies to this operation ListProjects() @@ -1769,7 +1769,7 @@ func (client AnomalyDetectionClient) listProjects(ctx context.Context, request c // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1827,7 +1827,7 @@ func (client AnomalyDetectionClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1885,7 +1885,7 @@ func (client AnomalyDetectionClient) listWorkRequestLogs(ctx context.Context, re // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1943,7 +1943,7 @@ func (client AnomalyDetectionClient) listWorkRequests(ctx context.Context, reque // UpdateAiPrivateEndpoint Updates the private reverse connection endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/UpdateAiPrivateEndpoint.go.html to see an example of how to use UpdateAiPrivateEndpoint API. // A default retry strategy applies to this operation UpdateAiPrivateEndpoint() @@ -2001,7 +2001,7 @@ func (client AnomalyDetectionClient) updateAiPrivateEndpoint(ctx context.Context // UpdateDataAsset Updates the DataAsset // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/UpdateDataAsset.go.html to see an example of how to use UpdateDataAsset API. // A default retry strategy applies to this operation UpdateDataAsset() @@ -2059,7 +2059,7 @@ func (client AnomalyDetectionClient) updateDataAsset(ctx context.Context, reques // UpdateDetectAnomalyJob Updates the detect anomaly asynchronous job by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/UpdateDetectAnomalyJob.go.html to see an example of how to use UpdateDetectAnomalyJob API. // A default retry strategy applies to this operation UpdateDetectAnomalyJob() @@ -2117,7 +2117,7 @@ func (client AnomalyDetectionClient) updateDetectAnomalyJob(ctx context.Context, // UpdateModel Updates the Model // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/UpdateModel.go.html to see an example of how to use UpdateModel API. // A default retry strategy applies to this operation UpdateModel() @@ -2175,7 +2175,7 @@ func (client AnomalyDetectionClient) updateModel(ctx context.Context, request co // UpdateProject Updates the Project // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aianomalydetection/UpdateProject.go.html to see an example of how to use UpdateProject API. // A default retry strategy applies to this operation UpdateProject() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/embedded_detect_anomalies_request.go b/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/embedded_detect_anomalies_request.go index 6e336007c9f..2ed800afaba 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/embedded_detect_anomalies_request.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/embedded_detect_anomalies_request.go @@ -33,12 +33,12 @@ type EmbeddedDetectAnomaliesRequest struct { ContentType EmbeddedDetectAnomaliesRequestContentTypeEnum `mandatory:"false" json:"contentType,omitempty"` } -//GetModelId returns ModelId +// GetModelId returns ModelId func (m EmbeddedDetectAnomaliesRequest) GetModelId() *string { return m.ModelId } -//GetSensitivity returns Sensitivity +// GetSensitivity returns Sensitivity func (m EmbeddedDetectAnomaliesRequest) GetSensitivity() *float32 { return m.Sensitivity } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/inline_detect_anomalies_request.go b/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/inline_detect_anomalies_request.go index 9e236da2256..8de15620468 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/inline_detect_anomalies_request.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aianomalydetection/inline_detect_anomalies_request.go @@ -36,12 +36,12 @@ type InlineDetectAnomaliesRequest struct { Sensitivity *float32 `mandatory:"false" json:"sensitivity"` } -//GetModelId returns ModelId +// GetModelId returns ModelId func (m InlineDetectAnomaliesRequest) GetModelId() *string { return m.ModelId } -//GetSensitivity returns Sensitivity +// GetSensitivity returns Sensitivity func (m InlineDetectAnomaliesRequest) GetSensitivity() *float32 { return m.Sensitivity } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/aidocument_aiservicedocument_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/aidocument_aiservicedocument_client.go index bb9b1b25ebc..ba3bde2aba6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/aidocument_aiservicedocument_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/aidocument_aiservicedocument_client.go @@ -93,7 +93,7 @@ func (client *AIServiceDocumentClient) ConfigurationProvider() *common.Configura // AnalyzeDocument Perform different types of document analysis. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/AnalyzeDocument.go.html to see an example of how to use AnalyzeDocument API. // A default retry strategy applies to this operation AnalyzeDocument() @@ -151,7 +151,7 @@ func (client AIServiceDocumentClient) analyzeDocument(ctx context.Context, reque // CancelProcessorJob Cancel a processor job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/CancelProcessorJob.go.html to see an example of how to use CancelProcessorJob API. func (client AIServiceDocumentClient) CancelProcessorJob(ctx context.Context, request CancelProcessorJobRequest) (response CancelProcessorJobResponse, err error) { @@ -208,7 +208,7 @@ func (client AIServiceDocumentClient) cancelProcessorJob(ctx context.Context, re // CancelWorkRequest Cancel the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. func (client AIServiceDocumentClient) CancelWorkRequest(ctx context.Context, request CancelWorkRequestRequest) (response CancelWorkRequestResponse, err error) { @@ -265,7 +265,7 @@ func (client AIServiceDocumentClient) cancelWorkRequest(ctx context.Context, req // ChangeModelCompartment Moves a model from one compartment to another. When provided, If-Match is checked against the ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/ChangeModelCompartment.go.html to see an example of how to use ChangeModelCompartment API. func (client AIServiceDocumentClient) ChangeModelCompartment(ctx context.Context, request ChangeModelCompartmentRequest) (response ChangeModelCompartmentResponse, err error) { @@ -322,7 +322,7 @@ func (client AIServiceDocumentClient) changeModelCompartment(ctx context.Context // ChangeProjectCompartment Move a project from one compartment to another. When provided, If-Match is checked against the ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/ChangeProjectCompartment.go.html to see an example of how to use ChangeProjectCompartment API. func (client AIServiceDocumentClient) ChangeProjectCompartment(ctx context.Context, request ChangeProjectCompartmentRequest) (response ChangeProjectCompartmentResponse, err error) { @@ -379,7 +379,7 @@ func (client AIServiceDocumentClient) changeProjectCompartment(ctx context.Conte // CreateModel Create a new model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/CreateModel.go.html to see an example of how to use CreateModel API. // A default retry strategy applies to this operation CreateModel() @@ -442,7 +442,7 @@ func (client AIServiceDocumentClient) createModel(ctx context.Context, request c // CreateProcessorJob Create a processor job for document analysis. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/CreateProcessorJob.go.html to see an example of how to use CreateProcessorJob API. // A default retry strategy applies to this operation CreateProcessorJob() @@ -505,7 +505,7 @@ func (client AIServiceDocumentClient) createProcessorJob(ctx context.Context, re // CreateProject Create a new project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/CreateProject.go.html to see an example of how to use CreateProject API. // A default retry strategy applies to this operation CreateProject() @@ -568,7 +568,7 @@ func (client AIServiceDocumentClient) createProject(ctx context.Context, request // DeleteModel Delete a model by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/DeleteModel.go.html to see an example of how to use DeleteModel API. func (client AIServiceDocumentClient) DeleteModel(ctx context.Context, request DeleteModelRequest) (response DeleteModelResponse, err error) { @@ -625,7 +625,7 @@ func (client AIServiceDocumentClient) deleteModel(ctx context.Context, request c // DeleteProject Delete a project by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/DeleteProject.go.html to see an example of how to use DeleteProject API. func (client AIServiceDocumentClient) DeleteProject(ctx context.Context, request DeleteProjectRequest) (response DeleteProjectResponse, err error) { @@ -682,7 +682,7 @@ func (client AIServiceDocumentClient) deleteProject(ctx context.Context, request // GetModel Get a model by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/GetModel.go.html to see an example of how to use GetModel API. // A default retry strategy applies to this operation GetModel() @@ -740,7 +740,7 @@ func (client AIServiceDocumentClient) getModel(ctx context.Context, request comm // GetProcessorJob Get the details of a processor job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/GetProcessorJob.go.html to see an example of how to use GetProcessorJob API. // A default retry strategy applies to this operation GetProcessorJob() @@ -798,7 +798,7 @@ func (client AIServiceDocumentClient) getProcessorJob(ctx context.Context, reque // GetProject Get a project by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/GetProject.go.html to see an example of how to use GetProject API. // A default retry strategy applies to this operation GetProject() @@ -856,7 +856,7 @@ func (client AIServiceDocumentClient) getProject(ctx context.Context, request co // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -914,7 +914,7 @@ func (client AIServiceDocumentClient) getWorkRequest(ctx context.Context, reques // ListModels Returns a list of models in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/ListModels.go.html to see an example of how to use ListModels API. // A default retry strategy applies to this operation ListModels() @@ -972,7 +972,7 @@ func (client AIServiceDocumentClient) listModels(ctx context.Context, request co // ListProjects Returns a list of projects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/ListProjects.go.html to see an example of how to use ListProjects API. // A default retry strategy applies to this operation ListProjects() @@ -1030,7 +1030,7 @@ func (client AIServiceDocumentClient) listProjects(ctx context.Context, request // ListWorkRequestErrors Returns a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1088,7 +1088,7 @@ func (client AIServiceDocumentClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1146,7 +1146,7 @@ func (client AIServiceDocumentClient) listWorkRequestLogs(ctx context.Context, r // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1204,7 +1204,7 @@ func (client AIServiceDocumentClient) listWorkRequests(ctx context.Context, requ // PatchModel Updates the model metadata only selected path parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/PatchModel.go.html to see an example of how to use PatchModel API. func (client AIServiceDocumentClient) PatchModel(ctx context.Context, request PatchModelRequest) (response PatchModelResponse, err error) { @@ -1261,7 +1261,7 @@ func (client AIServiceDocumentClient) patchModel(ctx context.Context, request co // UpdateModel Updates the model metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/UpdateModel.go.html to see an example of how to use UpdateModel API. func (client AIServiceDocumentClient) UpdateModel(ctx context.Context, request UpdateModelRequest) (response UpdateModelResponse, err error) { @@ -1318,7 +1318,7 @@ func (client AIServiceDocumentClient) updateModel(ctx context.Context, request c // UpdateProject Update the project metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aidocument/UpdateProject.go.html to see an example of how to use UpdateProject API. func (client AIServiceDocumentClient) UpdateProject(ctx context.Context, request UpdateProjectRequest) (response UpdateProjectResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/document_classification_model_metrics.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/document_classification_model_metrics.go index 22efd7759a7..0255256e976 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/document_classification_model_metrics.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/document_classification_model_metrics.go @@ -27,7 +27,7 @@ type DocumentClassificationModelMetrics struct { DatasetSummary *DatasetSummary `mandatory:"false" json:"datasetSummary"` } -//GetDatasetSummary returns DatasetSummary +// GetDatasetSummary returns DatasetSummary func (m DocumentClassificationModelMetrics) GetDatasetSummary() *DatasetSummary { return m.DatasetSummary } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/key_value_detection_model_metrics.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/key_value_detection_model_metrics.go index ecb56c22a42..5cbc6396f76 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/key_value_detection_model_metrics.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/key_value_detection_model_metrics.go @@ -27,7 +27,7 @@ type KeyValueDetectionModelMetrics struct { DatasetSummary *DatasetSummary `mandatory:"false" json:"datasetSummary"` } -//GetDatasetSummary returns DatasetSummary +// GetDatasetSummary returns DatasetSummary func (m KeyValueDetectionModelMetrics) GetDatasetSummary() *DatasetSummary { return m.DatasetSummary } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_array.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_array.go index 11a82e47df2..25406de2d8d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_array.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_array.go @@ -34,22 +34,22 @@ type ValueArray struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueArray) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueArray) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueArray) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueArray) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_date.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_date.go index 631b6c0556b..55b3b815c47 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_date.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_date.go @@ -34,22 +34,22 @@ type ValueDate struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueDate) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueDate) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueDate) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueDate) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_integer.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_integer.go index 88f071d68ac..664e037e957 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_integer.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_integer.go @@ -34,22 +34,22 @@ type ValueInteger struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueInteger) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueInteger) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueInteger) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueInteger) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_number.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_number.go index 4bb85350c33..8012d618067 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_number.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_number.go @@ -34,22 +34,22 @@ type ValueNumber struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueNumber) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueNumber) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueNumber) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueNumber) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_phone_number.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_phone_number.go index e9ccde09ac3..e8e2903d0b7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_phone_number.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_phone_number.go @@ -34,22 +34,22 @@ type ValuePhoneNumber struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValuePhoneNumber) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValuePhoneNumber) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValuePhoneNumber) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValuePhoneNumber) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_string.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_string.go index 6c5340e334b..944d233c06b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_string.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_string.go @@ -34,22 +34,22 @@ type ValueString struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueString) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueString) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueString) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueString) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_time.go b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_time.go index ed7b7e03000..30ecc79a20c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_time.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aidocument/value_time.go @@ -34,22 +34,22 @@ type ValueTime struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueTime) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueTime) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueTime) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueTime) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/ailanguage_aiservicelanguage_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/ailanguage_aiservicelanguage_client.go index 29fd30df068..272ce2a24b8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/ailanguage_aiservicelanguage_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/ailanguage_aiservicelanguage_client.go @@ -100,7 +100,7 @@ func (client *AIServiceLanguageClient) ConfigurationProvider() *common.Configura // - A record may be up to 5000 characters long. // - The total of characters to process in a request can be up to 20,000 characters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/BatchDetectDominantLanguage.go.html to see an example of how to use BatchDetectDominantLanguage API. func (client AIServiceLanguageClient) BatchDetectDominantLanguage(ctx context.Context, request BatchDetectDominantLanguageRequest) (response BatchDetectDominantLanguageResponse, err error) { @@ -162,7 +162,7 @@ func (client AIServiceLanguageClient) batchDetectDominantLanguage(ctx context.Co // - A record may be up to 5000 characters long. // - The total of characters to process in a request can be up to 20,000 characters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/BatchDetectLanguageEntities.go.html to see an example of how to use BatchDetectLanguageEntities API. func (client AIServiceLanguageClient) BatchDetectLanguageEntities(ctx context.Context, request BatchDetectLanguageEntitiesRequest) (response BatchDetectLanguageEntitiesResponse, err error) { @@ -223,7 +223,7 @@ func (client AIServiceLanguageClient) batchDetectLanguageEntities(ctx context.Co // - A record may be up to 5000 characters long. // - The total of characters to process in a request can be up to 20,000 characters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/BatchDetectLanguageKeyPhrases.go.html to see an example of how to use BatchDetectLanguageKeyPhrases API. func (client AIServiceLanguageClient) BatchDetectLanguageKeyPhrases(ctx context.Context, request BatchDetectLanguageKeyPhrasesRequest) (response BatchDetectLanguageKeyPhrasesResponse, err error) { @@ -284,7 +284,7 @@ func (client AIServiceLanguageClient) batchDetectLanguageKeyPhrases(ctx context. // - A record may be up to 5000 characters long. // - The total of characters to process in a request can be up to 20,000 characters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/BatchDetectLanguagePiiEntities.go.html to see an example of how to use BatchDetectLanguagePiiEntities API. func (client AIServiceLanguageClient) BatchDetectLanguagePiiEntities(ctx context.Context, request BatchDetectLanguagePiiEntitiesRequest) (response BatchDetectLanguagePiiEntitiesResponse, err error) { @@ -344,11 +344,11 @@ func (client AIServiceLanguageClient) batchDetectLanguagePiiEntities(ctx context // For sentiment analysis, confidence scores are provided for each of the classes (positive, negative, neutral and mixed). // Learn more about sentiment analysis here (https://docs.cloud.oracle.com/iaas/language/using/pretrain-models.htm#sentiment). // Limitations: -// - A batch may have up to 100 records. -// - A record may be up to 5000 characters long. -// - The total of characters to process in a request can be up to 20,000 characters. +// - A batch may have up to 100 records. +// - A record may be up to 5000 characters long. +// - The total of characters to process in a request can be up to 20,000 characters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/BatchDetectLanguageSentiments.go.html to see an example of how to use BatchDetectLanguageSentiments API. func (client AIServiceLanguageClient) BatchDetectLanguageSentiments(ctx context.Context, request BatchDetectLanguageSentimentsRequest) (response BatchDetectLanguageSentimentsResponse, err error) { @@ -411,7 +411,7 @@ func (client AIServiceLanguageClient) batchDetectLanguageSentiments(ctx context. // - A record may be up to 5000 characters long. // - The total of characters to process in a request can be up to 20,000 characters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/BatchDetectLanguageTextClassification.go.html to see an example of how to use BatchDetectLanguageTextClassification API. func (client AIServiceLanguageClient) BatchDetectLanguageTextClassification(ctx context.Context, request BatchDetectLanguageTextClassificationRequest) (response BatchDetectLanguageTextClassificationResponse, err error) { @@ -473,7 +473,7 @@ func (client AIServiceLanguageClient) batchDetectLanguageTextClassification(ctx // - A record may be up to 5000 characters long. // - The total of characters to process in a request can be up to 20,000 characters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/BatchLanguageTranslation.go.html to see an example of how to use BatchLanguageTranslation API. func (client AIServiceLanguageClient) BatchLanguageTranslation(ctx context.Context, request BatchLanguageTranslationRequest) (response BatchLanguageTranslationResponse, err error) { @@ -530,7 +530,7 @@ func (client AIServiceLanguageClient) batchLanguageTranslation(ctx context.Conte // ChangeEndpointCompartment Moves a Endpoint into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ChangeEndpointCompartment.go.html to see an example of how to use ChangeEndpointCompartment API. // A default retry strategy applies to this operation ChangeEndpointCompartment() @@ -593,7 +593,7 @@ func (client AIServiceLanguageClient) changeEndpointCompartment(ctx context.Cont // ChangeModelCompartment Moves a Model into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ChangeModelCompartment.go.html to see an example of how to use ChangeModelCompartment API. // A default retry strategy applies to this operation ChangeModelCompartment() @@ -656,7 +656,7 @@ func (client AIServiceLanguageClient) changeModelCompartment(ctx context.Context // ChangeProjectCompartment Moves a Project into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ChangeProjectCompartment.go.html to see an example of how to use ChangeProjectCompartment API. // A default retry strategy applies to this operation ChangeProjectCompartment() @@ -719,7 +719,7 @@ func (client AIServiceLanguageClient) changeProjectCompartment(ctx context.Conte // CreateEndpoint Creates a new endpoint and deploy the trained model // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/CreateEndpoint.go.html to see an example of how to use CreateEndpoint API. // A default retry strategy applies to this operation CreateEndpoint() @@ -782,7 +782,7 @@ func (client AIServiceLanguageClient) createEndpoint(ctx context.Context, reques // CreateModel Creates a new model for training and train the model with date provided. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/CreateModel.go.html to see an example of how to use CreateModel API. // A default retry strategy applies to this operation CreateModel() @@ -845,7 +845,7 @@ func (client AIServiceLanguageClient) createModel(ctx context.Context, request c // CreateProject Creates a new Project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/CreateProject.go.html to see an example of how to use CreateProject API. // A default retry strategy applies to this operation CreateProject() @@ -908,7 +908,7 @@ func (client AIServiceLanguageClient) createProject(ctx context.Context, request // DeleteEndpoint Deletes a provisioned endpoint resource by identifier. This operation fails with a 409 error unless all associated resources are in a DELETED state. You must delete all associated resources before deleting a model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/DeleteEndpoint.go.html to see an example of how to use DeleteEndpoint API. // A default retry strategy applies to this operation DeleteEndpoint() @@ -966,7 +966,7 @@ func (client AIServiceLanguageClient) deleteEndpoint(ctx context.Context, reques // DeleteModel Deletes a provisioned model resource by identifier. This operation fails with a 409 error unless all associated resources are in a DELETED state. You must delete all associated resources before deleting a model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/DeleteModel.go.html to see an example of how to use DeleteModel API. // A default retry strategy applies to this operation DeleteModel() @@ -1024,7 +1024,7 @@ func (client AIServiceLanguageClient) deleteModel(ctx context.Context, request c // DeleteProject Deletes a Project resource by identifier. This operation fails with a 409 error unless all associated resources (models deployments or data assets) are in a DELETED state. You must delete all associated resources before deleting a project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/DeleteProject.go.html to see an example of how to use DeleteProject API. // A default retry strategy applies to this operation DeleteProject() @@ -1086,7 +1086,7 @@ func (client AIServiceLanguageClient) deleteProject(ctx context.Context, request // Limitations: // - A record may be up to 1000 characters long. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/DetectDominantLanguage.go.html to see an example of how to use DetectDominantLanguage API. func (client AIServiceLanguageClient) DetectDominantLanguage(ctx context.Context, request DetectDominantLanguageRequest) (response DetectDominantLanguageResponse, err error) { @@ -1146,7 +1146,7 @@ func (client AIServiceLanguageClient) detectDominantLanguage(ctx context.Context // Limitations: // - A text may be up to 1000 characters long. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/DetectLanguageEntities.go.html to see an example of how to use DetectLanguageEntities API. func (client AIServiceLanguageClient) DetectLanguageEntities(ctx context.Context, request DetectLanguageEntitiesRequest) (response DetectLanguageEntitiesResponse, err error) { @@ -1206,7 +1206,7 @@ func (client AIServiceLanguageClient) detectLanguageEntities(ctx context.Context // Limitations: // - A record may be up to 1000 characters long. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/DetectLanguageKeyPhrases.go.html to see an example of how to use DetectLanguageKeyPhrases API. func (client AIServiceLanguageClient) DetectLanguageKeyPhrases(ctx context.Context, request DetectLanguageKeyPhrasesRequest) (response DetectLanguageKeyPhrasesResponse, err error) { @@ -1267,9 +1267,9 @@ func (client AIServiceLanguageClient) detectLanguageKeyPhrases(ctx context.Conte // For sentiment analysis, confidence scores are provided for each of the classes (positive, negative, neutral). // Learn more about sentiment analysis here (https://docs.cloud.oracle.com/iaas/language/using/pretrain-models.htm#sentiment). // Limitations: -// - A record may be up to 1000 characters long. +// - A record may be up to 1000 characters long. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/DetectLanguageSentiments.go.html to see an example of how to use DetectLanguageSentiments API. func (client AIServiceLanguageClient) DetectLanguageSentiments(ctx context.Context, request DetectLanguageSentimentsRequest) (response DetectLanguageSentimentsResponse, err error) { @@ -1330,7 +1330,7 @@ func (client AIServiceLanguageClient) detectLanguageSentiments(ctx context.Conte // Limitations: // - A record may be up to 1000 characters long. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/DetectLanguageTextClassification.go.html to see an example of how to use DetectLanguageTextClassification API. func (client AIServiceLanguageClient) DetectLanguageTextClassification(ctx context.Context, request DetectLanguageTextClassificationRequest) (response DetectLanguageTextClassificationResponse, err error) { @@ -1387,7 +1387,7 @@ func (client AIServiceLanguageClient) detectLanguageTextClassification(ctx conte // GetEndpoint Gets an endpoint by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/GetEndpoint.go.html to see an example of how to use GetEndpoint API. // A default retry strategy applies to this operation GetEndpoint() @@ -1445,7 +1445,7 @@ func (client AIServiceLanguageClient) getEndpoint(ctx context.Context, request c // GetModel Gets a model by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/GetModel.go.html to see an example of how to use GetModel API. // A default retry strategy applies to this operation GetModel() @@ -1503,7 +1503,7 @@ func (client AIServiceLanguageClient) getModel(ctx context.Context, request comm // GetModelType Gets model capabilities // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/GetModelType.go.html to see an example of how to use GetModelType API. // A default retry strategy applies to this operation GetModelType() @@ -1561,7 +1561,7 @@ func (client AIServiceLanguageClient) getModelType(ctx context.Context, request // GetProject Gets a Project by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/GetProject.go.html to see an example of how to use GetProject API. // A default retry strategy applies to this operation GetProject() @@ -1619,7 +1619,7 @@ func (client AIServiceLanguageClient) getProject(ctx context.Context, request co // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1677,7 +1677,7 @@ func (client AIServiceLanguageClient) getWorkRequest(ctx context.Context, reques // ListEndpoints Returns a list of Endpoints. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ListEndpoints.go.html to see an example of how to use ListEndpoints API. // A default retry strategy applies to this operation ListEndpoints() @@ -1735,7 +1735,7 @@ func (client AIServiceLanguageClient) listEndpoints(ctx context.Context, request // ListEvaluationResults Get a (paginated) list of evaluation results for a given model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ListEvaluationResults.go.html to see an example of how to use ListEvaluationResults API. // A default retry strategy applies to this operation ListEvaluationResults() @@ -1793,7 +1793,7 @@ func (client AIServiceLanguageClient) listEvaluationResults(ctx context.Context, // ListModels Returns a list of models. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ListModels.go.html to see an example of how to use ListModels API. // A default retry strategy applies to this operation ListModels() @@ -1851,7 +1851,7 @@ func (client AIServiceLanguageClient) listModels(ctx context.Context, request co // ListProjects Returns a list of Projects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ListProjects.go.html to see an example of how to use ListProjects API. // A default retry strategy applies to this operation ListProjects() @@ -1909,7 +1909,7 @@ func (client AIServiceLanguageClient) listProjects(ctx context.Context, request // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1967,7 +1967,7 @@ func (client AIServiceLanguageClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -2025,7 +2025,7 @@ func (client AIServiceLanguageClient) listWorkRequestLogs(ctx context.Context, r // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2083,7 +2083,7 @@ func (client AIServiceLanguageClient) listWorkRequests(ctx context.Context, requ // UpdateEndpoint Update the Endpoint identified by the id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/UpdateEndpoint.go.html to see an example of how to use UpdateEndpoint API. // A default retry strategy applies to this operation UpdateEndpoint() @@ -2141,7 +2141,7 @@ func (client AIServiceLanguageClient) updateEndpoint(ctx context.Context, reques // UpdateModel Updates the model // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/UpdateModel.go.html to see an example of how to use UpdateModel API. // A default retry strategy applies to this operation UpdateModel() @@ -2199,7 +2199,7 @@ func (client AIServiceLanguageClient) updateModel(ctx context.Context, request c // UpdateProject Updates the Project // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ailanguage/UpdateProject.go.html to see an example of how to use UpdateProject API. // A default retry strategy applies to this operation UpdateProject() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/named_entity_recognition_evaluation_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/named_entity_recognition_evaluation_result.go index fd4d387d2cb..538632b70e9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/named_entity_recognition_evaluation_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/named_entity_recognition_evaluation_result.go @@ -39,12 +39,12 @@ type NamedEntityRecognitionEvaluationResult struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m NamedEntityRecognitionEvaluationResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m NamedEntityRecognitionEvaluationResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/named_entity_recognition_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/named_entity_recognition_model_details.go index eed7c89fa32..c34d8f42d6b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/named_entity_recognition_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/named_entity_recognition_model_details.go @@ -28,7 +28,7 @@ type NamedEntityRecognitionModelDetails struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m NamedEntityRecognitionModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_health_nlu_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_health_nlu_model_details.go index 62cf702d85d..24cf89a2e4f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_health_nlu_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_health_nlu_model_details.go @@ -29,7 +29,7 @@ type PreTrainedHealthNluModelDetails struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedHealthNluModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_key_phrase_extraction_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_key_phrase_extraction_model_details.go index 0a1d913e480..7e14428145a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_key_phrase_extraction_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_key_phrase_extraction_model_details.go @@ -29,7 +29,7 @@ type PreTrainedKeyPhraseExtractionModelDetails struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedKeyPhraseExtractionModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_language_detection_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_language_detection_model_details.go index 42829e6e9ef..2a729c0fa84 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_language_detection_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_language_detection_model_details.go @@ -29,7 +29,7 @@ type PreTrainedLanguageDetectionModelDetails struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedLanguageDetectionModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_named_entity_recognition_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_named_entity_recognition_model_details.go index b99b900ee09..c55dab3fc95 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_named_entity_recognition_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_named_entity_recognition_model_details.go @@ -29,7 +29,7 @@ type PreTrainedNamedEntityRecognitionModelDetails struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedNamedEntityRecognitionModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_phi_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_phi_model_details.go index 7c1ddc1269d..83a1161a4de 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_phi_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_phi_model_details.go @@ -29,7 +29,7 @@ type PreTrainedPhiModelDetails struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedPhiModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_pii_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_pii_model_details.go index 98ebece1eef..9c6abf6b765 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_pii_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_pii_model_details.go @@ -29,7 +29,7 @@ type PreTrainedPiiModelDetails struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedPiiModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_sentiment_analysis_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_sentiment_analysis_model_details.go index 9980d4571cf..77bf3f42db7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_sentiment_analysis_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_sentiment_analysis_model_details.go @@ -29,7 +29,7 @@ type PreTrainedSentimentAnalysisModelDetails struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedSentimentAnalysisModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_summarization.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_summarization.go index 9871ea2fa97..e3e0648015c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_summarization.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_summarization.go @@ -29,7 +29,7 @@ type PreTrainedSummarization struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedSummarization) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_text_classification_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_text_classification_model_details.go index 2cadd899c51..53648d77bda 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_text_classification_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_text_classification_model_details.go @@ -29,7 +29,7 @@ type PreTrainedTextClassificationModelDetails struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedTextClassificationModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_universal_model.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_universal_model.go index 085269c83a1..d2ba4a15aaf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_universal_model.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/pre_trained_universal_model.go @@ -29,7 +29,7 @@ type PreTrainedUniversalModel struct { Version *string `mandatory:"false" json:"version"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m PreTrainedUniversalModel) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/text_classification_model_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/text_classification_model_details.go index 46fad35a817..c3a43b5f3c2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/text_classification_model_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/text_classification_model_details.go @@ -27,7 +27,7 @@ type TextClassificationModelDetails struct { ClassificationMode ClassificationType `mandatory:"false" json:"classificationMode"` } -//GetLanguageCode returns LanguageCode +// GetLanguageCode returns LanguageCode func (m TextClassificationModelDetails) GetLanguageCode() *string { return m.LanguageCode } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/text_classification_model_evaluation_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/text_classification_model_evaluation_result.go index 4a4e407d813..b563e0c55c1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/text_classification_model_evaluation_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ailanguage/text_classification_model_evaluation_result.go @@ -39,12 +39,12 @@ type TextClassificationModelEvaluationResult struct { PredictedLabels []string `mandatory:"false" json:"predictedLabels"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m TextClassificationModelEvaluationResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m TextClassificationModelEvaluationResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/aivision_aiservicevision_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/aivision_aiservicevision_client.go index 63d20972c47..d7f38a35dde 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/aivision_aiservicevision_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/aivision_aiservicevision_client.go @@ -93,7 +93,7 @@ func (client *AIServiceVisionClient) ConfigurationProvider() *common.Configurati // AnalyzeDocument Perform different types of image analysis. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/AnalyzeDocument.go.html to see an example of how to use AnalyzeDocument API. // A default retry strategy applies to this operation AnalyzeDocument() @@ -151,7 +151,7 @@ func (client AIServiceVisionClient) analyzeDocument(ctx context.Context, request // AnalyzeImage Perform different types of image analysis. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/AnalyzeImage.go.html to see an example of how to use AnalyzeImage API. // A default retry strategy applies to this operation AnalyzeImage() @@ -209,7 +209,7 @@ func (client AIServiceVisionClient) analyzeImage(ctx context.Context, request co // CancelDocumentJob Cancel a document batch job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/CancelDocumentJob.go.html to see an example of how to use CancelDocumentJob API. func (client AIServiceVisionClient) CancelDocumentJob(ctx context.Context, request CancelDocumentJobRequest) (response CancelDocumentJobResponse, err error) { @@ -266,7 +266,7 @@ func (client AIServiceVisionClient) cancelDocumentJob(ctx context.Context, reque // CancelImageJob Cancel an image batch job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/CancelImageJob.go.html to see an example of how to use CancelImageJob API. func (client AIServiceVisionClient) CancelImageJob(ctx context.Context, request CancelImageJobRequest) (response CancelImageJobResponse, err error) { @@ -323,7 +323,7 @@ func (client AIServiceVisionClient) cancelImageJob(ctx context.Context, request // CancelWorkRequest Cancel the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. func (client AIServiceVisionClient) CancelWorkRequest(ctx context.Context, request CancelWorkRequestRequest) (response CancelWorkRequestResponse, err error) { @@ -380,7 +380,7 @@ func (client AIServiceVisionClient) cancelWorkRequest(ctx context.Context, reque // ChangeModelCompartment Moves a model from one compartment to another. When provided, If-Match is checked against the ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/ChangeModelCompartment.go.html to see an example of how to use ChangeModelCompartment API. func (client AIServiceVisionClient) ChangeModelCompartment(ctx context.Context, request ChangeModelCompartmentRequest) (response ChangeModelCompartmentResponse, err error) { @@ -437,7 +437,7 @@ func (client AIServiceVisionClient) changeModelCompartment(ctx context.Context, // ChangeProjectCompartment Move a project from one compartment to another. When provided, If-Match is checked against the ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/ChangeProjectCompartment.go.html to see an example of how to use ChangeProjectCompartment API. func (client AIServiceVisionClient) ChangeProjectCompartment(ctx context.Context, request ChangeProjectCompartmentRequest) (response ChangeProjectCompartmentResponse, err error) { @@ -494,7 +494,7 @@ func (client AIServiceVisionClient) changeProjectCompartment(ctx context.Context // CreateDocumentJob Create a document analysis batch job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/CreateDocumentJob.go.html to see an example of how to use CreateDocumentJob API. func (client AIServiceVisionClient) CreateDocumentJob(ctx context.Context, request CreateDocumentJobRequest) (response CreateDocumentJobResponse, err error) { @@ -556,7 +556,7 @@ func (client AIServiceVisionClient) createDocumentJob(ctx context.Context, reque // CreateImageJob Create an image analysis batch job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/CreateImageJob.go.html to see an example of how to use CreateImageJob API. func (client AIServiceVisionClient) CreateImageJob(ctx context.Context, request CreateImageJobRequest) (response CreateImageJobResponse, err error) { @@ -618,7 +618,7 @@ func (client AIServiceVisionClient) createImageJob(ctx context.Context, request // CreateModel Create a new model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/CreateModel.go.html to see an example of how to use CreateModel API. func (client AIServiceVisionClient) CreateModel(ctx context.Context, request CreateModelRequest) (response CreateModelResponse, err error) { @@ -680,7 +680,7 @@ func (client AIServiceVisionClient) createModel(ctx context.Context, request com // CreateProject Create a new project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/CreateProject.go.html to see an example of how to use CreateProject API. func (client AIServiceVisionClient) CreateProject(ctx context.Context, request CreateProjectRequest) (response CreateProjectResponse, err error) { @@ -742,7 +742,7 @@ func (client AIServiceVisionClient) createProject(ctx context.Context, request c // DeleteModel Delete a model by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/DeleteModel.go.html to see an example of how to use DeleteModel API. func (client AIServiceVisionClient) DeleteModel(ctx context.Context, request DeleteModelRequest) (response DeleteModelResponse, err error) { @@ -799,7 +799,7 @@ func (client AIServiceVisionClient) deleteModel(ctx context.Context, request com // DeleteProject Delete a project by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/DeleteProject.go.html to see an example of how to use DeleteProject API. func (client AIServiceVisionClient) DeleteProject(ctx context.Context, request DeleteProjectRequest) (response DeleteProjectResponse, err error) { @@ -856,7 +856,7 @@ func (client AIServiceVisionClient) deleteProject(ctx context.Context, request c // GetDocumentJob Get details of a document batch job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/GetDocumentJob.go.html to see an example of how to use GetDocumentJob API. func (client AIServiceVisionClient) GetDocumentJob(ctx context.Context, request GetDocumentJobRequest) (response GetDocumentJobResponse, err error) { @@ -913,7 +913,7 @@ func (client AIServiceVisionClient) getDocumentJob(ctx context.Context, request // GetImageJob Get details of an image batch job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/GetImageJob.go.html to see an example of how to use GetImageJob API. func (client AIServiceVisionClient) GetImageJob(ctx context.Context, request GetImageJobRequest) (response GetImageJobResponse, err error) { @@ -970,7 +970,7 @@ func (client AIServiceVisionClient) getImageJob(ctx context.Context, request com // GetModel Get a model by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/GetModel.go.html to see an example of how to use GetModel API. func (client AIServiceVisionClient) GetModel(ctx context.Context, request GetModelRequest) (response GetModelResponse, err error) { @@ -1027,7 +1027,7 @@ func (client AIServiceVisionClient) getModel(ctx context.Context, request common // GetProject Get a project by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/GetProject.go.html to see an example of how to use GetProject API. func (client AIServiceVisionClient) GetProject(ctx context.Context, request GetProjectRequest) (response GetProjectResponse, err error) { @@ -1084,7 +1084,7 @@ func (client AIServiceVisionClient) getProject(ctx context.Context, request comm // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client AIServiceVisionClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -1141,7 +1141,7 @@ func (client AIServiceVisionClient) getWorkRequest(ctx context.Context, request // ListModels Returns a list of models in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/ListModels.go.html to see an example of how to use ListModels API. func (client AIServiceVisionClient) ListModels(ctx context.Context, request ListModelsRequest) (response ListModelsResponse, err error) { @@ -1198,7 +1198,7 @@ func (client AIServiceVisionClient) listModels(ctx context.Context, request comm // ListProjects Returns a list of projects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/ListProjects.go.html to see an example of how to use ListProjects API. func (client AIServiceVisionClient) ListProjects(ctx context.Context, request ListProjectsRequest) (response ListProjectsResponse, err error) { @@ -1255,7 +1255,7 @@ func (client AIServiceVisionClient) listProjects(ctx context.Context, request co // ListWorkRequestErrors Returns a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client AIServiceVisionClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -1312,7 +1312,7 @@ func (client AIServiceVisionClient) listWorkRequestErrors(ctx context.Context, r // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client AIServiceVisionClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -1369,7 +1369,7 @@ func (client AIServiceVisionClient) listWorkRequestLogs(ctx context.Context, req // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client AIServiceVisionClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -1426,7 +1426,7 @@ func (client AIServiceVisionClient) listWorkRequests(ctx context.Context, reques // UpdateModel Updates the model metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/UpdateModel.go.html to see an example of how to use UpdateModel API. func (client AIServiceVisionClient) UpdateModel(ctx context.Context, request UpdateModelRequest) (response UpdateModelResponse, err error) { @@ -1483,7 +1483,7 @@ func (client AIServiceVisionClient) updateModel(ctx context.Context, request com // UpdateProject Update the project metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/aivision/UpdateProject.go.html to see an example of how to use UpdateProject API. func (client AIServiceVisionClient) UpdateProject(ctx context.Context, request UpdateProjectRequest) (response UpdateProjectResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_array.go b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_array.go index 815e81ee51a..525545b902d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_array.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_array.go @@ -33,22 +33,22 @@ type ValueArray struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueArray) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueArray) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueArray) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueArray) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_date.go b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_date.go index ff5738c1edf..83988c09d96 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_date.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_date.go @@ -34,22 +34,22 @@ type ValueDate struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueDate) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueDate) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueDate) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueDate) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_integer.go b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_integer.go index 8e12afb2f2a..38fab5ba967 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_integer.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_integer.go @@ -34,22 +34,22 @@ type ValueInteger struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueInteger) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueInteger) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueInteger) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueInteger) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_number.go b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_number.go index 638d5785343..82afa44e74c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_number.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_number.go @@ -34,22 +34,22 @@ type ValueNumber struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueNumber) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueNumber) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueNumber) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueNumber) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_phone_number.go b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_phone_number.go index eb8a1a000c1..322983cdaa8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_phone_number.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_phone_number.go @@ -34,22 +34,22 @@ type ValuePhoneNumber struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValuePhoneNumber) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValuePhoneNumber) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValuePhoneNumber) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValuePhoneNumber) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_string.go b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_string.go index c396aa87744..937e6806c9b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_string.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_string.go @@ -34,22 +34,22 @@ type ValueString struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueString) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueString) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueString) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueString) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_time.go b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_time.go index 134e62ef7a0..ed30d96532d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_time.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/aivision/value_time.go @@ -34,22 +34,22 @@ type ValueTime struct { Text *string `mandatory:"false" json:"text"` } -//GetText returns Text +// GetText returns Text func (m ValueTime) GetText() *string { return m.Text } -//GetConfidence returns Confidence +// GetConfidence returns Confidence func (m ValueTime) GetConfidence() *float32 { return m.Confidence } -//GetBoundingPolygon returns BoundingPolygon +// GetBoundingPolygon returns BoundingPolygon func (m ValueTime) GetBoundingPolygon() *BoundingPolygon { return m.BoundingPolygon } -//GetWordIndexes returns WordIndexes +// GetWordIndexes returns WordIndexes func (m ValueTime) GetWordIndexes() []int { return m.WordIndexes } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/analytics/analytics_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/analytics/analytics_client.go index a666cbca95f..fbaef2ece8f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/analytics/analytics_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/analytics/analytics_client.go @@ -94,7 +94,7 @@ func (client *AnalyticsClient) ConfigurationProvider() *common.ConfigurationProv // ChangeAnalyticsInstanceCompartment Change the compartment of an Analytics instance. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/ChangeAnalyticsInstanceCompartment.go.html to see an example of how to use ChangeAnalyticsInstanceCompartment API. // A default retry strategy applies to this operation ChangeAnalyticsInstanceCompartment() @@ -158,7 +158,7 @@ func (client AnalyticsClient) changeAnalyticsInstanceCompartment(ctx context.Con // ChangeAnalyticsInstanceNetworkEndpoint Change an Analytics instance network endpoint. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/ChangeAnalyticsInstanceNetworkEndpoint.go.html to see an example of how to use ChangeAnalyticsInstanceNetworkEndpoint API. // A default retry strategy applies to this operation ChangeAnalyticsInstanceNetworkEndpoint() @@ -222,7 +222,7 @@ func (client AnalyticsClient) changeAnalyticsInstanceNetworkEndpoint(ctx context // CreateAnalyticsInstance Create a new AnalyticsInstance in the specified compartment. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/CreateAnalyticsInstance.go.html to see an example of how to use CreateAnalyticsInstance API. // A default retry strategy applies to this operation CreateAnalyticsInstance() @@ -286,7 +286,7 @@ func (client AnalyticsClient) createAnalyticsInstance(ctx context.Context, reque // CreatePrivateAccessChannel Create an Private access Channel for the Analytics instance. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/CreatePrivateAccessChannel.go.html to see an example of how to use CreatePrivateAccessChannel API. // A default retry strategy applies to this operation CreatePrivateAccessChannel() @@ -350,7 +350,7 @@ func (client AnalyticsClient) createPrivateAccessChannel(ctx context.Context, re // CreateVanityUrl Allows specifying a custom host name to be used to access the analytics instance. This requires prior setup of DNS entry and certificate // for this host. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/CreateVanityUrl.go.html to see an example of how to use CreateVanityUrl API. // A default retry strategy applies to this operation CreateVanityUrl() @@ -414,7 +414,7 @@ func (client AnalyticsClient) createVanityUrl(ctx context.Context, request commo // DeleteAnalyticsInstance Terminates the specified Analytics instance. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/DeleteAnalyticsInstance.go.html to see an example of how to use DeleteAnalyticsInstance API. // A default retry strategy applies to this operation DeleteAnalyticsInstance() @@ -477,7 +477,7 @@ func (client AnalyticsClient) deleteAnalyticsInstance(ctx context.Context, reque // DeletePrivateAccessChannel Delete an Analytics instance's Private access channel with the given unique identifier key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/DeletePrivateAccessChannel.go.html to see an example of how to use DeletePrivateAccessChannel API. // A default retry strategy applies to this operation DeletePrivateAccessChannel() @@ -540,7 +540,7 @@ func (client AnalyticsClient) deletePrivateAccessChannel(ctx context.Context, re // DeleteVanityUrl Allows deleting a previously created vanity url. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/DeleteVanityUrl.go.html to see an example of how to use DeleteVanityUrl API. // A default retry strategy applies to this operation DeleteVanityUrl() @@ -603,7 +603,7 @@ func (client AnalyticsClient) deleteVanityUrl(ctx context.Context, request commo // DeleteWorkRequest Cancel a work request that has not started yet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/DeleteWorkRequest.go.html to see an example of how to use DeleteWorkRequest API. func (client AnalyticsClient) DeleteWorkRequest(ctx context.Context, request DeleteWorkRequestRequest) (response DeleteWorkRequestResponse, err error) { @@ -660,7 +660,7 @@ func (client AnalyticsClient) deleteWorkRequest(ctx context.Context, request com // GetAnalyticsInstance Info for a specific Analytics instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/GetAnalyticsInstance.go.html to see an example of how to use GetAnalyticsInstance API. // A default retry strategy applies to this operation GetAnalyticsInstance() @@ -718,7 +718,7 @@ func (client AnalyticsClient) getAnalyticsInstance(ctx context.Context, request // GetPrivateAccessChannel Retrieve private access channel in the specified Analytics Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/GetPrivateAccessChannel.go.html to see an example of how to use GetPrivateAccessChannel API. // A default retry strategy applies to this operation GetPrivateAccessChannel() @@ -776,7 +776,7 @@ func (client AnalyticsClient) getPrivateAccessChannel(ctx context.Context, reque // GetWorkRequest Get the details of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -834,7 +834,7 @@ func (client AnalyticsClient) getWorkRequest(ctx context.Context, request common // ListAnalyticsInstances List Analytics instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/ListAnalyticsInstances.go.html to see an example of how to use ListAnalyticsInstances API. // A default retry strategy applies to this operation ListAnalyticsInstances() @@ -892,7 +892,7 @@ func (client AnalyticsClient) listAnalyticsInstances(ctx context.Context, reques // ListWorkRequestErrors Get the errors of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -950,7 +950,7 @@ func (client AnalyticsClient) listWorkRequestErrors(ctx context.Context, request // ListWorkRequestLogs Get the logs of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1008,7 +1008,7 @@ func (client AnalyticsClient) listWorkRequestLogs(ctx context.Context, request c // ListWorkRequests List all work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1067,7 +1067,7 @@ func (client AnalyticsClient) listWorkRequests(ctx context.Context, request comm // ScaleAnalyticsInstance Scale an Analytics instance up or down. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/ScaleAnalyticsInstance.go.html to see an example of how to use ScaleAnalyticsInstance API. // A default retry strategy applies to this operation ScaleAnalyticsInstance() @@ -1130,7 +1130,7 @@ func (client AnalyticsClient) scaleAnalyticsInstance(ctx context.Context, reques // SetKmsKey Encrypts the customer data of this Analytics instance using either a customer OCI Vault Key or Oracle managed default key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/SetKmsKey.go.html to see an example of how to use SetKmsKey API. // A default retry strategy applies to this operation SetKmsKey() @@ -1194,7 +1194,7 @@ func (client AnalyticsClient) setKmsKey(ctx context.Context, request common.OCIR // StartAnalyticsInstance Starts the specified Analytics instance. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/StartAnalyticsInstance.go.html to see an example of how to use StartAnalyticsInstance API. // A default retry strategy applies to this operation StartAnalyticsInstance() @@ -1258,7 +1258,7 @@ func (client AnalyticsClient) startAnalyticsInstance(ctx context.Context, reques // StopAnalyticsInstance Stop the specified Analytics instance. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/StopAnalyticsInstance.go.html to see an example of how to use StopAnalyticsInstance API. // A default retry strategy applies to this operation StopAnalyticsInstance() @@ -1322,7 +1322,7 @@ func (client AnalyticsClient) stopAnalyticsInstance(ctx context.Context, request // UpdateAnalyticsInstance Updates certain fields of an Analytics instance. Fields that are not provided in the // request will not be updated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/UpdateAnalyticsInstance.go.html to see an example of how to use UpdateAnalyticsInstance API. func (client AnalyticsClient) UpdateAnalyticsInstance(ctx context.Context, request UpdateAnalyticsInstanceRequest) (response UpdateAnalyticsInstanceResponse, err error) { @@ -1379,7 +1379,7 @@ func (client AnalyticsClient) updateAnalyticsInstance(ctx context.Context, reque // UpdatePrivateAccessChannel Update the Private Access Channel with the given unique identifier key in the specified Analytics Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/UpdatePrivateAccessChannel.go.html to see an example of how to use UpdatePrivateAccessChannel API. // A default retry strategy applies to this operation UpdatePrivateAccessChannel() @@ -1442,7 +1442,7 @@ func (client AnalyticsClient) updatePrivateAccessChannel(ctx context.Context, re // UpdateVanityUrl Allows uploading a new certificate for a vanity url, which will have to be done when the current certificate is expiring. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/analytics/UpdateVanityUrl.go.html to see an example of how to use UpdateVanityUrl API. // A default retry strategy applies to this operation UpdateVanityUrl() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcement.go b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcement.go index 05424375257..03caeb28305 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcement.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcement.go @@ -98,97 +98,97 @@ type Announcement struct { PlatformType BaseAnnouncementPlatformTypeEnum `mandatory:"false" json:"platformType,omitempty"` } -//GetId returns Id +// GetId returns Id func (m Announcement) GetId() *string { return m.Id } -//GetReferenceTicketNumber returns ReferenceTicketNumber +// GetReferenceTicketNumber returns ReferenceTicketNumber func (m Announcement) GetReferenceTicketNumber() *string { return m.ReferenceTicketNumber } -//GetSummary returns Summary +// GetSummary returns Summary func (m Announcement) GetSummary() *string { return m.Summary } -//GetTimeOneTitle returns TimeOneTitle +// GetTimeOneTitle returns TimeOneTitle func (m Announcement) GetTimeOneTitle() *string { return m.TimeOneTitle } -//GetTimeOneType returns TimeOneType +// GetTimeOneType returns TimeOneType func (m Announcement) GetTimeOneType() BaseAnnouncementTimeOneTypeEnum { return m.TimeOneType } -//GetTimeOneValue returns TimeOneValue +// GetTimeOneValue returns TimeOneValue func (m Announcement) GetTimeOneValue() *common.SDKTime { return m.TimeOneValue } -//GetTimeTwoTitle returns TimeTwoTitle +// GetTimeTwoTitle returns TimeTwoTitle func (m Announcement) GetTimeTwoTitle() *string { return m.TimeTwoTitle } -//GetTimeTwoType returns TimeTwoType +// GetTimeTwoType returns TimeTwoType func (m Announcement) GetTimeTwoType() BaseAnnouncementTimeTwoTypeEnum { return m.TimeTwoType } -//GetTimeTwoValue returns TimeTwoValue +// GetTimeTwoValue returns TimeTwoValue func (m Announcement) GetTimeTwoValue() *common.SDKTime { return m.TimeTwoValue } -//GetServices returns Services +// GetServices returns Services func (m Announcement) GetServices() []string { return m.Services } -//GetAffectedRegions returns AffectedRegions +// GetAffectedRegions returns AffectedRegions func (m Announcement) GetAffectedRegions() []string { return m.AffectedRegions } -//GetAnnouncementType returns AnnouncementType +// GetAnnouncementType returns AnnouncementType func (m Announcement) GetAnnouncementType() BaseAnnouncementAnnouncementTypeEnum { return m.AnnouncementType } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m Announcement) GetLifecycleState() BaseAnnouncementLifecycleStateEnum { return m.LifecycleState } -//GetIsBanner returns IsBanner +// GetIsBanner returns IsBanner func (m Announcement) GetIsBanner() *bool { return m.IsBanner } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m Announcement) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m Announcement) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetEnvironmentName returns EnvironmentName +// GetEnvironmentName returns EnvironmentName func (m Announcement) GetEnvironmentName() *string { return m.EnvironmentName } -//GetPlatformType returns PlatformType +// GetPlatformType returns PlatformType func (m Announcement) GetPlatformType() BaseAnnouncementPlatformTypeEnum { return m.PlatformType } -//GetChainId returns ChainId +// GetChainId returns ChainId func (m Announcement) GetChainId() *string { return m.ChainId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcement_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcement_summary.go index 9ff9790b7ae..98ceecfd735 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcement_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcement_summary.go @@ -86,97 +86,97 @@ type AnnouncementSummary struct { PlatformType BaseAnnouncementPlatformTypeEnum `mandatory:"false" json:"platformType,omitempty"` } -//GetId returns Id +// GetId returns Id func (m AnnouncementSummary) GetId() *string { return m.Id } -//GetReferenceTicketNumber returns ReferenceTicketNumber +// GetReferenceTicketNumber returns ReferenceTicketNumber func (m AnnouncementSummary) GetReferenceTicketNumber() *string { return m.ReferenceTicketNumber } -//GetSummary returns Summary +// GetSummary returns Summary func (m AnnouncementSummary) GetSummary() *string { return m.Summary } -//GetTimeOneTitle returns TimeOneTitle +// GetTimeOneTitle returns TimeOneTitle func (m AnnouncementSummary) GetTimeOneTitle() *string { return m.TimeOneTitle } -//GetTimeOneType returns TimeOneType +// GetTimeOneType returns TimeOneType func (m AnnouncementSummary) GetTimeOneType() BaseAnnouncementTimeOneTypeEnum { return m.TimeOneType } -//GetTimeOneValue returns TimeOneValue +// GetTimeOneValue returns TimeOneValue func (m AnnouncementSummary) GetTimeOneValue() *common.SDKTime { return m.TimeOneValue } -//GetTimeTwoTitle returns TimeTwoTitle +// GetTimeTwoTitle returns TimeTwoTitle func (m AnnouncementSummary) GetTimeTwoTitle() *string { return m.TimeTwoTitle } -//GetTimeTwoType returns TimeTwoType +// GetTimeTwoType returns TimeTwoType func (m AnnouncementSummary) GetTimeTwoType() BaseAnnouncementTimeTwoTypeEnum { return m.TimeTwoType } -//GetTimeTwoValue returns TimeTwoValue +// GetTimeTwoValue returns TimeTwoValue func (m AnnouncementSummary) GetTimeTwoValue() *common.SDKTime { return m.TimeTwoValue } -//GetServices returns Services +// GetServices returns Services func (m AnnouncementSummary) GetServices() []string { return m.Services } -//GetAffectedRegions returns AffectedRegions +// GetAffectedRegions returns AffectedRegions func (m AnnouncementSummary) GetAffectedRegions() []string { return m.AffectedRegions } -//GetAnnouncementType returns AnnouncementType +// GetAnnouncementType returns AnnouncementType func (m AnnouncementSummary) GetAnnouncementType() BaseAnnouncementAnnouncementTypeEnum { return m.AnnouncementType } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AnnouncementSummary) GetLifecycleState() BaseAnnouncementLifecycleStateEnum { return m.LifecycleState } -//GetIsBanner returns IsBanner +// GetIsBanner returns IsBanner func (m AnnouncementSummary) GetIsBanner() *bool { return m.IsBanner } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AnnouncementSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AnnouncementSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetEnvironmentName returns EnvironmentName +// GetEnvironmentName returns EnvironmentName func (m AnnouncementSummary) GetEnvironmentName() *string { return m.EnvironmentName } -//GetPlatformType returns PlatformType +// GetPlatformType returns PlatformType func (m AnnouncementSummary) GetPlatformType() BaseAnnouncementPlatformTypeEnum { return m.PlatformType } -//GetChainId returns ChainId +// GetChainId returns ChainId func (m AnnouncementSummary) GetChainId() *string { return m.ChainId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcements_preferences.go b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcements_preferences.go index 23edd44b9db..763158fbfc8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcements_preferences.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcements_preferences.go @@ -43,37 +43,37 @@ type AnnouncementsPreferences struct { PreferenceType BaseCreateAnnouncementsPreferencesDetailsPreferenceTypeEnum `mandatory:"false" json:"preferenceType,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AnnouncementsPreferences) GetCompartmentId() *string { return m.CompartmentId } -//GetId returns Id +// GetId returns Id func (m AnnouncementsPreferences) GetId() *string { return m.Id } -//GetIsUnsubscribed returns IsUnsubscribed +// GetIsUnsubscribed returns IsUnsubscribed func (m AnnouncementsPreferences) GetIsUnsubscribed() *bool { return m.IsUnsubscribed } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AnnouncementsPreferences) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AnnouncementsPreferences) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetPreferenceType returns PreferenceType +// GetPreferenceType returns PreferenceType func (m AnnouncementsPreferences) GetPreferenceType() BaseCreateAnnouncementsPreferencesDetailsPreferenceTypeEnum { return m.PreferenceType } -//GetPreferredTimeZone returns PreferredTimeZone +// GetPreferredTimeZone returns PreferredTimeZone func (m AnnouncementsPreferences) GetPreferredTimeZone() *string { return m.PreferredTimeZone } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcements_preferences_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcements_preferences_summary.go index 8951795173c..0dcb143a82e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcements_preferences_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcements_preferences_summary.go @@ -43,37 +43,37 @@ type AnnouncementsPreferencesSummary struct { PreferenceType BaseCreateAnnouncementsPreferencesDetailsPreferenceTypeEnum `mandatory:"false" json:"preferenceType,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AnnouncementsPreferencesSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetId returns Id +// GetId returns Id func (m AnnouncementsPreferencesSummary) GetId() *string { return m.Id } -//GetIsUnsubscribed returns IsUnsubscribed +// GetIsUnsubscribed returns IsUnsubscribed func (m AnnouncementsPreferencesSummary) GetIsUnsubscribed() *bool { return m.IsUnsubscribed } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AnnouncementsPreferencesSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AnnouncementsPreferencesSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetPreferenceType returns PreferenceType +// GetPreferenceType returns PreferenceType func (m AnnouncementsPreferencesSummary) GetPreferenceType() BaseCreateAnnouncementsPreferencesDetailsPreferenceTypeEnum { return m.PreferenceType } -//GetPreferredTimeZone returns PreferredTimeZone +// GetPreferredTimeZone returns PreferredTimeZone func (m AnnouncementsPreferencesSummary) GetPreferredTimeZone() *string { return m.PreferredTimeZone } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcement_client.go index f7be72e515f..f63a8f5deeb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcement_client.go @@ -94,7 +94,7 @@ func (client *AnnouncementClient) ConfigurationProvider() *common.ConfigurationP // GetAnnouncement Gets the details of a specific announcement. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/GetAnnouncement.go.html to see an example of how to use GetAnnouncement API. func (client AnnouncementClient) GetAnnouncement(ctx context.Context, request GetAnnouncementRequest) (response GetAnnouncementResponse, err error) { @@ -152,7 +152,7 @@ func (client AnnouncementClient) getAnnouncement(ctx context.Context, request co // GetAnnouncementUserStatus Gets information about whether a specific announcement was acknowledged by a user. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/GetAnnouncementUserStatus.go.html to see an example of how to use GetAnnouncementUserStatus API. func (client AnnouncementClient) GetAnnouncementUserStatus(ctx context.Context, request GetAnnouncementUserStatusRequest) (response GetAnnouncementUserStatusResponse, err error) { @@ -210,7 +210,7 @@ func (client AnnouncementClient) getAnnouncementUserStatus(ctx context.Context, // ListAnnouncements Gets a list of announcements for the current tenancy. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/ListAnnouncements.go.html to see an example of how to use ListAnnouncements API. func (client AnnouncementClient) ListAnnouncements(ctx context.Context, request ListAnnouncementsRequest) (response ListAnnouncementsResponse, err error) { @@ -268,7 +268,7 @@ func (client AnnouncementClient) listAnnouncements(ctx context.Context, request // UpdateAnnouncementUserStatus Updates the status of the specified announcement with regard to whether it has been marked as read. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/UpdateAnnouncementUserStatus.go.html to see an example of how to use UpdateAnnouncementUserStatus API. func (client AnnouncementClient) UpdateAnnouncementUserStatus(ctx context.Context, request UpdateAnnouncementUserStatusRequest) (response UpdateAnnouncementUserStatusResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcementspreferences_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcementspreferences_client.go index 678853f053a..d91a459bd10 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcementspreferences_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcementspreferences_client.go @@ -94,7 +94,7 @@ func (client *AnnouncementsPreferencesClient) ConfigurationProvider() *common.Co // CreateAnnouncementsPreference Creates a request that specifies preferences for the tenancy regarding receiving announcements by email. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/CreateAnnouncementsPreference.go.html to see an example of how to use CreateAnnouncementsPreference API. func (client AnnouncementsPreferencesClient) CreateAnnouncementsPreference(ctx context.Context, request CreateAnnouncementsPreferenceRequest) (response CreateAnnouncementsPreferenceResponse, err error) { @@ -157,7 +157,7 @@ func (client AnnouncementsPreferencesClient) createAnnouncementsPreference(ctx c // GetAnnouncementsPreference Gets the current preferences of the tenancy regarding receiving announcements by email. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/GetAnnouncementsPreference.go.html to see an example of how to use GetAnnouncementsPreference API. func (client AnnouncementsPreferencesClient) GetAnnouncementsPreference(ctx context.Context, request GetAnnouncementsPreferenceRequest) (response GetAnnouncementsPreferenceResponse, err error) { @@ -215,7 +215,7 @@ func (client AnnouncementsPreferencesClient) getAnnouncementsPreference(ctx cont // ListAnnouncementsPreferences Gets the current preferences of the tenancy regarding receiving announcements by email. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/ListAnnouncementsPreferences.go.html to see an example of how to use ListAnnouncementsPreferences API. func (client AnnouncementsPreferencesClient) ListAnnouncementsPreferences(ctx context.Context, request ListAnnouncementsPreferencesRequest) (response ListAnnouncementsPreferencesResponse, err error) { @@ -273,7 +273,7 @@ func (client AnnouncementsPreferencesClient) listAnnouncementsPreferences(ctx co // UpdateAnnouncementsPreference Updates the preferences of the tenancy regarding receiving announcements by email. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/UpdateAnnouncementsPreference.go.html to see an example of how to use UpdateAnnouncementsPreference API. func (client AnnouncementsPreferencesClient) UpdateAnnouncementsPreference(ctx context.Context, request UpdateAnnouncementsPreferenceRequest) (response UpdateAnnouncementsPreferenceResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcementsubscription_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcementsubscription_client.go index 3faf44e5fce..cd3f9e7bcfc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcementsubscription_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/announcementsservice_announcementsubscription_client.go @@ -94,7 +94,7 @@ func (client *AnnouncementSubscriptionClient) ConfigurationProvider() *common.Co // ChangeAnnouncementSubscriptionCompartment Moves the specified announcement subscription from one compartment to another compartment. When provided, If-Match is checked against ETag values of the resource. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/ChangeAnnouncementSubscriptionCompartment.go.html to see an example of how to use ChangeAnnouncementSubscriptionCompartment API. func (client AnnouncementSubscriptionClient) ChangeAnnouncementSubscriptionCompartment(ctx context.Context, request ChangeAnnouncementSubscriptionCompartmentRequest) (response ChangeAnnouncementSubscriptionCompartmentResponse, err error) { @@ -152,7 +152,7 @@ func (client AnnouncementSubscriptionClient) changeAnnouncementSubscriptionCompa // CreateAnnouncementSubscription Creates a new announcement subscription. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/CreateAnnouncementSubscription.go.html to see an example of how to use CreateAnnouncementSubscription API. func (client AnnouncementSubscriptionClient) CreateAnnouncementSubscription(ctx context.Context, request CreateAnnouncementSubscriptionRequest) (response CreateAnnouncementSubscriptionResponse, err error) { @@ -215,7 +215,7 @@ func (client AnnouncementSubscriptionClient) createAnnouncementSubscription(ctx // CreateFilterGroup Creates a new filter group in the specified announcement subscription. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/CreateFilterGroup.go.html to see an example of how to use CreateFilterGroup API. func (client AnnouncementSubscriptionClient) CreateFilterGroup(ctx context.Context, request CreateFilterGroupRequest) (response CreateFilterGroupResponse, err error) { @@ -278,7 +278,7 @@ func (client AnnouncementSubscriptionClient) createFilterGroup(ctx context.Conte // DeleteAnnouncementSubscription Deletes the specified announcement subscription. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/DeleteAnnouncementSubscription.go.html to see an example of how to use DeleteAnnouncementSubscription API. func (client AnnouncementSubscriptionClient) DeleteAnnouncementSubscription(ctx context.Context, request DeleteAnnouncementSubscriptionRequest) (response DeleteAnnouncementSubscriptionResponse, err error) { @@ -336,7 +336,7 @@ func (client AnnouncementSubscriptionClient) deleteAnnouncementSubscription(ctx // DeleteFilterGroup Deletes a filter group in the specified announcement subscription. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/DeleteFilterGroup.go.html to see an example of how to use DeleteFilterGroup API. func (client AnnouncementSubscriptionClient) DeleteFilterGroup(ctx context.Context, request DeleteFilterGroupRequest) (response DeleteFilterGroupResponse, err error) { @@ -394,7 +394,7 @@ func (client AnnouncementSubscriptionClient) deleteFilterGroup(ctx context.Conte // GetAnnouncementSubscription Gets the specified announcement subscription. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/GetAnnouncementSubscription.go.html to see an example of how to use GetAnnouncementSubscription API. func (client AnnouncementSubscriptionClient) GetAnnouncementSubscription(ctx context.Context, request GetAnnouncementSubscriptionRequest) (response GetAnnouncementSubscriptionResponse, err error) { @@ -452,7 +452,7 @@ func (client AnnouncementSubscriptionClient) getAnnouncementSubscription(ctx con // ListAnnouncementSubscriptions Gets a list of all announcement subscriptions in the specified compartment. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/ListAnnouncementSubscriptions.go.html to see an example of how to use ListAnnouncementSubscriptions API. func (client AnnouncementSubscriptionClient) ListAnnouncementSubscriptions(ctx context.Context, request ListAnnouncementSubscriptionsRequest) (response ListAnnouncementSubscriptionsResponse, err error) { @@ -510,7 +510,7 @@ func (client AnnouncementSubscriptionClient) listAnnouncementSubscriptions(ctx c // UpdateAnnouncementSubscription Updates the specified announcement subscription. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/UpdateAnnouncementSubscription.go.html to see an example of how to use UpdateAnnouncementSubscription API. func (client AnnouncementSubscriptionClient) UpdateAnnouncementSubscription(ctx context.Context, request UpdateAnnouncementSubscriptionRequest) (response UpdateAnnouncementSubscriptionResponse, err error) { @@ -568,7 +568,7 @@ func (client AnnouncementSubscriptionClient) updateAnnouncementSubscription(ctx // UpdateFilterGroup Updates a filter group in the specified announcement subscription. // This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/announcementsservice/UpdateFilterGroup.go.html to see an example of how to use UpdateFilterGroup API. func (client AnnouncementSubscriptionClient) UpdateFilterGroup(ctx context.Context, request UpdateFilterGroupRequest) (response UpdateFilterGroupResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/create_announcements_preferences_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/create_announcements_preferences_details.go index cb2e59224b0..dc0da3701a2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/create_announcements_preferences_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/create_announcements_preferences_details.go @@ -34,22 +34,22 @@ type CreateAnnouncementsPreferencesDetails struct { PreferenceType BaseCreateAnnouncementsPreferencesDetailsPreferenceTypeEnum `mandatory:"true" json:"preferenceType"` } -//GetIsUnsubscribed returns IsUnsubscribed +// GetIsUnsubscribed returns IsUnsubscribed func (m CreateAnnouncementsPreferencesDetails) GetIsUnsubscribed() *bool { return m.IsUnsubscribed } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAnnouncementsPreferencesDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetPreferenceType returns PreferenceType +// GetPreferenceType returns PreferenceType func (m CreateAnnouncementsPreferencesDetails) GetPreferenceType() BaseCreateAnnouncementsPreferencesDetailsPreferenceTypeEnum { return m.PreferenceType } -//GetPreferredTimeZone returns PreferredTimeZone +// GetPreferredTimeZone returns PreferredTimeZone func (m CreateAnnouncementsPreferencesDetails) GetPreferredTimeZone() *string { return m.PreferredTimeZone } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/update_announcements_preferences_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/update_announcements_preferences_details.go index 129eb816f07..8d0530f5147 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/update_announcements_preferences_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/announcementsservice/update_announcements_preferences_details.go @@ -34,22 +34,22 @@ type UpdateAnnouncementsPreferencesDetails struct { PreferenceType BaseCreateAnnouncementsPreferencesDetailsPreferenceTypeEnum `mandatory:"true" json:"preferenceType"` } -//GetIsUnsubscribed returns IsUnsubscribed +// GetIsUnsubscribed returns IsUnsubscribed func (m UpdateAnnouncementsPreferencesDetails) GetIsUnsubscribed() *bool { return m.IsUnsubscribed } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m UpdateAnnouncementsPreferencesDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetPreferenceType returns PreferenceType +// GetPreferenceType returns PreferenceType func (m UpdateAnnouncementsPreferencesDetails) GetPreferenceType() BaseCreateAnnouncementsPreferencesDetailsPreferenceTypeEnum { return m.PreferenceType } -//GetPreferredTimeZone returns PreferredTimeZone +// GetPreferredTimeZone returns PreferredTimeZone func (m UpdateAnnouncementsPreferencesDetails) GetPreferredTimeZone() *string { return m.PreferredTimeZone } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/any_of_selection_key.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/any_of_selection_key.go index f133469e551..5f8b228a452 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/any_of_selection_key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/any_of_selection_key.go @@ -31,12 +31,12 @@ type AnyOfSelectionKey struct { Values []string `mandatory:"false" json:"values"` } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m AnyOfSelectionKey) GetIsDefault() *bool { return m.IsDefault } -//GetName returns Name +// GetName returns Name func (m AnyOfSelectionKey) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_client.go index 057de130c9b..9db97483b08 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_client.go @@ -95,7 +95,7 @@ func (client *ApiGatewayClient) ConfigurationProvider() *common.ConfigurationPro // ChangeApiCompartment Changes the API compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ChangeApiCompartment.go.html to see an example of how to use ChangeApiCompartment API. func (client ApiGatewayClient) ChangeApiCompartment(ctx context.Context, request ChangeApiCompartmentRequest) (response ChangeApiCompartmentResponse, err error) { @@ -157,7 +157,7 @@ func (client ApiGatewayClient) changeApiCompartment(ctx context.Context, request // ChangeCertificateCompartment Changes the certificate compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ChangeCertificateCompartment.go.html to see an example of how to use ChangeCertificateCompartment API. func (client ApiGatewayClient) ChangeCertificateCompartment(ctx context.Context, request ChangeCertificateCompartmentRequest) (response ChangeCertificateCompartmentResponse, err error) { @@ -219,7 +219,7 @@ func (client ApiGatewayClient) changeCertificateCompartment(ctx context.Context, // CreateApi Creates a new API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/CreateApi.go.html to see an example of how to use CreateApi API. // A default retry strategy applies to this operation CreateApi() @@ -282,7 +282,7 @@ func (client ApiGatewayClient) createApi(ctx context.Context, request common.OCI // CreateCertificate Creates a new Certificate. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/CreateCertificate.go.html to see an example of how to use CreateCertificate API. // A default retry strategy applies to this operation CreateCertificate() @@ -345,7 +345,7 @@ func (client ApiGatewayClient) createCertificate(ctx context.Context, request co // CreateSdk Creates a new SDK. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/CreateSdk.go.html to see an example of how to use CreateSdk API. // A default retry strategy applies to this operation CreateSdk() @@ -408,7 +408,7 @@ func (client ApiGatewayClient) createSdk(ctx context.Context, request common.OCI // DeleteApi Deletes the API with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/DeleteApi.go.html to see an example of how to use DeleteApi API. func (client ApiGatewayClient) DeleteApi(ctx context.Context, request DeleteApiRequest) (response DeleteApiResponse, err error) { @@ -465,7 +465,7 @@ func (client ApiGatewayClient) deleteApi(ctx context.Context, request common.OCI // DeleteCertificate Deletes the certificate with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/DeleteCertificate.go.html to see an example of how to use DeleteCertificate API. func (client ApiGatewayClient) DeleteCertificate(ctx context.Context, request DeleteCertificateRequest) (response DeleteCertificateResponse, err error) { @@ -522,7 +522,7 @@ func (client ApiGatewayClient) deleteCertificate(ctx context.Context, request co // DeleteSdk Deletes provided SDK. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/DeleteSdk.go.html to see an example of how to use DeleteSdk API. func (client ApiGatewayClient) DeleteSdk(ctx context.Context, request DeleteSdkRequest) (response DeleteSdkResponse, err error) { @@ -579,7 +579,7 @@ func (client ApiGatewayClient) deleteSdk(ctx context.Context, request common.OCI // GetApi Gets an API by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetApi.go.html to see an example of how to use GetApi API. // A default retry strategy applies to this operation GetApi() @@ -637,7 +637,7 @@ func (client ApiGatewayClient) getApi(ctx context.Context, request common.OCIReq // GetApiContent Get the raw API content. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetApiContent.go.html to see an example of how to use GetApiContent API. // A default retry strategy applies to this operation GetApiContent() @@ -694,7 +694,7 @@ func (client ApiGatewayClient) getApiContent(ctx context.Context, request common // GetApiDeploymentSpecification Gets an API Deployment specification by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetApiDeploymentSpecification.go.html to see an example of how to use GetApiDeploymentSpecification API. // A default retry strategy applies to this operation GetApiDeploymentSpecification() @@ -752,7 +752,7 @@ func (client ApiGatewayClient) getApiDeploymentSpecification(ctx context.Context // GetApiValidations Gets the API validation results. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetApiValidations.go.html to see an example of how to use GetApiValidations API. // A default retry strategy applies to this operation GetApiValidations() @@ -810,7 +810,7 @@ func (client ApiGatewayClient) getApiValidations(ctx context.Context, request co // GetCertificate Gets a certificate by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetCertificate.go.html to see an example of how to use GetCertificate API. // A default retry strategy applies to this operation GetCertificate() @@ -868,7 +868,7 @@ func (client ApiGatewayClient) getCertificate(ctx context.Context, request commo // GetSdk Return object store downloadable URL and metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetSdk.go.html to see an example of how to use GetSdk API. // A default retry strategy applies to this operation GetSdk() @@ -926,7 +926,7 @@ func (client ApiGatewayClient) getSdk(ctx context.Context, request common.OCIReq // ListApis Returns a list of APIs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListApis.go.html to see an example of how to use ListApis API. // A default retry strategy applies to this operation ListApis() @@ -984,7 +984,7 @@ func (client ApiGatewayClient) listApis(ctx context.Context, request common.OCIR // ListCertificates Returns a list of certificates. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListCertificates.go.html to see an example of how to use ListCertificates API. // A default retry strategy applies to this operation ListCertificates() @@ -1042,7 +1042,7 @@ func (client ApiGatewayClient) listCertificates(ctx context.Context, request com // ListSdkLanguageTypes Lists programming languages in which SDK can be generated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListSdkLanguageTypes.go.html to see an example of how to use ListSdkLanguageTypes API. // A default retry strategy applies to this operation ListSdkLanguageTypes() @@ -1100,7 +1100,7 @@ func (client ApiGatewayClient) listSdkLanguageTypes(ctx context.Context, request // ListSdks Returns list of generated SDKs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListSdks.go.html to see an example of how to use ListSdks API. // A default retry strategy applies to this operation ListSdks() @@ -1158,7 +1158,7 @@ func (client ApiGatewayClient) listSdks(ctx context.Context, request common.OCIR // UpdateApi Updates the API with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/UpdateApi.go.html to see an example of how to use UpdateApi API. func (client ApiGatewayClient) UpdateApi(ctx context.Context, request UpdateApiRequest) (response UpdateApiResponse, err error) { @@ -1215,7 +1215,7 @@ func (client ApiGatewayClient) updateApi(ctx context.Context, request common.OCI // UpdateCertificate Updates a certificate with the given identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/UpdateCertificate.go.html to see an example of how to use UpdateCertificate API. func (client ApiGatewayClient) UpdateCertificate(ctx context.Context, request UpdateCertificateRequest) (response UpdateCertificateResponse, err error) { @@ -1272,7 +1272,7 @@ func (client ApiGatewayClient) updateCertificate(ctx context.Context, request co // UpdateSdk Updates the SDK with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/UpdateSdk.go.html to see an example of how to use UpdateSdk API. func (client ApiGatewayClient) UpdateSdk(ctx context.Context, request UpdateSdkRequest) (response UpdateSdkResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_deployment_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_deployment_client.go index 98b3c4de2aa..d4d81685271 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_deployment_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_deployment_client.go @@ -95,7 +95,7 @@ func (client *DeploymentClient) ConfigurationProvider() *common.ConfigurationPro // ChangeDeploymentCompartment Changes the deployment compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ChangeDeploymentCompartment.go.html to see an example of how to use ChangeDeploymentCompartment API. func (client DeploymentClient) ChangeDeploymentCompartment(ctx context.Context, request ChangeDeploymentCompartmentRequest) (response ChangeDeploymentCompartmentResponse, err error) { @@ -157,7 +157,7 @@ func (client DeploymentClient) changeDeploymentCompartment(ctx context.Context, // CreateDeployment Creates a new deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/CreateDeployment.go.html to see an example of how to use CreateDeployment API. // A default retry strategy applies to this operation CreateDeployment() @@ -220,7 +220,7 @@ func (client DeploymentClient) createDeployment(ctx context.Context, request com // DeleteDeployment Deletes the deployment with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/DeleteDeployment.go.html to see an example of how to use DeleteDeployment API. func (client DeploymentClient) DeleteDeployment(ctx context.Context, request DeleteDeploymentRequest) (response DeleteDeploymentResponse, err error) { @@ -277,7 +277,7 @@ func (client DeploymentClient) deleteDeployment(ctx context.Context, request com // GetDeployment Gets a deployment by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetDeployment.go.html to see an example of how to use GetDeployment API. // A default retry strategy applies to this operation GetDeployment() @@ -335,7 +335,7 @@ func (client DeploymentClient) getDeployment(ctx context.Context, request common // ListDeployments Returns a list of deployments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListDeployments.go.html to see an example of how to use ListDeployments API. // A default retry strategy applies to this operation ListDeployments() @@ -393,7 +393,7 @@ func (client DeploymentClient) listDeployments(ctx context.Context, request comm // UpdateDeployment Updates the deployment with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/UpdateDeployment.go.html to see an example of how to use UpdateDeployment API. func (client DeploymentClient) UpdateDeployment(ctx context.Context, request UpdateDeploymentRequest) (response UpdateDeploymentResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_gateway_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_gateway_client.go index ec6170ad263..98273bb35d5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_gateway_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_gateway_client.go @@ -95,7 +95,7 @@ func (client *GatewayClient) ConfigurationProvider() *common.ConfigurationProvid // ChangeGatewayCompartment Changes the gateway compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ChangeGatewayCompartment.go.html to see an example of how to use ChangeGatewayCompartment API. func (client GatewayClient) ChangeGatewayCompartment(ctx context.Context, request ChangeGatewayCompartmentRequest) (response ChangeGatewayCompartmentResponse, err error) { @@ -157,7 +157,7 @@ func (client GatewayClient) changeGatewayCompartment(ctx context.Context, reques // CreateGateway Creates a new gateway. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/CreateGateway.go.html to see an example of how to use CreateGateway API. // A default retry strategy applies to this operation CreateGateway() @@ -220,7 +220,7 @@ func (client GatewayClient) createGateway(ctx context.Context, request common.OC // DeleteGateway Deletes the gateway with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/DeleteGateway.go.html to see an example of how to use DeleteGateway API. func (client GatewayClient) DeleteGateway(ctx context.Context, request DeleteGatewayRequest) (response DeleteGatewayResponse, err error) { @@ -277,7 +277,7 @@ func (client GatewayClient) deleteGateway(ctx context.Context, request common.OC // GetGateway Gets a gateway by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetGateway.go.html to see an example of how to use GetGateway API. // A default retry strategy applies to this operation GetGateway() @@ -335,7 +335,7 @@ func (client GatewayClient) getGateway(ctx context.Context, request common.OCIRe // ListGateways Returns a list of gateways. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListGateways.go.html to see an example of how to use ListGateways API. // A default retry strategy applies to this operation ListGateways() @@ -393,7 +393,7 @@ func (client GatewayClient) listGateways(ctx context.Context, request common.OCI // UpdateGateway Updates the gateway with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/UpdateGateway.go.html to see an example of how to use UpdateGateway API. func (client GatewayClient) UpdateGateway(ctx context.Context, request UpdateGatewayRequest) (response UpdateGatewayResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_subscribers_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_subscribers_client.go index 37687505dab..78b661d03ea 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_subscribers_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_subscribers_client.go @@ -95,7 +95,7 @@ func (client *SubscribersClient) ConfigurationProvider() *common.ConfigurationPr // ChangeSubscriberCompartment Changes the subscriber compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ChangeSubscriberCompartment.go.html to see an example of how to use ChangeSubscriberCompartment API. func (client SubscribersClient) ChangeSubscriberCompartment(ctx context.Context, request ChangeSubscriberCompartmentRequest) (response ChangeSubscriberCompartmentResponse, err error) { @@ -157,7 +157,7 @@ func (client SubscribersClient) changeSubscriberCompartment(ctx context.Context, // CreateSubscriber Creates a new subscriber. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/CreateSubscriber.go.html to see an example of how to use CreateSubscriber API. // A default retry strategy applies to this operation CreateSubscriber() @@ -220,7 +220,7 @@ func (client SubscribersClient) createSubscriber(ctx context.Context, request co // DeleteSubscriber Deletes the subscriber with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/DeleteSubscriber.go.html to see an example of how to use DeleteSubscriber API. func (client SubscribersClient) DeleteSubscriber(ctx context.Context, request DeleteSubscriberRequest) (response DeleteSubscriberResponse, err error) { @@ -277,7 +277,7 @@ func (client SubscribersClient) deleteSubscriber(ctx context.Context, request co // GetSubscriber Gets a subscriber by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetSubscriber.go.html to see an example of how to use GetSubscriber API. // A default retry strategy applies to this operation GetSubscriber() @@ -335,7 +335,7 @@ func (client SubscribersClient) getSubscriber(ctx context.Context, request commo // ListSubscribers Returns a list of subscribers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListSubscribers.go.html to see an example of how to use ListSubscribers API. // A default retry strategy applies to this operation ListSubscribers() @@ -393,7 +393,7 @@ func (client SubscribersClient) listSubscribers(ctx context.Context, request com // UpdateSubscriber Updates the subscriber with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/UpdateSubscriber.go.html to see an example of how to use UpdateSubscriber API. func (client SubscribersClient) UpdateSubscriber(ctx context.Context, request UpdateSubscriberRequest) (response UpdateSubscriberResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_usageplans_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_usageplans_client.go index 9329ebf8d55..1126150b990 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_usageplans_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_usageplans_client.go @@ -95,7 +95,7 @@ func (client *UsagePlansClient) ConfigurationProvider() *common.ConfigurationPro // ChangeUsagePlanCompartment Changes the usage plan compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ChangeUsagePlanCompartment.go.html to see an example of how to use ChangeUsagePlanCompartment API. func (client UsagePlansClient) ChangeUsagePlanCompartment(ctx context.Context, request ChangeUsagePlanCompartmentRequest) (response ChangeUsagePlanCompartmentResponse, err error) { @@ -157,7 +157,7 @@ func (client UsagePlansClient) changeUsagePlanCompartment(ctx context.Context, r // CreateUsagePlan Creates a new usage plan. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/CreateUsagePlan.go.html to see an example of how to use CreateUsagePlan API. // A default retry strategy applies to this operation CreateUsagePlan() @@ -220,7 +220,7 @@ func (client UsagePlansClient) createUsagePlan(ctx context.Context, request comm // DeleteUsagePlan Deletes the usage plan with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/DeleteUsagePlan.go.html to see an example of how to use DeleteUsagePlan API. func (client UsagePlansClient) DeleteUsagePlan(ctx context.Context, request DeleteUsagePlanRequest) (response DeleteUsagePlanResponse, err error) { @@ -277,7 +277,7 @@ func (client UsagePlansClient) deleteUsagePlan(ctx context.Context, request comm // GetUsagePlan Gets a usage plan by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetUsagePlan.go.html to see an example of how to use GetUsagePlan API. // A default retry strategy applies to this operation GetUsagePlan() @@ -335,7 +335,7 @@ func (client UsagePlansClient) getUsagePlan(ctx context.Context, request common. // ListUsagePlans Returns a list of usage plans. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListUsagePlans.go.html to see an example of how to use ListUsagePlans API. // A default retry strategy applies to this operation ListUsagePlans() @@ -393,7 +393,7 @@ func (client UsagePlansClient) listUsagePlans(ctx context.Context, request commo // UpdateUsagePlan Updates the usage plan with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/UpdateUsagePlan.go.html to see an example of how to use UpdateUsagePlan API. func (client UsagePlansClient) UpdateUsagePlan(ctx context.Context, request UpdateUsagePlanRequest) (response UpdateUsagePlanResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_workrequests_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_workrequests_client.go index 9250c0b208d..727618503ce 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_workrequests_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/apigateway_workrequests_client.go @@ -95,7 +95,7 @@ func (client *WorkRequestsClient) ConfigurationProvider() *common.ConfigurationP // CancelWorkRequest Cancels the work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. func (client WorkRequestsClient) CancelWorkRequest(ctx context.Context, request CancelWorkRequestRequest) (response CancelWorkRequestResponse, err error) { @@ -157,7 +157,7 @@ func (client WorkRequestsClient) cancelWorkRequest(ctx context.Context, request // GetWorkRequest Gets the status of the work request with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -215,7 +215,7 @@ func (client WorkRequestsClient) getWorkRequest(ctx context.Context, request com // ListWorkRequestErrors Returns a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -273,7 +273,7 @@ func (client WorkRequestsClient) listWorkRequestErrors(ctx context.Context, requ // ListWorkRequestLogs Returns a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -331,7 +331,7 @@ func (client WorkRequestsClient) listWorkRequestLogs(ctx context.Context, reques // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apigateway/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/custom_authentication_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/custom_authentication_policy.go index 3c4fd357528..1042739c27b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/custom_authentication_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/custom_authentication_policy.go @@ -45,7 +45,7 @@ type CustomAuthenticationPolicy struct { ValidationFailurePolicy ValidationFailurePolicy `mandatory:"false" json:"validationFailurePolicy"` } -//GetIsAnonymousAccessAllowed returns IsAnonymousAccessAllowed +// GetIsAnonymousAccessAllowed returns IsAnonymousAccessAllowed func (m CustomAuthenticationPolicy) GetIsAnonymousAccessAllowed() *bool { return m.IsAnonymousAccessAllowed } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/json_web_key.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/json_web_key.go index ac9f2f98e4c..d7c22b86e0d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/json_web_key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/json_web_key.go @@ -46,7 +46,7 @@ type JsonWebKey struct { KeyOps []JsonWebKeyKeyOpsEnum `mandatory:"false" json:"key_ops,omitempty"` } -//GetKid returns Kid +// GetKid returns Kid func (m JsonWebKey) GetKid() *string { return m.Kid } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/jwt_authentication_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/jwt_authentication_policy.go index adaa598240c..b1990f32c8b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/jwt_authentication_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/jwt_authentication_policy.go @@ -52,7 +52,7 @@ type JwtAuthenticationPolicy struct { VerifyClaims []JsonWebTokenClaim `mandatory:"false" json:"verifyClaims"` } -//GetIsAnonymousAccessAllowed returns IsAnonymousAccessAllowed +// GetIsAnonymousAccessAllowed returns IsAnonymousAccessAllowed func (m JwtAuthenticationPolicy) GetIsAnonymousAccessAllowed() *bool { return m.IsAnonymousAccessAllowed } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/pem_encoded_public_key.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/pem_encoded_public_key.go index 2efcbd566cb..c6cb4780c27 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/pem_encoded_public_key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/pem_encoded_public_key.go @@ -29,7 +29,7 @@ type PemEncodedPublicKey struct { Key *string `mandatory:"true" json:"key"` } -//GetKid returns Kid +// GetKid returns Kid func (m PemEncodedPublicKey) GetKid() *string { return m.Kid } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/simple_lookup_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/simple_lookup_policy.go index cb2aaec6371..27ef45976de 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/simple_lookup_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/simple_lookup_policy.go @@ -35,12 +35,12 @@ type SimpleLookupPolicy struct { CacheKeyAdditions []string `mandatory:"false" json:"cacheKeyAdditions"` } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m SimpleLookupPolicy) GetIsEnabled() *bool { return m.IsEnabled } -//GetIsPrivateCachingEnabled returns IsPrivateCachingEnabled +// GetIsPrivateCachingEnabled returns IsPrivateCachingEnabled func (m SimpleLookupPolicy) GetIsPrivateCachingEnabled() *bool { return m.IsPrivateCachingEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_policy.go index fcb3843adde..f6568c07d66 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_policy.go @@ -44,7 +44,7 @@ type TokenAuthenticationPolicy struct { ValidationFailurePolicy ValidationFailurePolicy `mandatory:"false" json:"validationFailurePolicy"` } -//GetIsAnonymousAccessAllowed returns IsAnonymousAccessAllowed +// GetIsAnonymousAccessAllowed returns IsAnonymousAccessAllowed func (m TokenAuthenticationPolicy) GetIsAnonymousAccessAllowed() *bool { return m.IsAnonymousAccessAllowed } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_remote_discovery_validation_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_remote_discovery_validation_policy.go index 4a6e62068eb..f571fb971d4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_remote_discovery_validation_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_remote_discovery_validation_policy.go @@ -35,7 +35,7 @@ type TokenAuthenticationRemoteDiscoveryValidationPolicy struct { MaxCacheDurationInHours *int `mandatory:"false" json:"maxCacheDurationInHours"` } -//GetAdditionalValidationPolicy returns AdditionalValidationPolicy +// GetAdditionalValidationPolicy returns AdditionalValidationPolicy func (m TokenAuthenticationRemoteDiscoveryValidationPolicy) GetAdditionalValidationPolicy() *AdditionalValidationPolicy { return m.AdditionalValidationPolicy } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_remote_jwks_validation_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_remote_jwks_validation_policy.go index d53e1fd67d0..b95bef68145 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_remote_jwks_validation_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_remote_jwks_validation_policy.go @@ -37,7 +37,7 @@ type TokenAuthenticationRemoteJwksValidationPolicy struct { MaxCacheDurationInHours *int `mandatory:"false" json:"maxCacheDurationInHours"` } -//GetAdditionalValidationPolicy returns AdditionalValidationPolicy +// GetAdditionalValidationPolicy returns AdditionalValidationPolicy func (m TokenAuthenticationRemoteJwksValidationPolicy) GetAdditionalValidationPolicy() *AdditionalValidationPolicy { return m.AdditionalValidationPolicy } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_static_keys_validation_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_static_keys_validation_policy.go index d714147f7ce..c5b870eaefd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_static_keys_validation_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/token_authentication_static_keys_validation_policy.go @@ -26,7 +26,7 @@ type TokenAuthenticationStaticKeysValidationPolicy struct { Keys []StaticPublicKey `mandatory:"false" json:"keys"` } -//GetAdditionalValidationPolicy returns AdditionalValidationPolicy +// GetAdditionalValidationPolicy returns AdditionalValidationPolicy func (m TokenAuthenticationStaticKeysValidationPolicy) GetAdditionalValidationPolicy() *AdditionalValidationPolicy { return m.AdditionalValidationPolicy } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/wildcard_selection_key.go b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/wildcard_selection_key.go index b3ee8c4ca1d..be7b785b3e7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/wildcard_selection_key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apigateway/wildcard_selection_key.go @@ -31,12 +31,12 @@ type WildcardSelectionKey struct { IsDefault *bool `mandatory:"false" json:"isDefault"` } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m WildcardSelectionKey) GetIsDefault() *bool { return m.IsDefault } -//GetName returns Name +// GetName returns Name func (m WildcardSelectionKey) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apdex_rules.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apdex_rules.go index 08583b02c2b..0b54fb8f284 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apdex_rules.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apdex_rules.go @@ -58,42 +58,42 @@ type ApdexRules struct { Rules []Apdex `mandatory:"false" json:"rules"` } -//GetId returns Id +// GetId returns Id func (m ApdexRules) GetId() *string { return m.Id } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ApdexRules) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ApdexRules) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetCreatedBy returns CreatedBy +// GetCreatedBy returns CreatedBy func (m ApdexRules) GetCreatedBy() *string { return m.CreatedBy } -//GetUpdatedBy returns UpdatedBy +// GetUpdatedBy returns UpdatedBy func (m ApdexRules) GetUpdatedBy() *string { return m.UpdatedBy } -//GetEtag returns Etag +// GetEtag returns Etag func (m ApdexRules) GetEtag() *string { return m.Etag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ApdexRules) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ApdexRules) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apdex_rules_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apdex_rules_summary.go index 046099fa50d..f8369f8dcd5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apdex_rules_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apdex_rules_summary.go @@ -57,42 +57,42 @@ type ApdexRulesSummary struct { DisplayName *string `mandatory:"false" json:"displayName"` } -//GetId returns Id +// GetId returns Id func (m ApdexRulesSummary) GetId() *string { return m.Id } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ApdexRulesSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ApdexRulesSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetCreatedBy returns CreatedBy +// GetCreatedBy returns CreatedBy func (m ApdexRulesSummary) GetCreatedBy() *string { return m.CreatedBy } -//GetUpdatedBy returns UpdatedBy +// GetUpdatedBy returns UpdatedBy func (m ApdexRulesSummary) GetUpdatedBy() *string { return m.UpdatedBy } -//GetEtag returns Etag +// GetEtag returns Etag func (m ApdexRulesSummary) GetEtag() *string { return m.Etag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ApdexRulesSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ApdexRulesSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apmconfig_config_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apmconfig_config_client.go index 7106158c884..e5fda5949cf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apmconfig_config_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/apmconfig_config_client.go @@ -94,7 +94,7 @@ func (client *ConfigClient) ConfigurationProvider() *common.ConfigurationProvide // CreateConfig Creates a new configuration item. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmconfig/CreateConfig.go.html to see an example of how to use CreateConfig API. // A default retry strategy applies to this operation CreateConfig() @@ -157,7 +157,7 @@ func (client ConfigClient) createConfig(ctx context.Context, request common.OCIR // DeleteConfig Deletes the configuration item identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmconfig/DeleteConfig.go.html to see an example of how to use DeleteConfig API. // A default retry strategy applies to this operation DeleteConfig() @@ -215,7 +215,7 @@ func (client ConfigClient) deleteConfig(ctx context.Context, request common.OCIR // GetConfig Gets the configuration item identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmconfig/GetConfig.go.html to see an example of how to use GetConfig API. // A default retry strategy applies to this operation GetConfig() @@ -273,7 +273,7 @@ func (client ConfigClient) getConfig(ctx context.Context, request common.OCIRequ // ListConfigs Returns all configuration items, which can optionally be filtered by configuration type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmconfig/ListConfigs.go.html to see an example of how to use ListConfigs API. // A default retry strategy applies to this operation ListConfigs() @@ -331,7 +331,7 @@ func (client ConfigClient) listConfigs(ctx context.Context, request common.OCIRe // RetrieveNamespaceMetrics Returns all metrics associated with the specified namespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmconfig/RetrieveNamespaceMetrics.go.html to see an example of how to use RetrieveNamespaceMetrics API. // A default retry strategy applies to this operation RetrieveNamespaceMetrics() @@ -389,7 +389,7 @@ func (client ConfigClient) retrieveNamespaceMetrics(ctx context.Context, request // RetrieveNamespaces Returns all namespaces available in APM. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmconfig/RetrieveNamespaces.go.html to see an example of how to use RetrieveNamespaces API. // A default retry strategy applies to this operation RetrieveNamespaces() @@ -447,7 +447,7 @@ func (client ConfigClient) retrieveNamespaces(ctx context.Context, request commo // UpdateConfig Updates the details of the configuration item identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmconfig/UpdateConfig.go.html to see an example of how to use UpdateConfig API. // A default retry strategy applies to this operation UpdateConfig() @@ -506,7 +506,7 @@ func (client ConfigClient) updateConfig(ctx context.Context, request common.OCIR // ValidateSpanFilterPattern Validates the Span Filter pattern (filterText) for syntactic correctness. // Returns 204 on success, 422 when validation fails. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmconfig/ValidateSpanFilterPattern.go.html to see an example of how to use ValidateSpanFilterPattern API. // A default retry strategy applies to this operation ValidateSpanFilterPattern() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_apdex_rules_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_apdex_rules_details.go index 50dfbecbd6e..99f05457b9b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_apdex_rules_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_apdex_rules_details.go @@ -34,12 +34,12 @@ type CreateApdexRulesDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateApdexRulesDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateApdexRulesDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_metric_group_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_metric_group_details.go index 6a33b463730..d9fe9256ab1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_metric_group_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_metric_group_details.go @@ -46,12 +46,12 @@ type CreateMetricGroupDetails struct { Dimensions []Dimension `mandatory:"false" json:"dimensions"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMetricGroupDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMetricGroupDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_options_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_options_details.go index c2db5c7067e..871dcfb0f95 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_options_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_options_details.go @@ -41,12 +41,12 @@ type CreateOptionsDetails struct { Description *string `mandatory:"false" json:"description"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOptionsDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOptionsDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_span_filter_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_span_filter_details.go index 9b51b611c44..ff693cf8750 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_span_filter_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/create_span_filter_details.go @@ -38,12 +38,12 @@ type CreateSpanFilterDetails struct { Description *string `mandatory:"false" json:"description"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSpanFilterDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSpanFilterDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/metric_group.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/metric_group.go index d0f7ddacaaf..5333b08e81a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/metric_group.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/metric_group.go @@ -69,42 +69,42 @@ type MetricGroup struct { Metrics []Metric `mandatory:"false" json:"metrics"` } -//GetId returns Id +// GetId returns Id func (m MetricGroup) GetId() *string { return m.Id } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MetricGroup) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MetricGroup) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetCreatedBy returns CreatedBy +// GetCreatedBy returns CreatedBy func (m MetricGroup) GetCreatedBy() *string { return m.CreatedBy } -//GetUpdatedBy returns UpdatedBy +// GetUpdatedBy returns UpdatedBy func (m MetricGroup) GetUpdatedBy() *string { return m.UpdatedBy } -//GetEtag returns Etag +// GetEtag returns Etag func (m MetricGroup) GetEtag() *string { return m.Etag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MetricGroup) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MetricGroup) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/metric_group_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/metric_group_summary.go index 0ef4e5de32a..998127e83a8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/metric_group_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/metric_group_summary.go @@ -69,42 +69,42 @@ type MetricGroupSummary struct { Metrics []Metric `mandatory:"false" json:"metrics"` } -//GetId returns Id +// GetId returns Id func (m MetricGroupSummary) GetId() *string { return m.Id } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MetricGroupSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MetricGroupSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetCreatedBy returns CreatedBy +// GetCreatedBy returns CreatedBy func (m MetricGroupSummary) GetCreatedBy() *string { return m.CreatedBy } -//GetUpdatedBy returns UpdatedBy +// GetUpdatedBy returns UpdatedBy func (m MetricGroupSummary) GetUpdatedBy() *string { return m.UpdatedBy } -//GetEtag returns Etag +// GetEtag returns Etag func (m MetricGroupSummary) GetEtag() *string { return m.Etag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MetricGroupSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MetricGroupSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/options.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/options.go index 762bf12d4ce..f14d0944b43 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/options.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/options.go @@ -64,42 +64,42 @@ type Options struct { Description *string `mandatory:"false" json:"description"` } -//GetId returns Id +// GetId returns Id func (m Options) GetId() *string { return m.Id } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m Options) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m Options) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetCreatedBy returns CreatedBy +// GetCreatedBy returns CreatedBy func (m Options) GetCreatedBy() *string { return m.CreatedBy } -//GetUpdatedBy returns UpdatedBy +// GetUpdatedBy returns UpdatedBy func (m Options) GetUpdatedBy() *string { return m.UpdatedBy } -//GetEtag returns Etag +// GetEtag returns Etag func (m Options) GetEtag() *string { return m.Etag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m Options) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m Options) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/options_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/options_summary.go index 22a551b33eb..1f888647dc6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/options_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/options_summary.go @@ -64,42 +64,42 @@ type OptionsSummary struct { Description *string `mandatory:"false" json:"description"` } -//GetId returns Id +// GetId returns Id func (m OptionsSummary) GetId() *string { return m.Id } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OptionsSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OptionsSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetCreatedBy returns CreatedBy +// GetCreatedBy returns CreatedBy func (m OptionsSummary) GetCreatedBy() *string { return m.CreatedBy } -//GetUpdatedBy returns UpdatedBy +// GetUpdatedBy returns UpdatedBy func (m OptionsSummary) GetUpdatedBy() *string { return m.UpdatedBy } -//GetEtag returns Etag +// GetEtag returns Etag func (m OptionsSummary) GetEtag() *string { return m.Etag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OptionsSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OptionsSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/span_filter.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/span_filter.go index 08f0e768e76..dfff55e860b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/span_filter.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/span_filter.go @@ -64,42 +64,42 @@ type SpanFilter struct { Description *string `mandatory:"false" json:"description"` } -//GetId returns Id +// GetId returns Id func (m SpanFilter) GetId() *string { return m.Id } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SpanFilter) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SpanFilter) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetCreatedBy returns CreatedBy +// GetCreatedBy returns CreatedBy func (m SpanFilter) GetCreatedBy() *string { return m.CreatedBy } -//GetUpdatedBy returns UpdatedBy +// GetUpdatedBy returns UpdatedBy func (m SpanFilter) GetUpdatedBy() *string { return m.UpdatedBy } -//GetEtag returns Etag +// GetEtag returns Etag func (m SpanFilter) GetEtag() *string { return m.Etag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SpanFilter) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SpanFilter) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/span_filter_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/span_filter_summary.go index 75545592560..8587bb881a1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/span_filter_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/span_filter_summary.go @@ -64,42 +64,42 @@ type SpanFilterSummary struct { Description *string `mandatory:"false" json:"description"` } -//GetId returns Id +// GetId returns Id func (m SpanFilterSummary) GetId() *string { return m.Id } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SpanFilterSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SpanFilterSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetCreatedBy returns CreatedBy +// GetCreatedBy returns CreatedBy func (m SpanFilterSummary) GetCreatedBy() *string { return m.CreatedBy } -//GetUpdatedBy returns UpdatedBy +// GetUpdatedBy returns UpdatedBy func (m SpanFilterSummary) GetUpdatedBy() *string { return m.UpdatedBy } -//GetEtag returns Etag +// GetEtag returns Etag func (m SpanFilterSummary) GetEtag() *string { return m.Etag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SpanFilterSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SpanFilterSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_apdex_rules_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_apdex_rules_details.go index 1f1517e2ccf..9ba245024d0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_apdex_rules_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_apdex_rules_details.go @@ -33,12 +33,12 @@ type UpdateApdexRulesDetails struct { DisplayName *string `mandatory:"false" json:"displayName"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateApdexRulesDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateApdexRulesDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_metric_group_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_metric_group_details.go index fc203a893b2..b6c9852844d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_metric_group_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_metric_group_details.go @@ -46,12 +46,12 @@ type UpdateMetricGroupDetails struct { Metrics []Metric `mandatory:"false" json:"metrics"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateMetricGroupDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateMetricGroupDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_options_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_options_details.go index 0d9b2ad362c..3d916450326 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_options_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_options_details.go @@ -41,12 +41,12 @@ type UpdateOptionsDetails struct { Description *string `mandatory:"false" json:"description"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOptionsDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOptionsDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_span_filter_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_span_filter_details.go index 3134d489bd5..f6e10586bc2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_span_filter_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmconfig/update_span_filter_details.go @@ -38,12 +38,12 @@ type UpdateSpanFilterDetails struct { Description *string `mandatory:"false" json:"description"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateSpanFilterDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateSpanFilterDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmcontrolplane/apmcontrolplane_apmdomain_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmcontrolplane/apmcontrolplane_apmdomain_client.go index df5c585ea21..7690d8e2b95 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmcontrolplane/apmcontrolplane_apmdomain_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmcontrolplane/apmcontrolplane_apmdomain_client.go @@ -94,7 +94,7 @@ func (client *ApmDomainClient) ConfigurationProvider() *common.ConfigurationProv // ChangeApmDomainCompartment Moves an APM domain into a different compartment. When provided, If-Match is checked against ETag values of the APM domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/ChangeApmDomainCompartment.go.html to see an example of how to use ChangeApmDomainCompartment API. // A default retry strategy applies to this operation ChangeApmDomainCompartment() @@ -157,7 +157,7 @@ func (client ApmDomainClient) changeApmDomainCompartment(ctx context.Context, re // CreateApmDomain Creates a new APM domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/CreateApmDomain.go.html to see an example of how to use CreateApmDomain API. // A default retry strategy applies to this operation CreateApmDomain() @@ -222,7 +222,7 @@ func (client ApmDomainClient) createApmDomain(ctx context.Context, request commo // accepting any operation requests. All resources associated with the APM domain are eventually recovered. Use the // returned work request ID to track the progress of the background activity to complete deleting the APM domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/DeleteApmDomain.go.html to see an example of how to use DeleteApmDomain API. // A default retry strategy applies to this operation DeleteApmDomain() @@ -281,7 +281,7 @@ func (client ApmDomainClient) deleteApmDomain(ctx context.Context, request commo // GenerateDataKeys Generates a set of new Data Keys for the specified APM domain with the specified names and // types. These will be added to the existing set of Data Keys for the specified APM domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/GenerateDataKeys.go.html to see an example of how to use GenerateDataKeys API. // A default retry strategy applies to this operation GenerateDataKeys() @@ -339,7 +339,7 @@ func (client ApmDomainClient) generateDataKeys(ctx context.Context, request comm // GetApmDomain Gets the details of the APM domain specified by OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/GetApmDomain.go.html to see an example of how to use GetApmDomain API. // A default retry strategy applies to this operation GetApmDomain() @@ -397,7 +397,7 @@ func (client ApmDomainClient) getApmDomain(ctx context.Context, request common.O // GetWorkRequest Gets the details of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -455,7 +455,7 @@ func (client ApmDomainClient) getWorkRequest(ctx context.Context, request common // ListApmDomainWorkRequests Returns a (paginated) list of work requests related to a specific APM domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/ListApmDomainWorkRequests.go.html to see an example of how to use ListApmDomainWorkRequests API. // A default retry strategy applies to this operation ListApmDomainWorkRequests() @@ -513,7 +513,7 @@ func (client ApmDomainClient) listApmDomainWorkRequests(ctx context.Context, req // ListApmDomains Lists all APM domains for the specified tenant compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/ListApmDomains.go.html to see an example of how to use ListApmDomains API. // A default retry strategy applies to this operation ListApmDomains() @@ -572,7 +572,7 @@ func (client ApmDomainClient) listApmDomains(ctx context.Context, request common // ListDataKeys Lists all Data Keys for the specified APM domain. The caller may filter the list by specifying the 'dataKeyType' // query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/ListDataKeys.go.html to see an example of how to use ListDataKeys API. // A default retry strategy applies to this operation ListDataKeys() @@ -630,7 +630,7 @@ func (client ApmDomainClient) listDataKeys(ctx context.Context, request common.O // ListWorkRequestErrors Returns a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -688,7 +688,7 @@ func (client ApmDomainClient) listWorkRequestErrors(ctx context.Context, request // ListWorkRequestLogs Returns a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -746,7 +746,7 @@ func (client ApmDomainClient) listWorkRequestLogs(ctx context.Context, request c // ListWorkRequests Returns a (paginated) list of work requests in a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -805,7 +805,7 @@ func (client ApmDomainClient) listWorkRequests(ctx context.Context, request comm // RemoveDataKeys Removes the set of specified Data Keys from the specified APM domain. Agents would no longer // be able to use these data keys to upload to the APM domain once this operation is completed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/RemoveDataKeys.go.html to see an example of how to use RemoveDataKeys API. // A default retry strategy applies to this operation RemoveDataKeys() @@ -863,7 +863,7 @@ func (client ApmDomainClient) removeDataKeys(ctx context.Context, request common // UpdateApmDomain Updates the APM domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmcontrolplane/UpdateApmDomain.go.html to see an example of how to use UpdateApmDomain API. // A default retry strategy applies to this operation UpdateApmDomain() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/apmsynthetics_apmsynthetic_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/apmsynthetics_apmsynthetic_client.go index de41ce0583d..940d1dd9896 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/apmsynthetics_apmsynthetic_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/apmsynthetics_apmsynthetic_client.go @@ -93,7 +93,7 @@ func (client *ApmSyntheticClient) ConfigurationProvider() *common.ConfigurationP // AggregateNetworkData Gets aggregated network data for given executions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/AggregateNetworkData.go.html to see an example of how to use AggregateNetworkData API. // A default retry strategy applies to this operation AggregateNetworkData() @@ -156,7 +156,7 @@ func (client ApmSyntheticClient) aggregateNetworkData(ctx context.Context, reque // CreateDedicatedVantagePoint Registers a new dedicated vantage point. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/CreateDedicatedVantagePoint.go.html to see an example of how to use CreateDedicatedVantagePoint API. // A default retry strategy applies to this operation CreateDedicatedVantagePoint() @@ -219,7 +219,7 @@ func (client ApmSyntheticClient) createDedicatedVantagePoint(ctx context.Context // CreateMonitor Creates a new monitor. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/CreateMonitor.go.html to see an example of how to use CreateMonitor API. // A default retry strategy applies to this operation CreateMonitor() @@ -282,7 +282,7 @@ func (client ApmSyntheticClient) createMonitor(ctx context.Context, request comm // CreateScript Creates a new script. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/CreateScript.go.html to see an example of how to use CreateScript API. // A default retry strategy applies to this operation CreateScript() @@ -345,7 +345,7 @@ func (client ApmSyntheticClient) createScript(ctx context.Context, request commo // DeleteDedicatedVantagePoint Deregisters the specified dedicated vantage point. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/DeleteDedicatedVantagePoint.go.html to see an example of how to use DeleteDedicatedVantagePoint API. // A default retry strategy applies to this operation DeleteDedicatedVantagePoint() @@ -403,7 +403,7 @@ func (client ApmSyntheticClient) deleteDedicatedVantagePoint(ctx context.Context // DeleteMonitor Deletes the specified monitor. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/DeleteMonitor.go.html to see an example of how to use DeleteMonitor API. // A default retry strategy applies to this operation DeleteMonitor() @@ -461,7 +461,7 @@ func (client ApmSyntheticClient) deleteMonitor(ctx context.Context, request comm // DeleteScript Deletes the specified script. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/DeleteScript.go.html to see an example of how to use DeleteScript API. // A default retry strategy applies to this operation DeleteScript() @@ -519,7 +519,7 @@ func (client ApmSyntheticClient) deleteScript(ctx context.Context, request commo // GetDedicatedVantagePoint Gets the details of the dedicated vantage point identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/GetDedicatedVantagePoint.go.html to see an example of how to use GetDedicatedVantagePoint API. // A default retry strategy applies to this operation GetDedicatedVantagePoint() @@ -577,7 +577,7 @@ func (client ApmSyntheticClient) getDedicatedVantagePoint(ctx context.Context, r // GetMonitor Gets the configuration of the monitor identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/GetMonitor.go.html to see an example of how to use GetMonitor API. // A default retry strategy applies to this operation GetMonitor() @@ -635,7 +635,7 @@ func (client ApmSyntheticClient) getMonitor(ctx context.Context, request common. // GetMonitorResult Gets the results for a specific execution of a monitor identified by OCID. The results are in a HAR file, Screenshot, Console Log or Network details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/GetMonitorResult.go.html to see an example of how to use GetMonitorResult API. // A default retry strategy applies to this operation GetMonitorResult() @@ -693,7 +693,7 @@ func (client ApmSyntheticClient) getMonitorResult(ctx context.Context, request c // GetScript Gets the configuration of the script identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/GetScript.go.html to see an example of how to use GetScript API. // A default retry strategy applies to this operation GetScript() @@ -751,7 +751,7 @@ func (client ApmSyntheticClient) getScript(ctx context.Context, request common.O // ListDedicatedVantagePoints Returns a list of dedicated vantage points. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/ListDedicatedVantagePoints.go.html to see an example of how to use ListDedicatedVantagePoints API. // A default retry strategy applies to this operation ListDedicatedVantagePoints() @@ -809,7 +809,7 @@ func (client ApmSyntheticClient) listDedicatedVantagePoints(ctx context.Context, // ListMonitors Returns a list of monitors. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/ListMonitors.go.html to see an example of how to use ListMonitors API. // A default retry strategy applies to this operation ListMonitors() @@ -867,7 +867,7 @@ func (client ApmSyntheticClient) listMonitors(ctx context.Context, request commo // ListPublicVantagePoints Returns a list of public vantage points. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/ListPublicVantagePoints.go.html to see an example of how to use ListPublicVantagePoints API. // A default retry strategy applies to this operation ListPublicVantagePoints() @@ -925,7 +925,7 @@ func (client ApmSyntheticClient) listPublicVantagePoints(ctx context.Context, re // ListScripts Returns a list of scripts. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/ListScripts.go.html to see an example of how to use ListScripts API. // A default retry strategy applies to this operation ListScripts() @@ -983,7 +983,7 @@ func (client ApmSyntheticClient) listScripts(ctx context.Context, request common // UpdateDedicatedVantagePoint Updates the dedicated vantage point. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/UpdateDedicatedVantagePoint.go.html to see an example of how to use UpdateDedicatedVantagePoint API. // A default retry strategy applies to this operation UpdateDedicatedVantagePoint() @@ -1041,7 +1041,7 @@ func (client ApmSyntheticClient) updateDedicatedVantagePoint(ctx context.Context // UpdateMonitor Updates the monitor. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/UpdateMonitor.go.html to see an example of how to use UpdateMonitor API. // A default retry strategy applies to this operation UpdateMonitor() @@ -1099,7 +1099,7 @@ func (client ApmSyntheticClient) updateMonitor(ctx context.Context, request comm // UpdateScript Updates the script. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmsynthetics/UpdateScript.go.html to see an example of how to use UpdateScript API. // A default retry strategy applies to this operation UpdateScript() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/browser_monitor_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/browser_monitor_configuration.go index 720ae9b7629..1bea96acf7e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/browser_monitor_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/browser_monitor_configuration.go @@ -40,12 +40,12 @@ type BrowserMonitorConfiguration struct { NetworkConfiguration *NetworkConfiguration `mandatory:"false" json:"networkConfiguration"` } -//GetIsFailureRetried returns IsFailureRetried +// GetIsFailureRetried returns IsFailureRetried func (m BrowserMonitorConfiguration) GetIsFailureRetried() *bool { return m.IsFailureRetried } -//GetDnsConfiguration returns DnsConfiguration +// GetDnsConfiguration returns DnsConfiguration func (m BrowserMonitorConfiguration) GetDnsConfiguration() *DnsConfiguration { return m.DnsConfiguration } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/network_monitor_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/network_monitor_configuration.go index dda76445f13..fa8a7a84931 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/network_monitor_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/network_monitor_configuration.go @@ -26,12 +26,12 @@ type NetworkMonitorConfiguration struct { DnsConfiguration *DnsConfiguration `mandatory:"false" json:"dnsConfiguration"` } -//GetIsFailureRetried returns IsFailureRetried +// GetIsFailureRetried returns IsFailureRetried func (m NetworkMonitorConfiguration) GetIsFailureRetried() *bool { return m.IsFailureRetried } -//GetDnsConfiguration returns DnsConfiguration +// GetDnsConfiguration returns DnsConfiguration func (m NetworkMonitorConfiguration) GetDnsConfiguration() *DnsConfiguration { return m.DnsConfiguration } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/oracle_rm_stack.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/oracle_rm_stack.go index 353371ef802..91bb56213bb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/oracle_rm_stack.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/oracle_rm_stack.go @@ -29,7 +29,7 @@ type OracleRmStack struct { DvpStreamId *string `mandatory:"true" json:"dvpStreamId"` } -//GetDvpVersion returns DvpVersion +// GetDvpVersion returns DvpVersion func (m OracleRmStack) GetDvpVersion() *string { return m.DvpVersion } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/rest_monitor_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/rest_monitor_configuration.go index 2a62c9098ca..6a4656ffe86 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/rest_monitor_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/rest_monitor_configuration.go @@ -59,12 +59,12 @@ type RestMonitorConfiguration struct { ReqAuthenticationScheme RequestAuthenticationSchemesEnum `mandatory:"false" json:"reqAuthenticationScheme,omitempty"` } -//GetIsFailureRetried returns IsFailureRetried +// GetIsFailureRetried returns IsFailureRetried func (m RestMonitorConfiguration) GetIsFailureRetried() *bool { return m.IsFailureRetried } -//GetDnsConfiguration returns DnsConfiguration +// GetDnsConfiguration returns DnsConfiguration func (m RestMonitorConfiguration) GetDnsConfiguration() *DnsConfiguration { return m.DnsConfiguration } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/scripted_browser_monitor_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/scripted_browser_monitor_configuration.go index 8e2e2b58d4f..69fe9ce6a6f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/scripted_browser_monitor_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/scripted_browser_monitor_configuration.go @@ -33,12 +33,12 @@ type ScriptedBrowserMonitorConfiguration struct { NetworkConfiguration *NetworkConfiguration `mandatory:"false" json:"networkConfiguration"` } -//GetIsFailureRetried returns IsFailureRetried +// GetIsFailureRetried returns IsFailureRetried func (m ScriptedBrowserMonitorConfiguration) GetIsFailureRetried() *bool { return m.IsFailureRetried } -//GetDnsConfiguration returns DnsConfiguration +// GetDnsConfiguration returns DnsConfiguration func (m ScriptedBrowserMonitorConfiguration) GetDnsConfiguration() *DnsConfiguration { return m.DnsConfiguration } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/scripted_rest_monitor_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/scripted_rest_monitor_configuration.go index 5ff3f7cb071..fbb8285fad2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/scripted_rest_monitor_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmsynthetics/scripted_rest_monitor_configuration.go @@ -33,12 +33,12 @@ type ScriptedRestMonitorConfiguration struct { ReqAuthenticationScheme RequestAuthenticationSchemesForScriptedRestEnum `mandatory:"false" json:"reqAuthenticationScheme,omitempty"` } -//GetIsFailureRetried returns IsFailureRetried +// GetIsFailureRetried returns IsFailureRetried func (m ScriptedRestMonitorConfiguration) GetIsFailureRetried() *bool { return m.IsFailureRetried } -//GetDnsConfiguration returns DnsConfiguration +// GetDnsConfiguration returns DnsConfiguration func (m ScriptedRestMonitorConfiguration) GetDnsConfiguration() *DnsConfiguration { return m.DnsConfiguration } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmtraces/apmtraces_query_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmtraces/apmtraces_query_client.go index 2449e961350..11593ff7328 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmtraces/apmtraces_query_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmtraces/apmtraces_query_client.go @@ -94,7 +94,7 @@ func (client *QueryClient) ConfigurationProvider() *common.ConfigurationProvider // ListQuickPicks Returns a list of predefined Quick Pick queries intended to assist the user // to choose a query to run. There is no sorting applied on the results. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmtraces/ListQuickPicks.go.html to see an example of how to use ListQuickPicks API. func (client QueryClient) ListQuickPicks(ctx context.Context, request ListQuickPicksRequest) (response ListQuickPicksResponse, err error) { @@ -154,7 +154,7 @@ func (client QueryClient) listQuickPicks(ctx context.Context, request common.OCI // Further query results are grouped by the attributes specified in the group by clause. Finally, // ordering (asc/desc) is done by the specified attributes in the order by clause. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmtraces/Query.go.html to see an example of how to use Query API. func (client QueryClient) Query(ctx context.Context, request QueryRequest) (response QueryResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/apmtraces/apmtraces_trace_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/apmtraces/apmtraces_trace_client.go index 229b50cdfc3..833ef96b09a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/apmtraces/apmtraces_trace_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/apmtraces/apmtraces_trace_client.go @@ -93,7 +93,7 @@ func (client *TraceClient) ConfigurationProvider() *common.ConfigurationProvider // GetAggregatedSnapshot Gets the aggregated snapshot identified by trace ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmtraces/GetAggregatedSnapshot.go.html to see an example of how to use GetAggregatedSnapshot API. func (client TraceClient) GetAggregatedSnapshot(ctx context.Context, request GetAggregatedSnapshotRequest) (response GetAggregatedSnapshotResponse, err error) { @@ -150,7 +150,7 @@ func (client TraceClient) getAggregatedSnapshot(ctx context.Context, request com // GetSpan Gets the span details identified by spanId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmtraces/GetSpan.go.html to see an example of how to use GetSpan API. func (client TraceClient) GetSpan(ctx context.Context, request GetSpanRequest) (response GetSpanResponse, err error) { @@ -207,7 +207,7 @@ func (client TraceClient) getSpan(ctx context.Context, request common.OCIRequest // GetTrace Gets the trace details identified by traceId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmtraces/GetTrace.go.html to see an example of how to use GetTrace API. func (client TraceClient) GetTrace(ctx context.Context, request GetTraceRequest) (response GetTraceResponse, err error) { @@ -264,7 +264,7 @@ func (client TraceClient) getTrace(ctx context.Context, request common.OCIReques // GetTraceSnapshot Gets the trace snapshots data identified by trace ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/apmtraces/GetTraceSnapshot.go.html to see an example of how to use GetTraceSnapshot API. func (client TraceClient) GetTraceSnapshot(ctx context.Context, request GetTraceSnapshotRequest) (response GetTraceSnapshotResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/appmgmtcontrol/appmgmtcontrol_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/appmgmtcontrol/appmgmtcontrol_client.go index b2773760ebd..d0e0b22a218 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/appmgmtcontrol/appmgmtcontrol_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/appmgmtcontrol/appmgmtcontrol_client.go @@ -95,7 +95,7 @@ func (client *AppmgmtControlClient) ConfigurationProvider() *common.Configuratio // Stores monitored instances Id and its state. Tries to enable Resource Monitoring plugin by making // remote calls to Oracle Cloud Agent and Management Agent Cloud Service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/appmgmtcontrol/ActivateMonitoringPlugin.go.html to see an example of how to use ActivateMonitoringPlugin API. func (client AppmgmtControlClient) ActivateMonitoringPlugin(ctx context.Context, request ActivateMonitoringPluginRequest) (response ActivateMonitoringPluginResponse, err error) { @@ -152,7 +152,7 @@ func (client AppmgmtControlClient) activateMonitoringPlugin(ctx context.Context, // GetMonitoredInstance Gets a monitored instance by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/appmgmtcontrol/GetMonitoredInstance.go.html to see an example of how to use GetMonitoredInstance API. // A default retry strategy applies to this operation GetMonitoredInstance() @@ -210,7 +210,7 @@ func (client AppmgmtControlClient) getMonitoredInstance(ctx context.Context, req // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/appmgmtcontrol/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -268,7 +268,7 @@ func (client AppmgmtControlClient) getWorkRequest(ctx context.Context, request c // ListMonitoredInstances Returns a list of monitored instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/appmgmtcontrol/ListMonitoredInstances.go.html to see an example of how to use ListMonitoredInstances API. // A default retry strategy applies to this operation ListMonitoredInstances() @@ -326,7 +326,7 @@ func (client AppmgmtControlClient) listMonitoredInstances(ctx context.Context, r // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/appmgmtcontrol/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -384,7 +384,7 @@ func (client AppmgmtControlClient) listWorkRequestErrors(ctx context.Context, re // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/appmgmtcontrol/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -442,7 +442,7 @@ func (client AppmgmtControlClient) listWorkRequestLogs(ctx context.Context, requ // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/appmgmtcontrol/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -500,7 +500,7 @@ func (client AppmgmtControlClient) listWorkRequests(ctx context.Context, request // PublishTopProcessesMetrics Starts cpu and memory top processes collection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/appmgmtcontrol/PublishTopProcessesMetrics.go.html to see an example of how to use PublishTopProcessesMetrics API. func (client AppmgmtControlClient) PublishTopProcessesMetrics(ctx context.Context, request PublishTopProcessesMetricsRequest) (response PublishTopProcessesMetricsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/artifacts_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/artifacts_client.go index 97838471408..9aa761cbdcc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/artifacts_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/artifacts_client.go @@ -96,7 +96,7 @@ func (client *ArtifactsClient) ConfigurationProvider() *common.ConfigurationProv // resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/ChangeContainerRepositoryCompartment.go.html to see an example of how to use ChangeContainerRepositoryCompartment API. // A default retry strategy applies to this operation ChangeContainerRepositoryCompartment() @@ -161,7 +161,7 @@ func (client ArtifactsClient) changeContainerRepositoryCompartment(ctx context.C // resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/ChangeRepositoryCompartment.go.html to see an example of how to use ChangeRepositoryCompartment API. // A default retry strategy applies to this operation ChangeRepositoryCompartment() @@ -224,7 +224,7 @@ func (client ArtifactsClient) changeRepositoryCompartment(ctx context.Context, r // CreateContainerImageSignature Upload a signature to an image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/CreateContainerImageSignature.go.html to see an example of how to use CreateContainerImageSignature API. // A default retry strategy applies to this operation CreateContainerImageSignature() @@ -287,7 +287,7 @@ func (client ArtifactsClient) createContainerImageSignature(ctx context.Context, // CreateContainerRepository Create a new empty container repository. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/CreateContainerRepository.go.html to see an example of how to use CreateContainerRepository API. // A default retry strategy applies to this operation CreateContainerRepository() @@ -350,7 +350,7 @@ func (client ArtifactsClient) createContainerRepository(ctx context.Context, req // CreateRepository Creates a new repository for storing artifacts. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/CreateRepository.go.html to see an example of how to use CreateRepository API. func (client ArtifactsClient) CreateRepository(ctx context.Context, request CreateRepositoryRequest) (response CreateRepositoryResponse, err error) { @@ -412,7 +412,7 @@ func (client ArtifactsClient) createRepository(ctx context.Context, request comm // DeleteContainerImage Delete a container image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/DeleteContainerImage.go.html to see an example of how to use DeleteContainerImage API. // A default retry strategy applies to this operation DeleteContainerImage() @@ -470,7 +470,7 @@ func (client ArtifactsClient) deleteContainerImage(ctx context.Context, request // DeleteContainerImageSignature Delete a container image signature. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/DeleteContainerImageSignature.go.html to see an example of how to use DeleteContainerImageSignature API. // A default retry strategy applies to this operation DeleteContainerImageSignature() @@ -528,7 +528,7 @@ func (client ArtifactsClient) deleteContainerImageSignature(ctx context.Context, // DeleteContainerRepository Delete container repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/DeleteContainerRepository.go.html to see an example of how to use DeleteContainerRepository API. // A default retry strategy applies to this operation DeleteContainerRepository() @@ -586,7 +586,7 @@ func (client ArtifactsClient) deleteContainerRepository(ctx context.Context, req // DeleteGenericArtifact Deletes an artifact with a specified OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/DeleteGenericArtifact.go.html to see an example of how to use DeleteGenericArtifact API. // A default retry strategy applies to this operation DeleteGenericArtifact() @@ -644,7 +644,7 @@ func (client ArtifactsClient) deleteGenericArtifact(ctx context.Context, request // DeleteGenericArtifactByPath Deletes an artifact with a specified `artifactPath` and `version`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/DeleteGenericArtifactByPath.go.html to see an example of how to use DeleteGenericArtifactByPath API. // A default retry strategy applies to this operation DeleteGenericArtifactByPath() @@ -702,7 +702,7 @@ func (client ArtifactsClient) deleteGenericArtifactByPath(ctx context.Context, r // DeleteRepository Deletes the specified repository. This operation fails unless all associated artifacts are in a DELETED state. You must delete all associated artifacts before deleting a repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/DeleteRepository.go.html to see an example of how to use DeleteRepository API. // A default retry strategy applies to this operation DeleteRepository() @@ -760,7 +760,7 @@ func (client ArtifactsClient) deleteRepository(ctx context.Context, request comm // GetContainerConfiguration Get container configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/GetContainerConfiguration.go.html to see an example of how to use GetContainerConfiguration API. // A default retry strategy applies to this operation GetContainerConfiguration() @@ -818,7 +818,7 @@ func (client ArtifactsClient) getContainerConfiguration(ctx context.Context, req // GetContainerImage Get container image metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/GetContainerImage.go.html to see an example of how to use GetContainerImage API. // A default retry strategy applies to this operation GetContainerImage() @@ -876,7 +876,7 @@ func (client ArtifactsClient) getContainerImage(ctx context.Context, request com // GetContainerImageSignature Get container image signature metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/GetContainerImageSignature.go.html to see an example of how to use GetContainerImageSignature API. // A default retry strategy applies to this operation GetContainerImageSignature() @@ -934,7 +934,7 @@ func (client ArtifactsClient) getContainerImageSignature(ctx context.Context, re // GetContainerRepository Get container repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/GetContainerRepository.go.html to see an example of how to use GetContainerRepository API. // A default retry strategy applies to this operation GetContainerRepository() @@ -992,7 +992,7 @@ func (client ArtifactsClient) getContainerRepository(ctx context.Context, reques // GetGenericArtifact Gets information about an artifact with a specified OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/GetGenericArtifact.go.html to see an example of how to use GetGenericArtifact API. // A default retry strategy applies to this operation GetGenericArtifact() @@ -1050,7 +1050,7 @@ func (client ArtifactsClient) getGenericArtifact(ctx context.Context, request co // GetGenericArtifactByPath Gets information about an artifact with a specified `artifactPath` and `version`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/GetGenericArtifactByPath.go.html to see an example of how to use GetGenericArtifactByPath API. // A default retry strategy applies to this operation GetGenericArtifactByPath() @@ -1108,7 +1108,7 @@ func (client ArtifactsClient) getGenericArtifactByPath(ctx context.Context, requ // GetRepository Gets the specified repository's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/GetRepository.go.html to see an example of how to use GetRepository API. // A default retry strategy applies to this operation GetRepository() @@ -1166,7 +1166,7 @@ func (client ArtifactsClient) getRepository(ctx context.Context, request common. // ListContainerImageSignatures List container image signatures in an image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/ListContainerImageSignatures.go.html to see an example of how to use ListContainerImageSignatures API. // A default retry strategy applies to this operation ListContainerImageSignatures() @@ -1224,7 +1224,7 @@ func (client ArtifactsClient) listContainerImageSignatures(ctx context.Context, // ListContainerImages List container images in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/ListContainerImages.go.html to see an example of how to use ListContainerImages API. // A default retry strategy applies to this operation ListContainerImages() @@ -1282,7 +1282,7 @@ func (client ArtifactsClient) listContainerImages(ctx context.Context, request c // ListContainerRepositories List container repositories in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/ListContainerRepositories.go.html to see an example of how to use ListContainerRepositories API. // A default retry strategy applies to this operation ListContainerRepositories() @@ -1340,7 +1340,7 @@ func (client ArtifactsClient) listContainerRepositories(ctx context.Context, req // ListGenericArtifacts Lists artifacts in the specified repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/ListGenericArtifacts.go.html to see an example of how to use ListGenericArtifacts API. // A default retry strategy applies to this operation ListGenericArtifacts() @@ -1398,7 +1398,7 @@ func (client ArtifactsClient) listGenericArtifacts(ctx context.Context, request // ListRepositories Lists repositories in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/ListRepositories.go.html to see an example of how to use ListRepositories API. // A default retry strategy applies to this operation ListRepositories() @@ -1456,7 +1456,7 @@ func (client ArtifactsClient) listRepositories(ctx context.Context, request comm // RemoveContainerVersion Remove version from container image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/RemoveContainerVersion.go.html to see an example of how to use RemoveContainerVersion API. // A default retry strategy applies to this operation RemoveContainerVersion() @@ -1519,7 +1519,7 @@ func (client ArtifactsClient) removeContainerVersion(ctx context.Context, reques // RestoreContainerImage Restore a container image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/RestoreContainerImage.go.html to see an example of how to use RestoreContainerImage API. // A default retry strategy applies to this operation RestoreContainerImage() @@ -1582,7 +1582,7 @@ func (client ArtifactsClient) restoreContainerImage(ctx context.Context, request // UpdateContainerConfiguration Update container configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/UpdateContainerConfiguration.go.html to see an example of how to use UpdateContainerConfiguration API. // A default retry strategy applies to this operation UpdateContainerConfiguration() @@ -1640,7 +1640,7 @@ func (client ArtifactsClient) updateContainerConfiguration(ctx context.Context, // UpdateContainerImage Modify the properties of a container image. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/UpdateContainerImage.go.html to see an example of how to use UpdateContainerImage API. // A default retry strategy applies to this operation UpdateContainerImage() @@ -1698,7 +1698,7 @@ func (client ArtifactsClient) updateContainerImage(ctx context.Context, request // UpdateContainerImageSignature Modify the properties of a container image signature. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/UpdateContainerImageSignature.go.html to see an example of how to use UpdateContainerImageSignature API. // A default retry strategy applies to this operation UpdateContainerImageSignature() @@ -1756,7 +1756,7 @@ func (client ArtifactsClient) updateContainerImageSignature(ctx context.Context, // UpdateContainerRepository Modify the properties of a container repository. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/UpdateContainerRepository.go.html to see an example of how to use UpdateContainerRepository API. // A default retry strategy applies to this operation UpdateContainerRepository() @@ -1814,7 +1814,7 @@ func (client ArtifactsClient) updateContainerRepository(ctx context.Context, req // UpdateGenericArtifact Updates the artifact with the specified OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). You can only update the tags of an artifact. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/UpdateGenericArtifact.go.html to see an example of how to use UpdateGenericArtifact API. // A default retry strategy applies to this operation UpdateGenericArtifact() @@ -1872,7 +1872,7 @@ func (client ArtifactsClient) updateGenericArtifact(ctx context.Context, request // UpdateGenericArtifactByPath Updates an artifact with a specified `artifactPath` and `version`. You can only update the tags of an artifact. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/UpdateGenericArtifactByPath.go.html to see an example of how to use UpdateGenericArtifactByPath API. // A default retry strategy applies to this operation UpdateGenericArtifactByPath() @@ -1930,7 +1930,7 @@ func (client ArtifactsClient) updateGenericArtifactByPath(ctx context.Context, r // UpdateRepository Updates the properties of a repository. You can update the `displayName` and `description` properties. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/artifacts/UpdateRepository.go.html to see an example of how to use UpdateRepository API. // A default retry strategy applies to this operation UpdateRepository() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/create_generic_repository_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/create_generic_repository_details.go index 45320bb5e3a..99ac656d09e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/create_generic_repository_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/create_generic_repository_details.go @@ -43,32 +43,32 @@ type CreateGenericRepositoryDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGenericRepositoryDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateGenericRepositoryDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGenericRepositoryDetails) GetDescription() *string { return m.Description } -//GetIsImmutable returns IsImmutable +// GetIsImmutable returns IsImmutable func (m CreateGenericRepositoryDetails) GetIsImmutable() *bool { return m.IsImmutable } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGenericRepositoryDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGenericRepositoryDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/generic_repository.go b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/generic_repository.go index ca48c9a560a..e4be27620ed 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/generic_repository.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/generic_repository.go @@ -53,47 +53,47 @@ type GenericRepository struct { LifecycleState RepositoryLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m GenericRepository) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GenericRepository) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GenericRepository) GetCompartmentId() *string { return m.CompartmentId } -//GetDescription returns Description +// GetDescription returns Description func (m GenericRepository) GetDescription() *string { return m.Description } -//GetIsImmutable returns IsImmutable +// GetIsImmutable returns IsImmutable func (m GenericRepository) GetIsImmutable() *bool { return m.IsImmutable } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GenericRepository) GetLifecycleState() RepositoryLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GenericRepository) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GenericRepository) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GenericRepository) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/generic_repository_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/generic_repository_summary.go index f5b9381a35f..b19b9d3297c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/generic_repository_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/generic_repository_summary.go @@ -53,47 +53,47 @@ type GenericRepositorySummary struct { LifecycleState RepositoryLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m GenericRepositorySummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GenericRepositorySummary) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GenericRepositorySummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDescription returns Description +// GetDescription returns Description func (m GenericRepositorySummary) GetDescription() *string { return m.Description } -//GetIsImmutable returns IsImmutable +// GetIsImmutable returns IsImmutable func (m GenericRepositorySummary) GetIsImmutable() *bool { return m.IsImmutable } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GenericRepositorySummary) GetLifecycleState() RepositoryLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GenericRepositorySummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GenericRepositorySummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GenericRepositorySummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/update_generic_repository_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/update_generic_repository_details.go index 5b2426b97d2..0fc50c43ca7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/update_generic_repository_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/artifacts/update_generic_repository_details.go @@ -37,22 +37,22 @@ type UpdateGenericRepositoryDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGenericRepositoryDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGenericRepositoryDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGenericRepositoryDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGenericRepositoryDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/audit/audit_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/audit/audit_client.go index 6194bf4f925..c3bc1512aa5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/audit/audit_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/audit/audit_client.go @@ -95,7 +95,7 @@ func (client *AuditClient) ConfigurationProvider() *common.ConfigurationProvider // GetConfiguration Get the configuration // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/audit/GetConfiguration.go.html to see an example of how to use GetConfiguration API. func (client AuditClient) GetConfiguration(ctx context.Context, request GetConfigurationRequest) (response GetConfigurationResponse, err error) { @@ -148,7 +148,7 @@ func (client AuditClient) getConfiguration(ctx context.Context, request common.O // ListEvents Returns all the audit events processed for the specified compartment within the specified // time range. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/audit/ListEvents.go.html to see an example of how to use ListEvents API. func (client AuditClient) ListEvents(ctx context.Context, request ListEventsRequest) (response ListEventsResponse, err error) { @@ -205,7 +205,7 @@ func (client AuditClient) listEvents(ctx context.Context, request common.OCIRequ // UpdateConfiguration Update the configuration // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/audit/UpdateConfiguration.go.html to see an example of how to use UpdateConfiguration API. func (client AuditClient) UpdateConfiguration(ctx context.Context, request UpdateConfigurationRequest) (response UpdateConfigurationResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/autoscaling_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/autoscaling_client.go index 0101d632a1d..4c411a0ba07 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/autoscaling_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/autoscaling_client.go @@ -101,7 +101,7 @@ func (client *AutoScalingClient) ConfigurationProvider() *common.ConfigurationPr // When you move an autoscaling configuration to a different compartment, associated resources such as instance // pools are not moved. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/ChangeAutoScalingConfigurationCompartment.go.html to see an example of how to use ChangeAutoScalingConfigurationCompartment API. func (client AutoScalingClient) ChangeAutoScalingConfigurationCompartment(ctx context.Context, request ChangeAutoScalingConfigurationCompartmentRequest) (response ChangeAutoScalingConfigurationCompartmentResponse, err error) { @@ -163,7 +163,7 @@ func (client AutoScalingClient) changeAutoScalingConfigurationCompartment(ctx co // CreateAutoScalingConfiguration Creates an autoscaling configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/CreateAutoScalingConfiguration.go.html to see an example of how to use CreateAutoScalingConfiguration API. func (client AutoScalingClient) CreateAutoScalingConfiguration(ctx context.Context, request CreateAutoScalingConfigurationRequest) (response CreateAutoScalingConfigurationResponse, err error) { @@ -230,7 +230,7 @@ func (client AutoScalingClient) createAutoScalingConfiguration(ctx context.Conte // An autoscaling configuration can either have multiple schedule-based autoscaling policies, or one // threshold-based autoscaling policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/CreateAutoScalingPolicy.go.html to see an example of how to use CreateAutoScalingPolicy API. func (client AutoScalingClient) CreateAutoScalingPolicy(ctx context.Context, request CreateAutoScalingPolicyRequest) (response CreateAutoScalingPolicyResponse, err error) { @@ -292,7 +292,7 @@ func (client AutoScalingClient) createAutoScalingPolicy(ctx context.Context, req // DeleteAutoScalingConfiguration Deletes an autoscaling configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/DeleteAutoScalingConfiguration.go.html to see an example of how to use DeleteAutoScalingConfiguration API. func (client AutoScalingClient) DeleteAutoScalingConfiguration(ctx context.Context, request DeleteAutoScalingConfigurationRequest) (response DeleteAutoScalingConfigurationResponse, err error) { @@ -349,7 +349,7 @@ func (client AutoScalingClient) deleteAutoScalingConfiguration(ctx context.Conte // DeleteAutoScalingPolicy Deletes an autoscaling policy for the specified autoscaling configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/DeleteAutoScalingPolicy.go.html to see an example of how to use DeleteAutoScalingPolicy API. func (client AutoScalingClient) DeleteAutoScalingPolicy(ctx context.Context, request DeleteAutoScalingPolicyRequest) (response DeleteAutoScalingPolicyResponse, err error) { @@ -406,7 +406,7 @@ func (client AutoScalingClient) deleteAutoScalingPolicy(ctx context.Context, req // GetAutoScalingConfiguration Gets information about the specified autoscaling configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/GetAutoScalingConfiguration.go.html to see an example of how to use GetAutoScalingConfiguration API. func (client AutoScalingClient) GetAutoScalingConfiguration(ctx context.Context, request GetAutoScalingConfigurationRequest) (response GetAutoScalingConfigurationResponse, err error) { @@ -463,7 +463,7 @@ func (client AutoScalingClient) getAutoScalingConfiguration(ctx context.Context, // GetAutoScalingPolicy Gets information about the specified autoscaling policy in the specified autoscaling configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/GetAutoScalingPolicy.go.html to see an example of how to use GetAutoScalingPolicy API. func (client AutoScalingClient) GetAutoScalingPolicy(ctx context.Context, request GetAutoScalingPolicyRequest) (response GetAutoScalingPolicyResponse, err error) { @@ -520,7 +520,7 @@ func (client AutoScalingClient) getAutoScalingPolicy(ctx context.Context, reques // ListAutoScalingConfigurations Lists autoscaling configurations in the specifed compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/ListAutoScalingConfigurations.go.html to see an example of how to use ListAutoScalingConfigurations API. func (client AutoScalingClient) ListAutoScalingConfigurations(ctx context.Context, request ListAutoScalingConfigurationsRequest) (response ListAutoScalingConfigurationsResponse, err error) { @@ -577,7 +577,7 @@ func (client AutoScalingClient) listAutoScalingConfigurations(ctx context.Contex // ListAutoScalingPolicies Lists the autoscaling policies in the specified autoscaling configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/ListAutoScalingPolicies.go.html to see an example of how to use ListAutoScalingPolicies API. func (client AutoScalingClient) ListAutoScalingPolicies(ctx context.Context, request ListAutoScalingPoliciesRequest) (response ListAutoScalingPoliciesResponse, err error) { @@ -635,7 +635,7 @@ func (client AutoScalingClient) listAutoScalingPolicies(ctx context.Context, req // UpdateAutoScalingConfiguration Updates certain fields on the specified autoscaling configuration, such as the name, the cooldown period, // and whether the autoscaling configuration is enabled. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/UpdateAutoScalingConfiguration.go.html to see an example of how to use UpdateAutoScalingConfiguration API. func (client AutoScalingClient) UpdateAutoScalingConfiguration(ctx context.Context, request UpdateAutoScalingConfigurationRequest) (response UpdateAutoScalingConfigurationResponse, err error) { @@ -697,7 +697,7 @@ func (client AutoScalingClient) updateAutoScalingConfiguration(ctx context.Conte // UpdateAutoScalingPolicy Updates an autoscaling policy in the specified autoscaling configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/autoscaling/UpdateAutoScalingPolicy.go.html to see an example of how to use UpdateAutoScalingPolicy API. func (client AutoScalingClient) UpdateAutoScalingPolicy(ctx context.Context, request UpdateAutoScalingPolicyRequest) (response UpdateAutoScalingPolicyResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/create_scheduled_policy_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/create_scheduled_policy_details.go index 5c5ffb3b0ae..c1f7da53f80 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/create_scheduled_policy_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/create_scheduled_policy_details.go @@ -37,17 +37,17 @@ type CreateScheduledPolicyDetails struct { ResourceAction ResourceAction `mandatory:"false" json:"resourceAction"` } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m CreateScheduledPolicyDetails) GetCapacity() *Capacity { return m.Capacity } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateScheduledPolicyDetails) GetDisplayName() *string { return m.DisplayName } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m CreateScheduledPolicyDetails) GetIsEnabled() *bool { return m.IsEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/create_threshold_policy_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/create_threshold_policy_details.go index b6dacfb6423..b98e5b21bd5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/create_threshold_policy_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/create_threshold_policy_details.go @@ -36,17 +36,17 @@ type CreateThresholdPolicyDetails struct { IsEnabled *bool `mandatory:"false" json:"isEnabled"` } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m CreateThresholdPolicyDetails) GetCapacity() *Capacity { return m.Capacity } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateThresholdPolicyDetails) GetDisplayName() *string { return m.DisplayName } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m CreateThresholdPolicyDetails) GetIsEnabled() *bool { return m.IsEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/cron_execution_schedule.go b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/cron_execution_schedule.go index 076508d8951..3ec8b1ef688 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/cron_execution_schedule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/cron_execution_schedule.go @@ -34,7 +34,7 @@ type CronExecutionSchedule struct { Timezone ExecutionScheduleTimezoneEnum `mandatory:"true" json:"timezone"` } -//GetTimezone returns Timezone +// GetTimezone returns Timezone func (m CronExecutionSchedule) GetTimezone() ExecutionScheduleTimezoneEnum { return m.Timezone } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/instance_pool_resource.go b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/instance_pool_resource.go index fd0a2c3a78b..f310ce40dcb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/instance_pool_resource.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/instance_pool_resource.go @@ -27,7 +27,7 @@ type InstancePoolResource struct { Id *string `mandatory:"true" json:"id"` } -//GetId returns Id +// GetId returns Id func (m InstancePoolResource) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/scheduled_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/scheduled_policy.go index e4dfdac1a57..30220c4160c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/scheduled_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/scheduled_policy.go @@ -45,27 +45,27 @@ type ScheduledPolicy struct { ResourceAction ResourceAction `mandatory:"false" json:"resourceAction"` } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m ScheduledPolicy) GetCapacity() *Capacity { return m.Capacity } -//GetId returns Id +// GetId returns Id func (m ScheduledPolicy) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ScheduledPolicy) GetDisplayName() *string { return m.DisplayName } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ScheduledPolicy) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m ScheduledPolicy) GetIsEnabled() *bool { return m.IsEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/threshold_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/threshold_policy.go index 23a69b02126..d1234370d25 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/threshold_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/threshold_policy.go @@ -42,27 +42,27 @@ type ThresholdPolicy struct { IsEnabled *bool `mandatory:"false" json:"isEnabled"` } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m ThresholdPolicy) GetCapacity() *Capacity { return m.Capacity } -//GetId returns Id +// GetId returns Id func (m ThresholdPolicy) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ThresholdPolicy) GetDisplayName() *string { return m.DisplayName } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ThresholdPolicy) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m ThresholdPolicy) GetIsEnabled() *bool { return m.IsEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/update_scheduled_policy_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/update_scheduled_policy_details.go index 68304057fa4..c2c63d2ad30 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/update_scheduled_policy_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/update_scheduled_policy_details.go @@ -38,17 +38,17 @@ type UpdateScheduledPolicyDetails struct { ResourceAction ResourceAction `mandatory:"false" json:"resourceAction"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateScheduledPolicyDetails) GetDisplayName() *string { return m.DisplayName } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m UpdateScheduledPolicyDetails) GetCapacity() *Capacity { return m.Capacity } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m UpdateScheduledPolicyDetails) GetIsEnabled() *bool { return m.IsEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/update_threshold_policy_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/update_threshold_policy_details.go index 324bbd724a4..2ef4f7c52ab 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/update_threshold_policy_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/autoscaling/update_threshold_policy_details.go @@ -35,17 +35,17 @@ type UpdateThresholdPolicyDetails struct { Rules []UpdateConditionDetails `mandatory:"false" json:"rules"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateThresholdPolicyDetails) GetDisplayName() *string { return m.DisplayName } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m UpdateThresholdPolicyDetails) GetCapacity() *Capacity { return m.Capacity } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m UpdateThresholdPolicyDetails) GetIsEnabled() *bool { return m.IsEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/bastion/bastion_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/bastion/bastion_client.go index 8550ed85e85..27b45249ad2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/bastion/bastion_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/bastion/bastion_client.go @@ -93,7 +93,7 @@ func (client *BastionClient) ConfigurationProvider() *common.ConfigurationProvid // ChangeBastionCompartment Moves a bastion into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/ChangeBastionCompartment.go.html to see an example of how to use ChangeBastionCompartment API. func (client BastionClient) ChangeBastionCompartment(ctx context.Context, request ChangeBastionCompartmentRequest) (response ChangeBastionCompartmentResponse, err error) { @@ -150,7 +150,7 @@ func (client BastionClient) changeBastionCompartment(ctx context.Context, reques // CreateBastion Creates a new bastion. A bastion provides secured, public access to target resources in the cloud that you cannot otherwise reach from the internet. A bastion resides in a public subnet and establishes the network infrastructure needed to connect a user to a target resource in a private subnet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/CreateBastion.go.html to see an example of how to use CreateBastion API. func (client BastionClient) CreateBastion(ctx context.Context, request CreateBastionRequest) (response CreateBastionResponse, err error) { @@ -212,7 +212,7 @@ func (client BastionClient) createBastion(ctx context.Context, request common.OC // CreateSession Creates a new session in a bastion. A bastion session lets authorized users connect to a target resource for a predetermined amount of time. The Bastion service recognizes two types of sessions, managed SSH sessions and SSH port forwarding sessions. Managed SSH sessions require that the target resource has an OpenSSH server and the Oracle Cloud Agent both running. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/CreateSession.go.html to see an example of how to use CreateSession API. func (client BastionClient) CreateSession(ctx context.Context, request CreateSessionRequest) (response CreateSessionResponse, err error) { @@ -274,7 +274,7 @@ func (client BastionClient) createSession(ctx context.Context, request common.OC // DeleteBastion Deletes a bastion identified by the bastion ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/DeleteBastion.go.html to see an example of how to use DeleteBastion API. func (client BastionClient) DeleteBastion(ctx context.Context, request DeleteBastionRequest) (response DeleteBastionResponse, err error) { @@ -331,7 +331,7 @@ func (client BastionClient) deleteBastion(ctx context.Context, request common.OC // DeleteSession Deletes a session identified by the session ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/DeleteSession.go.html to see an example of how to use DeleteSession API. func (client BastionClient) DeleteSession(ctx context.Context, request DeleteSessionRequest) (response DeleteSessionResponse, err error) { @@ -388,7 +388,7 @@ func (client BastionClient) deleteSession(ctx context.Context, request common.OC // GetBastion Retrieves a bastion identified by the bastion ID. A bastion provides secured, public access to target resources in the cloud that you cannot otherwise reach from the internet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/GetBastion.go.html to see an example of how to use GetBastion API. // A default retry strategy applies to this operation GetBastion() @@ -446,7 +446,7 @@ func (client BastionClient) getBastion(ctx context.Context, request common.OCIRe // GetSession Retrieves a session identified by the session ID. A bastion session lets authorized users connect to a target resource for a predetermined amount of time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/GetSession.go.html to see an example of how to use GetSession API. // A default retry strategy applies to this operation GetSession() @@ -504,7 +504,7 @@ func (client BastionClient) getSession(ctx context.Context, request common.OCIRe // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client BastionClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -561,7 +561,7 @@ func (client BastionClient) getWorkRequest(ctx context.Context, request common.O // ListBastions Retrieves a list of BastionSummary objects in a compartment. Bastions provide secured, public access to target resources in the cloud that you cannot otherwise reach from the internet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/ListBastions.go.html to see an example of how to use ListBastions API. func (client BastionClient) ListBastions(ctx context.Context, request ListBastionsRequest) (response ListBastionsResponse, err error) { @@ -618,7 +618,7 @@ func (client BastionClient) listBastions(ctx context.Context, request common.OCI // ListSessions Retrieves a list of SessionSummary objects for an existing bastion. Bastion sessions let authorized users connect to a target resource for a predetermined amount of time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/ListSessions.go.html to see an example of how to use ListSessions API. func (client BastionClient) ListSessions(ctx context.Context, request ListSessionsRequest) (response ListSessionsResponse, err error) { @@ -675,7 +675,7 @@ func (client BastionClient) listSessions(ctx context.Context, request common.OCI // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client BastionClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -732,7 +732,7 @@ func (client BastionClient) listWorkRequestErrors(ctx context.Context, request c // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client BastionClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -789,7 +789,7 @@ func (client BastionClient) listWorkRequestLogs(ctx context.Context, request com // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client BastionClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -846,7 +846,7 @@ func (client BastionClient) listWorkRequests(ctx context.Context, request common // UpdateBastion Updates the bastion identified by the bastion ID. A bastion provides secured, public access to target resources in the cloud that you cannot otherwise reach from the internet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/UpdateBastion.go.html to see an example of how to use UpdateBastion API. // A default retry strategy applies to this operation UpdateBastion() @@ -904,7 +904,7 @@ func (client BastionClient) updateBastion(ctx context.Context, request common.OC // UpdateSession Updates the session identified by the session ID. A bastion session lets authorized users connect to a target resource for a predetermined amount of time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bastion/UpdateSession.go.html to see an example of how to use UpdateSession API. // A default retry strategy applies to this operation UpdateSession() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/bds/bds_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/bds/bds_client.go index 13b5ee068fa..cc47898f347 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/bds/bds_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/bds/bds_client.go @@ -93,7 +93,7 @@ func (client *BdsClient) ConfigurationProvider() *common.ConfigurationProvider { // ActivateBdsMetastoreConfiguration Activate specified metastore configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ActivateBdsMetastoreConfiguration.go.html to see an example of how to use ActivateBdsMetastoreConfiguration API. func (client BdsClient) ActivateBdsMetastoreConfiguration(ctx context.Context, request ActivateBdsMetastoreConfigurationRequest) (response ActivateBdsMetastoreConfigurationResponse, err error) { @@ -155,7 +155,7 @@ func (client BdsClient) activateBdsMetastoreConfiguration(ctx context.Context, r // AddAutoScalingConfiguration Add an autoscale configuration to the cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/AddAutoScalingConfiguration.go.html to see an example of how to use AddAutoScalingConfiguration API. func (client BdsClient) AddAutoScalingConfiguration(ctx context.Context, request AddAutoScalingConfigurationRequest) (response AddAutoScalingConfigurationResponse, err error) { @@ -217,7 +217,7 @@ func (client BdsClient) addAutoScalingConfiguration(ctx context.Context, request // AddBlockStorage Adds block storage to existing worker/compute only worker nodes. The same amount of storage will be added to all worker/compute only worker nodes. No change will be made to storage that is already attached. Block storage cannot be removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/AddBlockStorage.go.html to see an example of how to use AddBlockStorage API. func (client BdsClient) AddBlockStorage(ctx context.Context, request AddBlockStorageRequest) (response AddBlockStorageResponse, err error) { @@ -279,7 +279,7 @@ func (client BdsClient) addBlockStorage(ctx context.Context, request common.OCIR // AddCloudSql Adds Cloud SQL to your cluster. You can use Cloud SQL to query against non-relational data stored in multiple big data sources, including Apache Hive, HDFS, Oracle NoSQL Database, and Apache HBase. Adding Cloud SQL adds a query server node to the cluster and creates cell servers on all the worker nodes in the cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/AddCloudSql.go.html to see an example of how to use AddCloudSql API. func (client BdsClient) AddCloudSql(ctx context.Context, request AddCloudSqlRequest) (response AddCloudSqlResponse, err error) { @@ -341,7 +341,7 @@ func (client BdsClient) addCloudSql(ctx context.Context, request common.OCIReque // AddKafka Adds Kafka to a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/AddKafka.go.html to see an example of how to use AddKafka API. func (client BdsClient) AddKafka(ctx context.Context, request AddKafkaRequest) (response AddKafkaResponse, err error) { @@ -403,7 +403,7 @@ func (client BdsClient) addKafka(ctx context.Context, request common.OCIRequest, // AddMasterNodes Increases the size (scales out) of a cluster by adding master nodes. The added master nodes will have the same shape and will have the same amount of attached block storage as other master nodes in the cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/AddMasterNodes.go.html to see an example of how to use AddMasterNodes API. func (client BdsClient) AddMasterNodes(ctx context.Context, request AddMasterNodesRequest) (response AddMasterNodesResponse, err error) { @@ -465,7 +465,7 @@ func (client BdsClient) addMasterNodes(ctx context.Context, request common.OCIRe // AddUtilityNodes Increases the size (scales out) of a cluster by adding utility nodes. The added utility nodes will have the same shape and will have the same amount of attached block storage as other utility nodes in the cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/AddUtilityNodes.go.html to see an example of how to use AddUtilityNodes API. func (client BdsClient) AddUtilityNodes(ctx context.Context, request AddUtilityNodesRequest) (response AddUtilityNodesResponse, err error) { @@ -527,7 +527,7 @@ func (client BdsClient) addUtilityNodes(ctx context.Context, request common.OCIR // AddWorkerNodes Increases the size (scales out) a cluster by adding worker nodes(data/compute). The added worker nodes will have the same shape and will have the same amount of attached block storage as other worker nodes in the cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/AddWorkerNodes.go.html to see an example of how to use AddWorkerNodes API. func (client BdsClient) AddWorkerNodes(ctx context.Context, request AddWorkerNodesRequest) (response AddWorkerNodesResponse, err error) { @@ -589,7 +589,7 @@ func (client BdsClient) addWorkerNodes(ctx context.Context, request common.OCIRe // ChangeBdsInstanceCompartment Moves a Big Data Service cluster into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ChangeBdsInstanceCompartment.go.html to see an example of how to use ChangeBdsInstanceCompartment API. func (client BdsClient) ChangeBdsInstanceCompartment(ctx context.Context, request ChangeBdsInstanceCompartmentRequest) (response ChangeBdsInstanceCompartmentResponse, err error) { @@ -651,7 +651,7 @@ func (client BdsClient) changeBdsInstanceCompartment(ctx context.Context, reques // ChangeShape Changes the size of a cluster by scaling up or scaling down the nodes. Nodes are scaled up or down by changing the shapes of all the nodes of the same type to the next larger or smaller shape. The node types are master, utility, worker, and Cloud SQL. Only nodes with VM-STANDARD shapes can be scaled. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ChangeShape.go.html to see an example of how to use ChangeShape API. func (client BdsClient) ChangeShape(ctx context.Context, request ChangeShapeRequest) (response ChangeShapeResponse, err error) { @@ -713,7 +713,7 @@ func (client BdsClient) changeShape(ctx context.Context, request common.OCIReque // CreateBdsApiKey Create an API key on behalf of the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/CreateBdsApiKey.go.html to see an example of how to use CreateBdsApiKey API. func (client BdsClient) CreateBdsApiKey(ctx context.Context, request CreateBdsApiKeyRequest) (response CreateBdsApiKeyResponse, err error) { @@ -775,7 +775,7 @@ func (client BdsClient) createBdsApiKey(ctx context.Context, request common.OCIR // CreateBdsInstance Creates a Big Data Service cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/CreateBdsInstance.go.html to see an example of how to use CreateBdsInstance API. func (client BdsClient) CreateBdsInstance(ctx context.Context, request CreateBdsInstanceRequest) (response CreateBdsInstanceResponse, err error) { @@ -837,7 +837,7 @@ func (client BdsClient) createBdsInstance(ctx context.Context, request common.OC // CreateBdsMetastoreConfiguration Create and activate external metastore configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/CreateBdsMetastoreConfiguration.go.html to see an example of how to use CreateBdsMetastoreConfiguration API. func (client BdsClient) CreateBdsMetastoreConfiguration(ctx context.Context, request CreateBdsMetastoreConfigurationRequest) (response CreateBdsMetastoreConfigurationResponse, err error) { @@ -899,7 +899,7 @@ func (client BdsClient) createBdsMetastoreConfiguration(ctx context.Context, req // DeleteBdsApiKey Deletes the user's API key represented by the provided ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/DeleteBdsApiKey.go.html to see an example of how to use DeleteBdsApiKey API. func (client BdsClient) DeleteBdsApiKey(ctx context.Context, request DeleteBdsApiKeyRequest) (response DeleteBdsApiKeyResponse, err error) { @@ -956,7 +956,7 @@ func (client BdsClient) deleteBdsApiKey(ctx context.Context, request common.OCIR // DeleteBdsInstance Deletes the cluster identified by the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/DeleteBdsInstance.go.html to see an example of how to use DeleteBdsInstance API. func (client BdsClient) DeleteBdsInstance(ctx context.Context, request DeleteBdsInstanceRequest) (response DeleteBdsInstanceResponse, err error) { @@ -1013,7 +1013,7 @@ func (client BdsClient) deleteBdsInstance(ctx context.Context, request common.OC // DeleteBdsMetastoreConfiguration Delete the BDS metastore configuration represented by the provided ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/DeleteBdsMetastoreConfiguration.go.html to see an example of how to use DeleteBdsMetastoreConfiguration API. func (client BdsClient) DeleteBdsMetastoreConfiguration(ctx context.Context, request DeleteBdsMetastoreConfigurationRequest) (response DeleteBdsMetastoreConfigurationResponse, err error) { @@ -1070,7 +1070,7 @@ func (client BdsClient) deleteBdsMetastoreConfiguration(ctx context.Context, req // ExecuteBootstrapScript Execute bootstrap script. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ExecuteBootstrapScript.go.html to see an example of how to use ExecuteBootstrapScript API. func (client BdsClient) ExecuteBootstrapScript(ctx context.Context, request ExecuteBootstrapScriptRequest) (response ExecuteBootstrapScriptResponse, err error) { @@ -1132,7 +1132,7 @@ func (client BdsClient) executeBootstrapScript(ctx context.Context, request comm // GetAutoScalingConfiguration Returns details of the autoscale configuration identified by the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/GetAutoScalingConfiguration.go.html to see an example of how to use GetAutoScalingConfiguration API. func (client BdsClient) GetAutoScalingConfiguration(ctx context.Context, request GetAutoScalingConfigurationRequest) (response GetAutoScalingConfigurationResponse, err error) { @@ -1189,7 +1189,7 @@ func (client BdsClient) getAutoScalingConfiguration(ctx context.Context, request // GetBdsApiKey Returns the user's API key information for the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/GetBdsApiKey.go.html to see an example of how to use GetBdsApiKey API. func (client BdsClient) GetBdsApiKey(ctx context.Context, request GetBdsApiKeyRequest) (response GetBdsApiKeyResponse, err error) { @@ -1246,7 +1246,7 @@ func (client BdsClient) getBdsApiKey(ctx context.Context, request common.OCIRequ // GetBdsInstance Returns information about the Big Data Service cluster identified by the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/GetBdsInstance.go.html to see an example of how to use GetBdsInstance API. func (client BdsClient) GetBdsInstance(ctx context.Context, request GetBdsInstanceRequest) (response GetBdsInstanceResponse, err error) { @@ -1303,7 +1303,7 @@ func (client BdsClient) getBdsInstance(ctx context.Context, request common.OCIRe // GetBdsMetastoreConfiguration Returns the BDS Metastore configuration information for the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/GetBdsMetastoreConfiguration.go.html to see an example of how to use GetBdsMetastoreConfiguration API. func (client BdsClient) GetBdsMetastoreConfiguration(ctx context.Context, request GetBdsMetastoreConfigurationRequest) (response GetBdsMetastoreConfigurationResponse, err error) { @@ -1360,7 +1360,7 @@ func (client BdsClient) getBdsMetastoreConfiguration(ctx context.Context, reques // GetOsPatchDetails Get the details of an os patch // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/GetOsPatchDetails.go.html to see an example of how to use GetOsPatchDetails API. func (client BdsClient) GetOsPatchDetails(ctx context.Context, request GetOsPatchDetailsRequest) (response GetOsPatchDetailsResponse, err error) { @@ -1422,7 +1422,7 @@ func (client BdsClient) getOsPatchDetails(ctx context.Context, request common.OC // GetWorkRequest Returns the status of the work request identified by the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client BdsClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -1479,7 +1479,7 @@ func (client BdsClient) getWorkRequest(ctx context.Context, request common.OCIRe // InstallOsPatch Install an os patch on a cluster // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/InstallOsPatch.go.html to see an example of how to use InstallOsPatch API. func (client BdsClient) InstallOsPatch(ctx context.Context, request InstallOsPatchRequest) (response InstallOsPatchResponse, err error) { @@ -1541,7 +1541,7 @@ func (client BdsClient) installOsPatch(ctx context.Context, request common.OCIRe // InstallPatch Install the specified patch to this cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/InstallPatch.go.html to see an example of how to use InstallPatch API. func (client BdsClient) InstallPatch(ctx context.Context, request InstallPatchRequest) (response InstallPatchResponse, err error) { @@ -1603,7 +1603,7 @@ func (client BdsClient) installPatch(ctx context.Context, request common.OCIRequ // ListAutoScalingConfigurations Returns information about the autoscaling configurations for a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListAutoScalingConfigurations.go.html to see an example of how to use ListAutoScalingConfigurations API. func (client BdsClient) ListAutoScalingConfigurations(ctx context.Context, request ListAutoScalingConfigurationsRequest) (response ListAutoScalingConfigurationsResponse, err error) { @@ -1660,7 +1660,7 @@ func (client BdsClient) listAutoScalingConfigurations(ctx context.Context, reque // ListBdsApiKeys Returns a list of all API keys associated with this Big Data Service cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListBdsApiKeys.go.html to see an example of how to use ListBdsApiKeys API. func (client BdsClient) ListBdsApiKeys(ctx context.Context, request ListBdsApiKeysRequest) (response ListBdsApiKeysResponse, err error) { @@ -1717,7 +1717,7 @@ func (client BdsClient) listBdsApiKeys(ctx context.Context, request common.OCIRe // ListBdsInstances Returns a list of all Big Data Service clusters in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListBdsInstances.go.html to see an example of how to use ListBdsInstances API. func (client BdsClient) ListBdsInstances(ctx context.Context, request ListBdsInstancesRequest) (response ListBdsInstancesResponse, err error) { @@ -1774,7 +1774,7 @@ func (client BdsClient) listBdsInstances(ctx context.Context, request common.OCI // ListBdsMetastoreConfigurations Returns a list of metastore configurations ssociated with this Big Data Service cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListBdsMetastoreConfigurations.go.html to see an example of how to use ListBdsMetastoreConfigurations API. func (client BdsClient) ListBdsMetastoreConfigurations(ctx context.Context, request ListBdsMetastoreConfigurationsRequest) (response ListBdsMetastoreConfigurationsResponse, err error) { @@ -1831,7 +1831,7 @@ func (client BdsClient) listBdsMetastoreConfigurations(ctx context.Context, requ // ListOsPatches List all available os patches for a given cluster // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListOsPatches.go.html to see an example of how to use ListOsPatches API. func (client BdsClient) ListOsPatches(ctx context.Context, request ListOsPatchesRequest) (response ListOsPatchesResponse, err error) { @@ -1893,7 +1893,7 @@ func (client BdsClient) listOsPatches(ctx context.Context, request common.OCIReq // ListPatchHistories List the patch history of this cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListPatchHistories.go.html to see an example of how to use ListPatchHistories API. func (client BdsClient) ListPatchHistories(ctx context.Context, request ListPatchHistoriesRequest) (response ListPatchHistoriesResponse, err error) { @@ -1950,7 +1950,7 @@ func (client BdsClient) listPatchHistories(ctx context.Context, request common.O // ListPatches List all the available patches for this cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListPatches.go.html to see an example of how to use ListPatches API. func (client BdsClient) ListPatches(ctx context.Context, request ListPatchesRequest) (response ListPatchesResponse, err error) { @@ -2007,7 +2007,7 @@ func (client BdsClient) listPatches(ctx context.Context, request common.OCIReque // ListWorkRequestErrors Returns a paginated list of errors for a work request identified by the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client BdsClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -2064,7 +2064,7 @@ func (client BdsClient) listWorkRequestErrors(ctx context.Context, request commo // ListWorkRequestLogs Returns a paginated list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client BdsClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -2121,7 +2121,7 @@ func (client BdsClient) listWorkRequestLogs(ctx context.Context, request common. // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client BdsClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -2178,7 +2178,7 @@ func (client BdsClient) listWorkRequests(ctx context.Context, request common.OCI // RemoveAutoScalingConfiguration Deletes an autoscale configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/RemoveAutoScalingConfiguration.go.html to see an example of how to use RemoveAutoScalingConfiguration API. func (client BdsClient) RemoveAutoScalingConfiguration(ctx context.Context, request RemoveAutoScalingConfigurationRequest) (response RemoveAutoScalingConfigurationResponse, err error) { @@ -2240,7 +2240,7 @@ func (client BdsClient) removeAutoScalingConfiguration(ctx context.Context, requ // RemoveCloudSql Removes Cloud SQL from the cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/RemoveCloudSql.go.html to see an example of how to use RemoveCloudSql API. func (client BdsClient) RemoveCloudSql(ctx context.Context, request RemoveCloudSqlRequest) (response RemoveCloudSqlResponse, err error) { @@ -2302,7 +2302,7 @@ func (client BdsClient) removeCloudSql(ctx context.Context, request common.OCIRe // RemoveKafka Remove Kafka from the cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/RemoveKafka.go.html to see an example of how to use RemoveKafka API. func (client BdsClient) RemoveKafka(ctx context.Context, request RemoveKafkaRequest) (response RemoveKafkaResponse, err error) { @@ -2364,7 +2364,7 @@ func (client BdsClient) removeKafka(ctx context.Context, request common.OCIReque // RemoveNode Remove a single node of a Big Data Service cluster // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/RemoveNode.go.html to see an example of how to use RemoveNode API. func (client BdsClient) RemoveNode(ctx context.Context, request RemoveNodeRequest) (response RemoveNodeResponse, err error) { @@ -2421,7 +2421,7 @@ func (client BdsClient) removeNode(ctx context.Context, request common.OCIReques // RestartNode Restarts a single node of a Big Data Service cluster // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/RestartNode.go.html to see an example of how to use RestartNode API. func (client BdsClient) RestartNode(ctx context.Context, request RestartNodeRequest) (response RestartNodeResponse, err error) { @@ -2483,7 +2483,7 @@ func (client BdsClient) restartNode(ctx context.Context, request common.OCIReque // StartBdsInstance Starts the BDS cluster that was stopped earlier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/StartBdsInstance.go.html to see an example of how to use StartBdsInstance API. func (client BdsClient) StartBdsInstance(ctx context.Context, request StartBdsInstanceRequest) (response StartBdsInstanceResponse, err error) { @@ -2540,7 +2540,7 @@ func (client BdsClient) startBdsInstance(ctx context.Context, request common.OCI // StopBdsInstance Stops the BDS cluster that can be started at later point of time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/StopBdsInstance.go.html to see an example of how to use StopBdsInstance API. func (client BdsClient) StopBdsInstance(ctx context.Context, request StopBdsInstanceRequest) (response StopBdsInstanceResponse, err error) { @@ -2597,7 +2597,7 @@ func (client BdsClient) stopBdsInstance(ctx context.Context, request common.OCIR // TestBdsMetastoreConfiguration Test specified metastore configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/TestBdsMetastoreConfiguration.go.html to see an example of how to use TestBdsMetastoreConfiguration API. func (client BdsClient) TestBdsMetastoreConfiguration(ctx context.Context, request TestBdsMetastoreConfigurationRequest) (response TestBdsMetastoreConfigurationResponse, err error) { @@ -2654,7 +2654,7 @@ func (client BdsClient) testBdsMetastoreConfiguration(ctx context.Context, reque // TestBdsObjectStorageConnection Test access to specified Object Storage bucket using the API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/TestBdsObjectStorageConnection.go.html to see an example of how to use TestBdsObjectStorageConnection API. func (client BdsClient) TestBdsObjectStorageConnection(ctx context.Context, request TestBdsObjectStorageConnectionRequest) (response TestBdsObjectStorageConnectionResponse, err error) { @@ -2711,7 +2711,7 @@ func (client BdsClient) testBdsObjectStorageConnection(ctx context.Context, requ // UpdateAutoScalingConfiguration Updates fields on an autoscale configuration, including the name, the threshold value, and whether the autoscale configuration is enabled. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/UpdateAutoScalingConfiguration.go.html to see an example of how to use UpdateAutoScalingConfiguration API. func (client BdsClient) UpdateAutoScalingConfiguration(ctx context.Context, request UpdateAutoScalingConfigurationRequest) (response UpdateAutoScalingConfigurationResponse, err error) { @@ -2773,7 +2773,7 @@ func (client BdsClient) updateAutoScalingConfiguration(ctx context.Context, requ // UpdateBdsInstance Updates the Big Data Service cluster identified by the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/UpdateBdsInstance.go.html to see an example of how to use UpdateBdsInstance API. func (client BdsClient) UpdateBdsInstance(ctx context.Context, request UpdateBdsInstanceRequest) (response UpdateBdsInstanceResponse, err error) { @@ -2830,7 +2830,7 @@ func (client BdsClient) updateBdsInstance(ctx context.Context, request common.OC // UpdateBdsMetastoreConfiguration Update the BDS metastore configuration represented by the provided ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/bds/UpdateBdsMetastoreConfiguration.go.html to see an example of how to use UpdateBdsMetastoreConfiguration API. func (client BdsClient) UpdateBdsMetastoreConfiguration(ctx context.Context, request UpdateBdsMetastoreConfigurationRequest) (response UpdateBdsMetastoreConfigurationResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/bds/metric_based_horizontal_scaling_policy_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/bds/metric_based_horizontal_scaling_policy_details.go index 5601fbb9928..7ad8bc6385c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/bds/metric_based_horizontal_scaling_policy_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/bds/metric_based_horizontal_scaling_policy_details.go @@ -30,12 +30,12 @@ type MetricBasedHorizontalScalingPolicyDetails struct { ActionType AutoScalePolicyDetailsActionTypeEnum `mandatory:"true" json:"actionType"` } -//GetTriggerType returns TriggerType +// GetTriggerType returns TriggerType func (m MetricBasedHorizontalScalingPolicyDetails) GetTriggerType() AutoScalePolicyDetailsTriggerTypeEnum { return m.TriggerType } -//GetActionType returns ActionType +// GetActionType returns ActionType func (m MetricBasedHorizontalScalingPolicyDetails) GetActionType() AutoScalePolicyDetailsActionTypeEnum { return m.ActionType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/bds/metric_based_vertical_scaling_policy_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/bds/metric_based_vertical_scaling_policy_details.go index e1f5bef72ae..b9461f1496d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/bds/metric_based_vertical_scaling_policy_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/bds/metric_based_vertical_scaling_policy_details.go @@ -30,12 +30,12 @@ type MetricBasedVerticalScalingPolicyDetails struct { ActionType AutoScalePolicyDetailsActionTypeEnum `mandatory:"true" json:"actionType"` } -//GetTriggerType returns TriggerType +// GetTriggerType returns TriggerType func (m MetricBasedVerticalScalingPolicyDetails) GetTriggerType() AutoScalePolicyDetailsTriggerTypeEnum { return m.TriggerType } -//GetActionType returns ActionType +// GetActionType returns ActionType func (m MetricBasedVerticalScalingPolicyDetails) GetActionType() AutoScalePolicyDetailsActionTypeEnum { return m.ActionType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/bds/schedule_based_horizontal_scaling_policy_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/bds/schedule_based_horizontal_scaling_policy_details.go index 0291e9e1ceb..a24c00af8ac 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/bds/schedule_based_horizontal_scaling_policy_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/bds/schedule_based_horizontal_scaling_policy_details.go @@ -33,12 +33,12 @@ type ScheduleBasedHorizontalScalingPolicyDetails struct { ActionType AutoScalePolicyDetailsActionTypeEnum `mandatory:"true" json:"actionType"` } -//GetTriggerType returns TriggerType +// GetTriggerType returns TriggerType func (m ScheduleBasedHorizontalScalingPolicyDetails) GetTriggerType() AutoScalePolicyDetailsTriggerTypeEnum { return m.TriggerType } -//GetActionType returns ActionType +// GetActionType returns ActionType func (m ScheduleBasedHorizontalScalingPolicyDetails) GetActionType() AutoScalePolicyDetailsActionTypeEnum { return m.ActionType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/bds/schedule_based_vertical_scaling_policy_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/bds/schedule_based_vertical_scaling_policy_details.go index 86eaef14952..bfbabb72a0d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/bds/schedule_based_vertical_scaling_policy_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/bds/schedule_based_vertical_scaling_policy_details.go @@ -33,12 +33,12 @@ type ScheduleBasedVerticalScalingPolicyDetails struct { ActionType AutoScalePolicyDetailsActionTypeEnum `mandatory:"true" json:"actionType"` } -//GetTriggerType returns TriggerType +// GetTriggerType returns TriggerType func (m ScheduleBasedVerticalScalingPolicyDetails) GetTriggerType() AutoScalePolicyDetailsTriggerTypeEnum { return m.TriggerType } -//GetActionType returns ActionType +// GetActionType returns ActionType func (m ScheduleBasedVerticalScalingPolicyDetails) GetActionType() AutoScalePolicyDetailsActionTypeEnum { return m.ActionType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/blockchain/blockchain_blockchainplatform_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/blockchain/blockchain_blockchainplatform_client.go index 4544fda1db7..e17c82686a8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/blockchain/blockchain_blockchainplatform_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/blockchain/blockchain_blockchainplatform_client.go @@ -93,7 +93,7 @@ func (client *BlockchainPlatformClient) ConfigurationProvider() *common.Configur // ChangeBlockchainPlatformCompartment Change Blockchain Platform Compartment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/ChangeBlockchainPlatformCompartment.go.html to see an example of how to use ChangeBlockchainPlatformCompartment API. func (client BlockchainPlatformClient) ChangeBlockchainPlatformCompartment(ctx context.Context, request ChangeBlockchainPlatformCompartmentRequest) (response ChangeBlockchainPlatformCompartmentResponse, err error) { @@ -155,7 +155,7 @@ func (client BlockchainPlatformClient) changeBlockchainPlatformCompartment(ctx c // CreateBlockchainPlatform Creates a new Blockchain Platform. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/CreateBlockchainPlatform.go.html to see an example of how to use CreateBlockchainPlatform API. func (client BlockchainPlatformClient) CreateBlockchainPlatform(ctx context.Context, request CreateBlockchainPlatformRequest) (response CreateBlockchainPlatformResponse, err error) { @@ -217,7 +217,7 @@ func (client BlockchainPlatformClient) createBlockchainPlatform(ctx context.Cont // CreateOsn Create Blockchain Platform Osn // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/CreateOsn.go.html to see an example of how to use CreateOsn API. func (client BlockchainPlatformClient) CreateOsn(ctx context.Context, request CreateOsnRequest) (response CreateOsnResponse, err error) { @@ -279,7 +279,7 @@ func (client BlockchainPlatformClient) createOsn(ctx context.Context, request co // CreatePeer Create Blockchain Platform Peer // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/CreatePeer.go.html to see an example of how to use CreatePeer API. func (client BlockchainPlatformClient) CreatePeer(ctx context.Context, request CreatePeerRequest) (response CreatePeerResponse, err error) { @@ -341,7 +341,7 @@ func (client BlockchainPlatformClient) createPeer(ctx context.Context, request c // DeleteBlockchainPlatform Delete a particular of a Blockchain Platform // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/DeleteBlockchainPlatform.go.html to see an example of how to use DeleteBlockchainPlatform API. func (client BlockchainPlatformClient) DeleteBlockchainPlatform(ctx context.Context, request DeleteBlockchainPlatformRequest) (response DeleteBlockchainPlatformResponse, err error) { @@ -403,7 +403,7 @@ func (client BlockchainPlatformClient) deleteBlockchainPlatform(ctx context.Cont // DeleteOsn Delete a particular OSN of a Blockchain Platform // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/DeleteOsn.go.html to see an example of how to use DeleteOsn API. func (client BlockchainPlatformClient) DeleteOsn(ctx context.Context, request DeleteOsnRequest) (response DeleteOsnResponse, err error) { @@ -460,7 +460,7 @@ func (client BlockchainPlatformClient) deleteOsn(ctx context.Context, request co // DeletePeer Delete a particular peer of a Blockchain Platform // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/DeletePeer.go.html to see an example of how to use DeletePeer API. func (client BlockchainPlatformClient) DeletePeer(ctx context.Context, request DeletePeerRequest) (response DeletePeerResponse, err error) { @@ -522,7 +522,7 @@ func (client BlockchainPlatformClient) deletePeer(ctx context.Context, request c // DeleteWorkRequest Attempts to cancel the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/DeleteWorkRequest.go.html to see an example of how to use DeleteWorkRequest API. func (client BlockchainPlatformClient) DeleteWorkRequest(ctx context.Context, request DeleteWorkRequestRequest) (response DeleteWorkRequestResponse, err error) { @@ -579,7 +579,7 @@ func (client BlockchainPlatformClient) deleteWorkRequest(ctx context.Context, re // GetBlockchainPlatform Gets information about a Blockchain Platform identified by the specific id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/GetBlockchainPlatform.go.html to see an example of how to use GetBlockchainPlatform API. func (client BlockchainPlatformClient) GetBlockchainPlatform(ctx context.Context, request GetBlockchainPlatformRequest) (response GetBlockchainPlatformResponse, err error) { @@ -636,7 +636,7 @@ func (client BlockchainPlatformClient) getBlockchainPlatform(ctx context.Context // GetOsn Gets information about an OSN identified by the specific id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/GetOsn.go.html to see an example of how to use GetOsn API. func (client BlockchainPlatformClient) GetOsn(ctx context.Context, request GetOsnRequest) (response GetOsnResponse, err error) { @@ -693,7 +693,7 @@ func (client BlockchainPlatformClient) getOsn(ctx context.Context, request commo // GetPeer Gets information about a peer identified by the specific id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/GetPeer.go.html to see an example of how to use GetPeer API. func (client BlockchainPlatformClient) GetPeer(ctx context.Context, request GetPeerRequest) (response GetPeerResponse, err error) { @@ -750,7 +750,7 @@ func (client BlockchainPlatformClient) getPeer(ctx context.Context, request comm // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client BlockchainPlatformClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -807,7 +807,7 @@ func (client BlockchainPlatformClient) getWorkRequest(ctx context.Context, reque // ListBlockchainPlatformPatches List Blockchain Platform Patches // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/ListBlockchainPlatformPatches.go.html to see an example of how to use ListBlockchainPlatformPatches API. func (client BlockchainPlatformClient) ListBlockchainPlatformPatches(ctx context.Context, request ListBlockchainPlatformPatchesRequest) (response ListBlockchainPlatformPatchesResponse, err error) { @@ -864,7 +864,7 @@ func (client BlockchainPlatformClient) listBlockchainPlatformPatches(ctx context // ListBlockchainPlatforms Returns a list Blockchain Platform Instances in a compartment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/ListBlockchainPlatforms.go.html to see an example of how to use ListBlockchainPlatforms API. func (client BlockchainPlatformClient) ListBlockchainPlatforms(ctx context.Context, request ListBlockchainPlatformsRequest) (response ListBlockchainPlatformsResponse, err error) { @@ -921,7 +921,7 @@ func (client BlockchainPlatformClient) listBlockchainPlatforms(ctx context.Conte // ListOsns List Blockchain Platform OSNs // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/ListOsns.go.html to see an example of how to use ListOsns API. func (client BlockchainPlatformClient) ListOsns(ctx context.Context, request ListOsnsRequest) (response ListOsnsResponse, err error) { @@ -983,7 +983,7 @@ func (client BlockchainPlatformClient) listOsns(ctx context.Context, request com // ListPeers List Blockchain Platform Peers // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/ListPeers.go.html to see an example of how to use ListPeers API. func (client BlockchainPlatformClient) ListPeers(ctx context.Context, request ListPeersRequest) (response ListPeersResponse, err error) { @@ -1045,7 +1045,7 @@ func (client BlockchainPlatformClient) listPeers(ctx context.Context, request co // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client BlockchainPlatformClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -1102,7 +1102,7 @@ func (client BlockchainPlatformClient) listWorkRequestErrors(ctx context.Context // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client BlockchainPlatformClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -1159,7 +1159,7 @@ func (client BlockchainPlatformClient) listWorkRequestLogs(ctx context.Context, // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client BlockchainPlatformClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -1216,7 +1216,7 @@ func (client BlockchainPlatformClient) listWorkRequests(ctx context.Context, req // PreviewScaleBlockchainPlatform Preview Scale Blockchain Platform // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/PreviewScaleBlockchainPlatform.go.html to see an example of how to use PreviewScaleBlockchainPlatform API. func (client BlockchainPlatformClient) PreviewScaleBlockchainPlatform(ctx context.Context, request PreviewScaleBlockchainPlatformRequest) (response PreviewScaleBlockchainPlatformResponse, err error) { @@ -1273,7 +1273,7 @@ func (client BlockchainPlatformClient) previewScaleBlockchainPlatform(ctx contex // ScaleBlockchainPlatform Scale Blockchain Platform // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/ScaleBlockchainPlatform.go.html to see an example of how to use ScaleBlockchainPlatform API. func (client BlockchainPlatformClient) ScaleBlockchainPlatform(ctx context.Context, request ScaleBlockchainPlatformRequest) (response ScaleBlockchainPlatformResponse, err error) { @@ -1335,7 +1335,7 @@ func (client BlockchainPlatformClient) scaleBlockchainPlatform(ctx context.Conte // StartBlockchainPlatform Start a Blockchain Platform // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/StartBlockchainPlatform.go.html to see an example of how to use StartBlockchainPlatform API. func (client BlockchainPlatformClient) StartBlockchainPlatform(ctx context.Context, request StartBlockchainPlatformRequest) (response StartBlockchainPlatformResponse, err error) { @@ -1397,7 +1397,7 @@ func (client BlockchainPlatformClient) startBlockchainPlatform(ctx context.Conte // StopBlockchainPlatform Stop a Blockchain Platform // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/StopBlockchainPlatform.go.html to see an example of how to use StopBlockchainPlatform API. func (client BlockchainPlatformClient) StopBlockchainPlatform(ctx context.Context, request StopBlockchainPlatformRequest) (response StopBlockchainPlatformResponse, err error) { @@ -1459,7 +1459,7 @@ func (client BlockchainPlatformClient) stopBlockchainPlatform(ctx context.Contex // UpdateBlockchainPlatform Update a particular of a Blockchain Platform // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/UpdateBlockchainPlatform.go.html to see an example of how to use UpdateBlockchainPlatform API. func (client BlockchainPlatformClient) UpdateBlockchainPlatform(ctx context.Context, request UpdateBlockchainPlatformRequest) (response UpdateBlockchainPlatformResponse, err error) { @@ -1521,7 +1521,7 @@ func (client BlockchainPlatformClient) updateBlockchainPlatform(ctx context.Cont // UpdateOsn Update Blockchain Platform OSN // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/UpdateOsn.go.html to see an example of how to use UpdateOsn API. func (client BlockchainPlatformClient) UpdateOsn(ctx context.Context, request UpdateOsnRequest) (response UpdateOsnResponse, err error) { @@ -1583,7 +1583,7 @@ func (client BlockchainPlatformClient) updateOsn(ctx context.Context, request co // UpdatePeer Update Blockchain Platform Peer // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/UpdatePeer.go.html to see an example of how to use UpdatePeer API. func (client BlockchainPlatformClient) UpdatePeer(ctx context.Context, request UpdatePeerRequest) (response UpdatePeerResponse, err error) { @@ -1645,7 +1645,7 @@ func (client BlockchainPlatformClient) updatePeer(ctx context.Context, request c // UpgradeBlockchainPlatform Upgrade a Blockchain Platform version // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/blockchain/UpgradeBlockchainPlatform.go.html to see an example of how to use UpgradeBlockchainPlatform API. func (client BlockchainPlatformClient) UpgradeBlockchainPlatform(ctx context.Context, request UpgradeBlockchainPlatformRequest) (response UpgradeBlockchainPlatformResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/budget/budget_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/budget/budget_client.go index 646f8035b7d..c5dfa096aba 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/budget/budget_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/budget/budget_client.go @@ -93,7 +93,7 @@ func (client *BudgetClient) ConfigurationProvider() *common.ConfigurationProvide // CreateAlertRule Creates a new Alert Rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/CreateAlertRule.go.html to see an example of how to use CreateAlertRule API. // A default retry strategy applies to this operation CreateAlertRule() @@ -156,7 +156,7 @@ func (client BudgetClient) createAlertRule(ctx context.Context, request common.O // CreateBudget Creates a new budget. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/CreateBudget.go.html to see an example of how to use CreateBudget API. // A default retry strategy applies to this operation CreateBudget() @@ -219,7 +219,7 @@ func (client BudgetClient) createBudget(ctx context.Context, request common.OCIR // DeleteAlertRule Deletes a specified Alert Rule resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/DeleteAlertRule.go.html to see an example of how to use DeleteAlertRule API. // A default retry strategy applies to this operation DeleteAlertRule() @@ -277,7 +277,7 @@ func (client BudgetClient) deleteAlertRule(ctx context.Context, request common.O // DeleteBudget Deletes a specified budget resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/DeleteBudget.go.html to see an example of how to use DeleteBudget API. // A default retry strategy applies to this operation DeleteBudget() @@ -335,7 +335,7 @@ func (client BudgetClient) deleteBudget(ctx context.Context, request common.OCIR // GetAlertRule Gets an Alert Rule for a specified budget. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/GetAlertRule.go.html to see an example of how to use GetAlertRule API. // A default retry strategy applies to this operation GetAlertRule() @@ -393,7 +393,7 @@ func (client BudgetClient) getAlertRule(ctx context.Context, request common.OCIR // GetBudget Gets a budget by the identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/GetBudget.go.html to see an example of how to use GetBudget API. // A default retry strategy applies to this operation GetBudget() @@ -451,7 +451,7 @@ func (client BudgetClient) getBudget(ctx context.Context, request common.OCIRequ // ListAlertRules Returns a list of Alert Rules for a specified budget. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/ListAlertRules.go.html to see an example of how to use ListAlertRules API. // A default retry strategy applies to this operation ListAlertRules() @@ -512,7 +512,7 @@ func (client BudgetClient) listAlertRules(ctx context.Context, request common.OC // To list all budgets, set the targetType query parameter to ALL (for example: 'targetType=ALL'). // Clients should ignore new targetTypes, or upgrade to the latest version of the client SDK to handle new targetTypes. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/ListBudgets.go.html to see an example of how to use ListBudgets API. // A default retry strategy applies to this operation ListBudgets() @@ -570,7 +570,7 @@ func (client BudgetClient) listBudgets(ctx context.Context, request common.OCIRe // UpdateAlertRule Update an Alert Rule for the budget identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/UpdateAlertRule.go.html to see an example of how to use UpdateAlertRule API. // A default retry strategy applies to this operation UpdateAlertRule() @@ -628,7 +628,7 @@ func (client BudgetClient) updateAlertRule(ctx context.Context, request common.O // UpdateBudget Update a budget identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/budget/UpdateBudget.go.html to see an example of how to use UpdateBudget API. // A default retry strategy applies to this operation UpdateBudget() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/certificatesmanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/certificatesmanagement_client.go index a93107ce22d..26bef0ebb19 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/certificatesmanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/certificatesmanagement_client.go @@ -93,7 +93,7 @@ func (client *CertificatesManagementClient) ConfigurationProvider() *common.Conf // CancelCertificateAuthorityDeletion Cancels the scheduled deletion of the specified certificate authority (CA). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/CancelCertificateAuthorityDeletion.go.html to see an example of how to use CancelCertificateAuthorityDeletion API. func (client CertificatesManagementClient) CancelCertificateAuthorityDeletion(ctx context.Context, request CancelCertificateAuthorityDeletionRequest) (response CancelCertificateAuthorityDeletionResponse, err error) { @@ -152,7 +152,7 @@ func (client CertificatesManagementClient) cancelCertificateAuthorityDeletion(ct // a scheduled deletion restores the CA version's lifecycle state to what // it was before its scheduled deletion. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/CancelCertificateAuthorityVersionDeletion.go.html to see an example of how to use CancelCertificateAuthorityVersionDeletion API. func (client CertificatesManagementClient) CancelCertificateAuthorityVersionDeletion(ctx context.Context, request CancelCertificateAuthorityVersionDeletionRequest) (response CancelCertificateAuthorityVersionDeletionResponse, err error) { @@ -211,7 +211,7 @@ func (client CertificatesManagementClient) cancelCertificateAuthorityVersionDele // a scheduled deletion restores the certificate's lifecycle state to what // it was before you scheduled the certificate for deletion. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/CancelCertificateDeletion.go.html to see an example of how to use CancelCertificateDeletion API. func (client CertificatesManagementClient) CancelCertificateDeletion(ctx context.Context, request CancelCertificateDeletionRequest) (response CancelCertificateDeletionResponse, err error) { @@ -268,7 +268,7 @@ func (client CertificatesManagementClient) cancelCertificateDeletion(ctx context // CancelCertificateVersionDeletion Cancels the scheduled deletion of the specified certificate version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/CancelCertificateVersionDeletion.go.html to see an example of how to use CancelCertificateVersionDeletion API. func (client CertificatesManagementClient) CancelCertificateVersionDeletion(ctx context.Context, request CancelCertificateVersionDeletionRequest) (response CancelCertificateVersionDeletionResponse, err error) { @@ -327,7 +327,7 @@ func (client CertificatesManagementClient) cancelCertificateVersionDeletion(ctx // moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // When provided, if-match is checked against the ETag values of the secret. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ChangeCaBundleCompartment.go.html to see an example of how to use ChangeCaBundleCompartment API. func (client CertificatesManagementClient) ChangeCaBundleCompartment(ctx context.Context, request ChangeCaBundleCompartmentRequest) (response ChangeCaBundleCompartmentResponse, err error) { @@ -391,7 +391,7 @@ func (client CertificatesManagementClient) changeCaBundleCompartment(ctx context // moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // When provided, If-Match is checked against the ETag values of the source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ChangeCertificateAuthorityCompartment.go.html to see an example of how to use ChangeCertificateAuthorityCompartment API. func (client CertificatesManagementClient) ChangeCertificateAuthorityCompartment(ctx context.Context, request ChangeCertificateAuthorityCompartmentRequest) (response ChangeCertificateAuthorityCompartmentResponse, err error) { @@ -455,7 +455,7 @@ func (client CertificatesManagementClient) changeCertificateAuthorityCompartment // moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // When provided, if-match is checked against the ETag values of the secret. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ChangeCertificateCompartment.go.html to see an example of how to use ChangeCertificateCompartment API. func (client CertificatesManagementClient) ChangeCertificateCompartment(ctx context.Context, request ChangeCertificateCompartmentRequest) (response ChangeCertificateCompartmentResponse, err error) { @@ -517,7 +517,7 @@ func (client CertificatesManagementClient) changeCertificateCompartment(ctx cont // CreateCaBundle Creates a new CA bundle according to the details of the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/CreateCaBundle.go.html to see an example of how to use CreateCaBundle API. func (client CertificatesManagementClient) CreateCaBundle(ctx context.Context, request CreateCaBundleRequest) (response CreateCaBundleResponse, err error) { @@ -579,7 +579,7 @@ func (client CertificatesManagementClient) createCaBundle(ctx context.Context, r // CreateCertificate Creates a new certificate according to the details of the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/CreateCertificate.go.html to see an example of how to use CreateCertificate API. func (client CertificatesManagementClient) CreateCertificate(ctx context.Context, request CreateCertificateRequest) (response CreateCertificateResponse, err error) { @@ -641,7 +641,7 @@ func (client CertificatesManagementClient) createCertificate(ctx context.Context // CreateCertificateAuthority Creates a new certificate authority (CA) according to the details of the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/CreateCertificateAuthority.go.html to see an example of how to use CreateCertificateAuthority API. func (client CertificatesManagementClient) CreateCertificateAuthority(ctx context.Context, request CreateCertificateAuthorityRequest) (response CreateCertificateAuthorityResponse, err error) { @@ -703,7 +703,7 @@ func (client CertificatesManagementClient) createCertificateAuthority(ctx contex // DeleteCaBundle Deletes the specified CA bundle. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/DeleteCaBundle.go.html to see an example of how to use DeleteCaBundle API. func (client CertificatesManagementClient) DeleteCaBundle(ctx context.Context, request DeleteCaBundleRequest) (response DeleteCaBundleResponse, err error) { @@ -760,7 +760,7 @@ func (client CertificatesManagementClient) deleteCaBundle(ctx context.Context, r // GetAssociation Gets details about the specified association. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/GetAssociation.go.html to see an example of how to use GetAssociation API. func (client CertificatesManagementClient) GetAssociation(ctx context.Context, request GetAssociationRequest) (response GetAssociationResponse, err error) { @@ -817,7 +817,7 @@ func (client CertificatesManagementClient) getAssociation(ctx context.Context, r // GetCaBundle Gets details about the specified CA bundle. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/GetCaBundle.go.html to see an example of how to use GetCaBundle API. func (client CertificatesManagementClient) GetCaBundle(ctx context.Context, request GetCaBundleRequest) (response GetCaBundleResponse, err error) { @@ -874,7 +874,7 @@ func (client CertificatesManagementClient) getCaBundle(ctx context.Context, requ // GetCertificate Gets details about the specified certificate. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/GetCertificate.go.html to see an example of how to use GetCertificate API. func (client CertificatesManagementClient) GetCertificate(ctx context.Context, request GetCertificateRequest) (response GetCertificateResponse, err error) { @@ -931,7 +931,7 @@ func (client CertificatesManagementClient) getCertificate(ctx context.Context, r // GetCertificateAuthority Gets details about the specified certificate authority (CA). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/GetCertificateAuthority.go.html to see an example of how to use GetCertificateAuthority API. func (client CertificatesManagementClient) GetCertificateAuthority(ctx context.Context, request GetCertificateAuthorityRequest) (response GetCertificateAuthorityResponse, err error) { @@ -988,7 +988,7 @@ func (client CertificatesManagementClient) getCertificateAuthority(ctx context.C // GetCertificateAuthorityVersion Gets details about the specified certificate authority (CA) version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/GetCertificateAuthorityVersion.go.html to see an example of how to use GetCertificateAuthorityVersion API. func (client CertificatesManagementClient) GetCertificateAuthorityVersion(ctx context.Context, request GetCertificateAuthorityVersionRequest) (response GetCertificateAuthorityVersionResponse, err error) { @@ -1045,7 +1045,7 @@ func (client CertificatesManagementClient) getCertificateAuthorityVersion(ctx co // GetCertificateVersion Gets details about the specified version of a certificate. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/GetCertificateVersion.go.html to see an example of how to use GetCertificateVersion API. func (client CertificatesManagementClient) GetCertificateVersion(ctx context.Context, request GetCertificateVersionRequest) (response GetCertificateVersionResponse, err error) { @@ -1103,7 +1103,7 @@ func (client CertificatesManagementClient) getCertificateVersion(ctx context.Con // ListAssociations Lists all associations that match the query parameters. // Optionally, you can use the parameter `FilterByAssociationIdQueryParam` to limit the result set to a single item that matches the specified association. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ListAssociations.go.html to see an example of how to use ListAssociations API. func (client CertificatesManagementClient) ListAssociations(ctx context.Context, request ListAssociationsRequest) (response ListAssociationsResponse, err error) { @@ -1161,7 +1161,7 @@ func (client CertificatesManagementClient) listAssociations(ctx context.Context, // ListCaBundles Lists all CA bundles that match the query parameters. // Optionally, you can use the parameter `FilterByCaBundleIdQueryParam` to limit the result set to a single item that matches the specified CA bundle. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ListCaBundles.go.html to see an example of how to use ListCaBundles API. func (client CertificatesManagementClient) ListCaBundles(ctx context.Context, request ListCaBundlesRequest) (response ListCaBundlesResponse, err error) { @@ -1219,7 +1219,7 @@ func (client CertificatesManagementClient) listCaBundles(ctx context.Context, re // ListCertificateAuthorities Lists all certificate authorities (CAs) in the specified compartment. // Optionally, you can use the parameter `FilterByCertificateAuthorityIdQueryParam` to limit the results to a single item that matches the specified CA. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ListCertificateAuthorities.go.html to see an example of how to use ListCertificateAuthorities API. func (client CertificatesManagementClient) ListCertificateAuthorities(ctx context.Context, request ListCertificateAuthoritiesRequest) (response ListCertificateAuthoritiesResponse, err error) { @@ -1277,7 +1277,7 @@ func (client CertificatesManagementClient) listCertificateAuthorities(ctx contex // ListCertificateAuthorityVersions Lists all versions for the specified certificate authority (CA). // Optionally, you can use the parameter `FilterByVersionNumberQueryParam` to limit the results to a single item that matches the specified version number. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ListCertificateAuthorityVersions.go.html to see an example of how to use ListCertificateAuthorityVersions API. func (client CertificatesManagementClient) ListCertificateAuthorityVersions(ctx context.Context, request ListCertificateAuthorityVersionsRequest) (response ListCertificateAuthorityVersionsResponse, err error) { @@ -1335,7 +1335,7 @@ func (client CertificatesManagementClient) listCertificateAuthorityVersions(ctx // ListCertificateVersions Lists all certificate versions for the specified certificate. // Optionally, you can use the parameter `FilterByVersionNumberQueryParam` to limit the result set to a single item that matches the specified version number. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ListCertificateVersions.go.html to see an example of how to use ListCertificateVersions API. func (client CertificatesManagementClient) ListCertificateVersions(ctx context.Context, request ListCertificateVersionsRequest) (response ListCertificateVersionsResponse, err error) { @@ -1393,7 +1393,7 @@ func (client CertificatesManagementClient) listCertificateVersions(ctx context.C // ListCertificates Lists all certificates that match the query parameters. // Optionally, you can use the parameter `FilterByCertificateIdQueryParam` to limit the result set to a single item that matches the specified certificate. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ListCertificates.go.html to see an example of how to use ListCertificates API. func (client CertificatesManagementClient) ListCertificates(ctx context.Context, request ListCertificatesRequest) (response ListCertificatesResponse, err error) { @@ -1450,7 +1450,7 @@ func (client CertificatesManagementClient) listCertificates(ctx context.Context, // RevokeCertificateAuthorityVersion Revokes a certificate authority (CA) version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/RevokeCertificateAuthorityVersion.go.html to see an example of how to use RevokeCertificateAuthorityVersion API. func (client CertificatesManagementClient) RevokeCertificateAuthorityVersion(ctx context.Context, request RevokeCertificateAuthorityVersionRequest) (response RevokeCertificateAuthorityVersionResponse, err error) { @@ -1512,7 +1512,7 @@ func (client CertificatesManagementClient) revokeCertificateAuthorityVersion(ctx // RevokeCertificateVersion Revokes the specified certificate version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/RevokeCertificateVersion.go.html to see an example of how to use RevokeCertificateVersion API. func (client CertificatesManagementClient) RevokeCertificateVersion(ctx context.Context, request RevokeCertificateVersionRequest) (response RevokeCertificateVersionResponse, err error) { @@ -1574,7 +1574,7 @@ func (client CertificatesManagementClient) revokeCertificateVersion(ctx context. // ScheduleCertificateAuthorityDeletion Schedules the deletion of the specified certificate authority (CA). This sets the lifecycle state of the CA to `PENDING_DELETION` and then deletes it after the specified retention period ends. If needed, you can determine the status of the deletion by using `GetCertificateAuthority`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ScheduleCertificateAuthorityDeletion.go.html to see an example of how to use ScheduleCertificateAuthorityDeletion API. func (client CertificatesManagementClient) ScheduleCertificateAuthorityDeletion(ctx context.Context, request ScheduleCertificateAuthorityDeletionRequest) (response ScheduleCertificateAuthorityDeletionResponse, err error) { @@ -1633,7 +1633,7 @@ func (client CertificatesManagementClient) scheduleCertificateAuthorityDeletion( // This sets the lifecycle state of the CA version to `PENDING_DELETION` // and then deletes it after the specified retention period ends. If needed, you can determine the status of the deletion by using `GetCertificateAuthorityVersion`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ScheduleCertificateAuthorityVersionDeletion.go.html to see an example of how to use ScheduleCertificateAuthorityVersionDeletion API. func (client CertificatesManagementClient) ScheduleCertificateAuthorityVersionDeletion(ctx context.Context, request ScheduleCertificateAuthorityVersionDeletionRequest) (response ScheduleCertificateAuthorityVersionDeletionResponse, err error) { @@ -1692,7 +1692,7 @@ func (client CertificatesManagementClient) scheduleCertificateAuthorityVersionDe // to `PENDING_DELETION` and then deletes it after the specified retention period ends. // You can subsequently use `GetCertificate` to determine the current deletion status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ScheduleCertificateDeletion.go.html to see an example of how to use ScheduleCertificateDeletion API. func (client CertificatesManagementClient) ScheduleCertificateDeletion(ctx context.Context, request ScheduleCertificateDeletionRequest) (response ScheduleCertificateDeletionResponse, err error) { @@ -1751,7 +1751,7 @@ func (client CertificatesManagementClient) scheduleCertificateDeletion(ctx conte // delete a certificate version if the certificate version rotation state is marked as `DEPRECATED`. // You can subsequently use `GetCertificateVersion` to determine the current certificate version deletion status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/ScheduleCertificateVersionDeletion.go.html to see an example of how to use ScheduleCertificateVersionDeletion API. func (client CertificatesManagementClient) ScheduleCertificateVersionDeletion(ctx context.Context, request ScheduleCertificateVersionDeletionRequest) (response ScheduleCertificateVersionDeletionResponse, err error) { @@ -1808,7 +1808,7 @@ func (client CertificatesManagementClient) scheduleCertificateVersionDeletion(ct // UpdateCaBundle Updates the properties of a CA bundle. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/UpdateCaBundle.go.html to see an example of how to use UpdateCaBundle API. func (client CertificatesManagementClient) UpdateCaBundle(ctx context.Context, request UpdateCaBundleRequest) (response UpdateCaBundleResponse, err error) { @@ -1865,7 +1865,7 @@ func (client CertificatesManagementClient) updateCaBundle(ctx context.Context, r // UpdateCertificate Updates the properties of a certificate. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/UpdateCertificate.go.html to see an example of how to use UpdateCertificate API. func (client CertificatesManagementClient) UpdateCertificate(ctx context.Context, request UpdateCertificateRequest) (response UpdateCertificateResponse, err error) { @@ -1922,7 +1922,7 @@ func (client CertificatesManagementClient) updateCertificate(ctx context.Context // UpdateCertificateAuthority Updates the properties of the specified certificate authority (CA). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/certificatesmanagement/UpdateCertificateAuthority.go.html to see an example of how to use UpdateCertificateAuthority API. func (client CertificatesManagementClient) UpdateCertificateAuthority(ctx context.Context, request UpdateCertificateAuthorityRequest) (response UpdateCertificateAuthorityResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_by_importing_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_by_importing_config_details.go index 6c0daed67b4..cbe691badc9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_by_importing_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_by_importing_config_details.go @@ -35,7 +35,7 @@ type CreateCertificateByImportingConfigDetails struct { PrivateKeyPemPassphrase *string `mandatory:"false" json:"privateKeyPemPassphrase"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m CreateCertificateByImportingConfigDetails) GetVersionName() *string { return m.VersionName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_issued_by_internal_ca_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_issued_by_internal_ca_config_details.go index aacebc2b479..26887cd5b1b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_issued_by_internal_ca_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_issued_by_internal_ca_config_details.go @@ -42,7 +42,7 @@ type CreateCertificateIssuedByInternalCaConfigDetails struct { SignatureAlgorithm SignatureAlgorithmEnum `mandatory:"false" json:"signatureAlgorithm,omitempty"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m CreateCertificateIssuedByInternalCaConfigDetails) GetVersionName() *string { return m.VersionName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_managed_externally_issued_by_internal_ca_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_managed_externally_issued_by_internal_ca_config_details.go index 77f9826bdd5..5eb31b33b91 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_managed_externally_issued_by_internal_ca_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_certificate_managed_externally_issued_by_internal_ca_config_details.go @@ -31,7 +31,7 @@ type CreateCertificateManagedExternallyIssuedByInternalCaConfigDetails struct { Validity *Validity `mandatory:"false" json:"validity"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m CreateCertificateManagedExternallyIssuedByInternalCaConfigDetails) GetVersionName() *string { return m.VersionName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_root_ca_by_generating_internally_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_root_ca_by_generating_internally_config_details.go index 34d01504e42..39221aa0f19 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_root_ca_by_generating_internally_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_root_ca_by_generating_internally_config_details.go @@ -29,7 +29,7 @@ type CreateRootCaByGeneratingInternallyConfigDetails struct { SigningAlgorithm SignatureAlgorithmEnum `mandatory:"false" json:"signingAlgorithm,omitempty"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m CreateRootCaByGeneratingInternallyConfigDetails) GetVersionName() *string { return m.VersionName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_subordinate_ca_issued_by_internal_ca_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_subordinate_ca_issued_by_internal_ca_config_details.go index ed9264bbcc0..aa3954319ac 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_subordinate_ca_issued_by_internal_ca_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/create_subordinate_ca_issued_by_internal_ca_config_details.go @@ -33,7 +33,7 @@ type CreateSubordinateCaIssuedByInternalCaConfigDetails struct { SigningAlgorithm SignatureAlgorithmEnum `mandatory:"false" json:"signingAlgorithm,omitempty"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m CreateSubordinateCaIssuedByInternalCaConfigDetails) GetVersionName() *string { return m.VersionName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_by_importing_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_by_importing_config_details.go index 6092fc0d40a..f3d0daa785f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_by_importing_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_by_importing_config_details.go @@ -40,12 +40,12 @@ type UpdateCertificateByImportingConfigDetails struct { Stage UpdateCertificateConfigDetailsStageEnum `mandatory:"false" json:"stage,omitempty"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m UpdateCertificateByImportingConfigDetails) GetVersionName() *string { return m.VersionName } -//GetStage returns Stage +// GetStage returns Stage func (m UpdateCertificateByImportingConfigDetails) GetStage() UpdateCertificateConfigDetailsStageEnum { return m.Stage } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_issued_by_internal_ca_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_issued_by_internal_ca_config_details.go index 825d29a8bdb..95dd985ee09 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_issued_by_internal_ca_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_issued_by_internal_ca_config_details.go @@ -30,12 +30,12 @@ type UpdateCertificateIssuedByInternalCaConfigDetails struct { Stage UpdateCertificateConfigDetailsStageEnum `mandatory:"false" json:"stage,omitempty"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m UpdateCertificateIssuedByInternalCaConfigDetails) GetVersionName() *string { return m.VersionName } -//GetStage returns Stage +// GetStage returns Stage func (m UpdateCertificateIssuedByInternalCaConfigDetails) GetStage() UpdateCertificateConfigDetailsStageEnum { return m.Stage } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_managed_externally_issued_by_internal_ca_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_managed_externally_issued_by_internal_ca_config_details.go index f0fb7ee3e3e..6f55c1cadec 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_managed_externally_issued_by_internal_ca_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_certificate_managed_externally_issued_by_internal_ca_config_details.go @@ -33,12 +33,12 @@ type UpdateCertificateManagedExternallyIssuedByInternalCaConfigDetails struct { Stage UpdateCertificateConfigDetailsStageEnum `mandatory:"false" json:"stage,omitempty"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m UpdateCertificateManagedExternallyIssuedByInternalCaConfigDetails) GetVersionName() *string { return m.VersionName } -//GetStage returns Stage +// GetStage returns Stage func (m UpdateCertificateManagedExternallyIssuedByInternalCaConfigDetails) GetStage() UpdateCertificateConfigDetailsStageEnum { return m.Stage } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_root_ca_by_generating_internally_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_root_ca_by_generating_internally_config_details.go index dfd34cc1a85..b1648463e4b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_root_ca_by_generating_internally_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_root_ca_by_generating_internally_config_details.go @@ -31,12 +31,12 @@ type UpdateRootCaByGeneratingInternallyConfigDetails struct { Stage UpdateCertificateAuthorityConfigDetailsStageEnum `mandatory:"false" json:"stage,omitempty"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m UpdateRootCaByGeneratingInternallyConfigDetails) GetVersionName() *string { return m.VersionName } -//GetStage returns Stage +// GetStage returns Stage func (m UpdateRootCaByGeneratingInternallyConfigDetails) GetStage() UpdateCertificateAuthorityConfigDetailsStageEnum { return m.Stage } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_subordinate_ca_issued_by_internal_ca_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_subordinate_ca_issued_by_internal_ca_config_details.go index 1c71932f9f4..88e2e6ed659 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_subordinate_ca_issued_by_internal_ca_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/certificatesmanagement/update_subordinate_ca_issued_by_internal_ca_config_details.go @@ -31,12 +31,12 @@ type UpdateSubordinateCaIssuedByInternalCaConfigDetails struct { Stage UpdateCertificateAuthorityConfigDetailsStageEnum `mandatory:"false" json:"stage,omitempty"` } -//GetVersionName returns VersionName +// GetVersionName returns VersionName func (m UpdateSubordinateCaIssuedByInternalCaConfigDetails) GetVersionName() *string { return m.VersionName } -//GetStage returns Stage +// GetStage returns Stage func (m UpdateSubordinateCaIssuedByInternalCaConfigDetails) GetStage() UpdateCertificateAuthorityConfigDetailsStageEnum { return m.Stage } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_common_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_common_client.go index abba3a7b0f1..e9f72e909de 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_common_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_common_client.go @@ -93,7 +93,7 @@ func (client *CommonClient) ConfigurationProvider() *common.ConfigurationProvide // CancelWorkRequest Cancels the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -151,7 +151,7 @@ func (client CommonClient) cancelWorkRequest(ctx context.Context, request common // GetWorkRequest Gets details of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -209,7 +209,7 @@ func (client CommonClient) getWorkRequest(ctx context.Context, request common.OC // ListWorkRequestErrors Returns a (paginated) list of errors for the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -267,7 +267,7 @@ func (client CommonClient) listWorkRequestErrors(ctx context.Context, request co // ListWorkRequestLogs Returns a (paginated) list of logs for the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -325,7 +325,7 @@ func (client CommonClient) listWorkRequestLogs(ctx context.Context, request comm // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_discovery_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_discovery_client.go index 1ca90f42e4a..2f1683daec0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_discovery_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_discovery_client.go @@ -93,7 +93,7 @@ func (client *DiscoveryClient) ConfigurationProvider() *common.ConfigurationProv // ChangeAssetSourceCompartment Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ChangeAssetSourceCompartment.go.html to see an example of how to use ChangeAssetSourceCompartment API. // A default retry strategy applies to this operation ChangeAssetSourceCompartment() @@ -156,7 +156,7 @@ func (client DiscoveryClient) changeAssetSourceCompartment(ctx context.Context, // ChangeDiscoveryScheduleCompartment Moves the specified discovery schedule into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ChangeDiscoveryScheduleCompartment.go.html to see an example of how to use ChangeDiscoveryScheduleCompartment API. // A default retry strategy applies to this operation ChangeDiscoveryScheduleCompartment() @@ -219,7 +219,7 @@ func (client DiscoveryClient) changeDiscoveryScheduleCompartment(ctx context.Con // CreateAssetSource Creates an asset source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/CreateAssetSource.go.html to see an example of how to use CreateAssetSource API. // A default retry strategy applies to this operation CreateAssetSource() @@ -282,7 +282,7 @@ func (client DiscoveryClient) createAssetSource(ctx context.Context, request com // CreateDiscoverySchedule Creates the discovery schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/CreateDiscoverySchedule.go.html to see an example of how to use CreateDiscoverySchedule API. // A default retry strategy applies to this operation CreateDiscoverySchedule() @@ -345,7 +345,7 @@ func (client DiscoveryClient) createDiscoverySchedule(ctx context.Context, reque // DeleteAssetSource Deletes the asset source by ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/DeleteAssetSource.go.html to see an example of how to use DeleteAssetSource API. // A default retry strategy applies to this operation DeleteAssetSource() @@ -403,7 +403,7 @@ func (client DiscoveryClient) deleteAssetSource(ctx context.Context, request com // DeleteDiscoverySchedule Deletes the specified discovery schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/DeleteDiscoverySchedule.go.html to see an example of how to use DeleteDiscoverySchedule API. // A default retry strategy applies to this operation DeleteDiscoverySchedule() @@ -461,7 +461,7 @@ func (client DiscoveryClient) deleteDiscoverySchedule(ctx context.Context, reque // GetAssetSource Gets the asset source by ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/GetAssetSource.go.html to see an example of how to use GetAssetSource API. // A default retry strategy applies to this operation GetAssetSource() @@ -519,7 +519,7 @@ func (client DiscoveryClient) getAssetSource(ctx context.Context, request common // GetDiscoverySchedule Reads information about the specified discovery schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/GetDiscoverySchedule.go.html to see an example of how to use GetDiscoverySchedule API. // A default retry strategy applies to this operation GetDiscoverySchedule() @@ -577,7 +577,7 @@ func (client DiscoveryClient) getDiscoverySchedule(ctx context.Context, request // ListAssetSourceConnections Gets known connections to the asset source by the asset source ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListAssetSourceConnections.go.html to see an example of how to use ListAssetSourceConnections API. // A default retry strategy applies to this operation ListAssetSourceConnections() @@ -635,7 +635,7 @@ func (client DiscoveryClient) listAssetSourceConnections(ctx context.Context, re // ListAssetSources Returns a list of asset sources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListAssetSources.go.html to see an example of how to use ListAssetSources API. // A default retry strategy applies to this operation ListAssetSources() @@ -693,7 +693,7 @@ func (client DiscoveryClient) listAssetSources(ctx context.Context, request comm // ListDiscoverySchedules Lists discovery schedules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListDiscoverySchedules.go.html to see an example of how to use ListDiscoverySchedules API. // A default retry strategy applies to this operation ListDiscoverySchedules() @@ -751,7 +751,7 @@ func (client DiscoveryClient) listDiscoverySchedules(ctx context.Context, reques // RefreshAssetSource Initiates the process of asset metadata synchronization with the related asset source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/RefreshAssetSource.go.html to see an example of how to use RefreshAssetSource API. // A default retry strategy applies to this operation RefreshAssetSource() @@ -814,7 +814,7 @@ func (client DiscoveryClient) refreshAssetSource(ctx context.Context, request co // UpdateAssetSource Updates the asset source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/UpdateAssetSource.go.html to see an example of how to use UpdateAssetSource API. // A default retry strategy applies to this operation UpdateAssetSource() @@ -872,7 +872,7 @@ func (client DiscoveryClient) updateAssetSource(ctx context.Context, request com // UpdateDiscoverySchedule Updates the specified discovery schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/UpdateDiscoverySchedule.go.html to see an example of how to use UpdateDiscoverySchedule API. // A default retry strategy applies to this operation UpdateDiscoverySchedule() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_inventory_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_inventory_client.go index ec8ffdb2c8f..8dda50dacb7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_inventory_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_inventory_client.go @@ -94,7 +94,7 @@ func (client *InventoryClient) ConfigurationProvider() *common.ConfigurationProv // AnalyzeAssets Returns an aggregation of assets. Aggregation groups are sorted by groupBy property. // Default sort order is ascending, but can be overridden by the sortOrder parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/AnalyzeAssets.go.html to see an example of how to use AnalyzeAssets API. // A default retry strategy applies to this operation AnalyzeAssets() @@ -152,7 +152,7 @@ func (client InventoryClient) analyzeAssets(ctx context.Context, request common. // ChangeAssetCompartment Moves an asset resource from one compartment to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ChangeAssetCompartment.go.html to see an example of how to use ChangeAssetCompartment API. // A default retry strategy applies to this operation ChangeAssetCompartment() @@ -215,7 +215,7 @@ func (client InventoryClient) changeAssetCompartment(ctx context.Context, reques // ChangeAssetTags Change an asset's tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ChangeAssetTags.go.html to see an example of how to use ChangeAssetTags API. // A default retry strategy applies to this operation ChangeAssetTags() @@ -278,7 +278,7 @@ func (client InventoryClient) changeAssetTags(ctx context.Context, request commo // CreateAsset Creates an asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/CreateAsset.go.html to see an example of how to use CreateAsset API. // A default retry strategy applies to this operation CreateAsset() @@ -341,7 +341,7 @@ func (client InventoryClient) createAsset(ctx context.Context, request common.OC // CreateInventory Creates an inventory. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/CreateInventory.go.html to see an example of how to use CreateInventory API. // A default retry strategy applies to this operation CreateInventory() @@ -404,7 +404,7 @@ func (client InventoryClient) createInventory(ctx context.Context, request commo // DeleteAsset Deletes an asset resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/DeleteAsset.go.html to see an example of how to use DeleteAsset API. // A default retry strategy applies to this operation DeleteAsset() @@ -462,7 +462,7 @@ func (client InventoryClient) deleteAsset(ctx context.Context, request common.OC // DeleteInventory Deletes an inventory resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/DeleteInventory.go.html to see an example of how to use DeleteInventory API. // A default retry strategy applies to this operation DeleteInventory() @@ -520,7 +520,7 @@ func (client InventoryClient) deleteInventory(ctx context.Context, request commo // GetAsset Gets an asset by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/GetAsset.go.html to see an example of how to use GetAsset API. // A default retry strategy applies to this operation GetAsset() @@ -578,7 +578,7 @@ func (client InventoryClient) getAsset(ctx context.Context, request common.OCIRe // GetInventory Gets an inventory by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/GetInventory.go.html to see an example of how to use GetInventory API. // A default retry strategy applies to this operation GetInventory() @@ -636,7 +636,7 @@ func (client InventoryClient) getInventory(ctx context.Context, request common.O // ImportInventory Import resources in inventory. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ImportInventory.go.html to see an example of how to use ImportInventory API. // A default retry strategy applies to this operation ImportInventory() @@ -699,7 +699,7 @@ func (client InventoryClient) importInventory(ctx context.Context, request commo // ListAssets Returns a list of assets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListAssets.go.html to see an example of how to use ListAssets API. // A default retry strategy applies to this operation ListAssets() @@ -757,7 +757,7 @@ func (client InventoryClient) listAssets(ctx context.Context, request common.OCI // ListHistoricalMetrics List asset historical metrics. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListHistoricalMetrics.go.html to see an example of how to use ListHistoricalMetrics API. // A default retry strategy applies to this operation ListHistoricalMetrics() @@ -815,7 +815,7 @@ func (client InventoryClient) listHistoricalMetrics(ctx context.Context, request // ListInventories Returns a list of inventories. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListInventories.go.html to see an example of how to use ListInventories API. // A default retry strategy applies to this operation ListInventories() @@ -873,7 +873,7 @@ func (client InventoryClient) listInventories(ctx context.Context, request commo // SubmitHistoricalMetrics Creates or updates all metrics related to the asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/SubmitHistoricalMetrics.go.html to see an example of how to use SubmitHistoricalMetrics API. // A default retry strategy applies to this operation SubmitHistoricalMetrics() @@ -931,7 +931,7 @@ func (client InventoryClient) submitHistoricalMetrics(ctx context.Context, reque // UpdateAsset Updates the asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/UpdateAsset.go.html to see an example of how to use UpdateAsset API. // A default retry strategy applies to this operation UpdateAsset() @@ -989,7 +989,7 @@ func (client InventoryClient) updateAsset(ctx context.Context, request common.OC // UpdateInventory Updates an inventory. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/UpdateInventory.go.html to see an example of how to use UpdateInventory API. // A default retry strategy applies to this operation UpdateInventory() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_ocbagentsvc_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_ocbagentsvc_client.go index 9d3d9ed88e6..5fcf2c87b89 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_ocbagentsvc_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/cloudbridge_ocbagentsvc_client.go @@ -93,7 +93,7 @@ func (client *OcbAgentSvcClient) ConfigurationProvider() *common.ConfigurationPr // AddAgentDependency Add a dependency to the environment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/AddAgentDependency.go.html to see an example of how to use AddAgentDependency API. // A default retry strategy applies to this operation AddAgentDependency() @@ -156,7 +156,7 @@ func (client OcbAgentSvcClient) addAgentDependency(ctx context.Context, request // ChangeAgentCompartment Moves an Agent resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ChangeAgentCompartment.go.html to see an example of how to use ChangeAgentCompartment API. // A default retry strategy applies to this operation ChangeAgentCompartment() @@ -219,7 +219,7 @@ func (client OcbAgentSvcClient) changeAgentCompartment(ctx context.Context, requ // ChangeAgentDependencyCompartment Moves a AgentDependency resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ChangeAgentDependencyCompartment.go.html to see an example of how to use ChangeAgentDependencyCompartment API. // A default retry strategy applies to this operation ChangeAgentDependencyCompartment() @@ -282,7 +282,7 @@ func (client OcbAgentSvcClient) changeAgentDependencyCompartment(ctx context.Con // ChangeEnvironmentCompartment Moves a source environment resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ChangeEnvironmentCompartment.go.html to see an example of how to use ChangeEnvironmentCompartment API. // A default retry strategy applies to this operation ChangeEnvironmentCompartment() @@ -345,7 +345,7 @@ func (client OcbAgentSvcClient) changeEnvironmentCompartment(ctx context.Context // CreateAgent Creates an Agent. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/CreateAgent.go.html to see an example of how to use CreateAgent API. // A default retry strategy applies to this operation CreateAgent() @@ -408,7 +408,7 @@ func (client OcbAgentSvcClient) createAgent(ctx context.Context, request common. // CreateAgentDependency Creates an AgentDependency. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/CreateAgentDependency.go.html to see an example of how to use CreateAgentDependency API. // A default retry strategy applies to this operation CreateAgentDependency() @@ -471,7 +471,7 @@ func (client OcbAgentSvcClient) createAgentDependency(ctx context.Context, reque // CreateEnvironment Creates a source environment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/CreateEnvironment.go.html to see an example of how to use CreateEnvironment API. // A default retry strategy applies to this operation CreateEnvironment() @@ -534,7 +534,7 @@ func (client OcbAgentSvcClient) createEnvironment(ctx context.Context, request c // DeleteAgent Deletes an Agent resource identified by an identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/DeleteAgent.go.html to see an example of how to use DeleteAgent API. // A default retry strategy applies to this operation DeleteAgent() @@ -597,7 +597,7 @@ func (client OcbAgentSvcClient) deleteAgent(ctx context.Context, request common. // DeleteAgentDependency Deletes the AgentDependency resource based on an identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/DeleteAgentDependency.go.html to see an example of how to use DeleteAgentDependency API. // A default retry strategy applies to this operation DeleteAgentDependency() @@ -655,7 +655,7 @@ func (client OcbAgentSvcClient) deleteAgentDependency(ctx context.Context, reque // DeleteEnvironment Deletes a the source environment resource identified by an identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/DeleteEnvironment.go.html to see an example of how to use DeleteEnvironment API. // A default retry strategy applies to this operation DeleteEnvironment() @@ -713,7 +713,7 @@ func (client OcbAgentSvcClient) deleteEnvironment(ctx context.Context, request c // GetAgent Gets an Agent by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/GetAgent.go.html to see an example of how to use GetAgent API. // A default retry strategy applies to this operation GetAgent() @@ -771,7 +771,7 @@ func (client OcbAgentSvcClient) getAgent(ctx context.Context, request common.OCI // GetAgentDependency Gets an AgentDependency by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/GetAgentDependency.go.html to see an example of how to use GetAgentDependency API. // A default retry strategy applies to this operation GetAgentDependency() @@ -829,7 +829,7 @@ func (client OcbAgentSvcClient) getAgentDependency(ctx context.Context, request // GetEnvironment Gets a source environment by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/GetEnvironment.go.html to see an example of how to use GetEnvironment API. // A default retry strategy applies to this operation GetEnvironment() @@ -887,7 +887,7 @@ func (client OcbAgentSvcClient) getEnvironment(ctx context.Context, request comm // GetPlugin Gets a plugin by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/GetPlugin.go.html to see an example of how to use GetPlugin API. // A default retry strategy applies to this operation GetPlugin() @@ -945,7 +945,7 @@ func (client OcbAgentSvcClient) getPlugin(ctx context.Context, request common.OC // ListAgentDependencies Returns a list of AgentDependencies such as AgentDependencyCollection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListAgentDependencies.go.html to see an example of how to use ListAgentDependencies API. // A default retry strategy applies to this operation ListAgentDependencies() @@ -1003,7 +1003,7 @@ func (client OcbAgentSvcClient) listAgentDependencies(ctx context.Context, reque // ListAgents Returns a list of Agents. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListAgents.go.html to see an example of how to use ListAgents API. // A default retry strategy applies to this operation ListAgents() @@ -1061,7 +1061,7 @@ func (client OcbAgentSvcClient) listAgents(ctx context.Context, request common.O // ListApplianceImages Returns a list of Appliance Images. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListApplianceImages.go.html to see an example of how to use ListApplianceImages API. // A default retry strategy applies to this operation ListApplianceImages() @@ -1119,7 +1119,7 @@ func (client OcbAgentSvcClient) listApplianceImages(ctx context.Context, request // ListEnvironments Returns a list of source environments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/ListEnvironments.go.html to see an example of how to use ListEnvironments API. // A default retry strategy applies to this operation ListEnvironments() @@ -1177,7 +1177,7 @@ func (client OcbAgentSvcClient) listEnvironments(ctx context.Context, request co // RemoveAgentDependency Adds a dependency to the source environment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/RemoveAgentDependency.go.html to see an example of how to use RemoveAgentDependency API. // A default retry strategy applies to this operation RemoveAgentDependency() @@ -1240,7 +1240,7 @@ func (client OcbAgentSvcClient) removeAgentDependency(ctx context.Context, reque // UpdateAgent Updates the Agent. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/UpdateAgent.go.html to see an example of how to use UpdateAgent API. // A default retry strategy applies to this operation UpdateAgent() @@ -1303,7 +1303,7 @@ func (client OcbAgentSvcClient) updateAgent(ctx context.Context, request common. // UpdateAgentDependency Updates the AgentDependency. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/UpdateAgentDependency.go.html to see an example of how to use UpdateAgentDependency API. // A default retry strategy applies to this operation UpdateAgentDependency() @@ -1366,7 +1366,7 @@ func (client OcbAgentSvcClient) updateAgentDependency(ctx context.Context, reque // UpdateEnvironment Updates the source environment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/UpdateEnvironment.go.html to see an example of how to use UpdateEnvironment API. // A default retry strategy applies to this operation UpdateEnvironment() @@ -1429,7 +1429,7 @@ func (client OcbAgentSvcClient) updateEnvironment(ctx context.Context, request c // UpdatePlugin Updates the plugin. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudbridge/UpdatePlugin.go.html to see an example of how to use UpdatePlugin API. // A default retry strategy applies to this operation UpdatePlugin() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/create_vm_ware_asset_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/create_vm_ware_asset_source_details.go index 02fda51b61d..3bcd26273a6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/create_vm_ware_asset_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/create_vm_ware_asset_source_details.go @@ -68,47 +68,47 @@ type CreateVmWareAssetSourceDetails struct { AreRealtimeMetricsCollected *bool `mandatory:"false" json:"areRealtimeMetricsCollected"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateVmWareAssetSourceDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateVmWareAssetSourceDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetEnvironmentId returns EnvironmentId +// GetEnvironmentId returns EnvironmentId func (m CreateVmWareAssetSourceDetails) GetEnvironmentId() *string { return m.EnvironmentId } -//GetInventoryId returns InventoryId +// GetInventoryId returns InventoryId func (m CreateVmWareAssetSourceDetails) GetInventoryId() *string { return m.InventoryId } -//GetAssetsCompartmentId returns AssetsCompartmentId +// GetAssetsCompartmentId returns AssetsCompartmentId func (m CreateVmWareAssetSourceDetails) GetAssetsCompartmentId() *string { return m.AssetsCompartmentId } -//GetDiscoveryScheduleId returns DiscoveryScheduleId +// GetDiscoveryScheduleId returns DiscoveryScheduleId func (m CreateVmWareAssetSourceDetails) GetDiscoveryScheduleId() *string { return m.DiscoveryScheduleId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateVmWareAssetSourceDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateVmWareAssetSourceDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m CreateVmWareAssetSourceDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/create_vmware_vm_asset_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/create_vmware_vm_asset_details.go index c34f44100db..7e286feb71e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/create_vmware_vm_asset_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/create_vmware_vm_asset_details.go @@ -56,42 +56,42 @@ type CreateVmwareVmAssetDetails struct { VmwareVCenter *VmwareVCenterProperties `mandatory:"false" json:"vmwareVCenter"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateVmwareVmAssetDetails) GetDisplayName() *string { return m.DisplayName } -//GetInventoryId returns InventoryId +// GetInventoryId returns InventoryId func (m CreateVmwareVmAssetDetails) GetInventoryId() *string { return m.InventoryId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateVmwareVmAssetDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetSourceKey returns SourceKey +// GetSourceKey returns SourceKey func (m CreateVmwareVmAssetDetails) GetSourceKey() *string { return m.SourceKey } -//GetExternalAssetKey returns ExternalAssetKey +// GetExternalAssetKey returns ExternalAssetKey func (m CreateVmwareVmAssetDetails) GetExternalAssetKey() *string { return m.ExternalAssetKey } -//GetAssetSourceIds returns AssetSourceIds +// GetAssetSourceIds returns AssetSourceIds func (m CreateVmwareVmAssetDetails) GetAssetSourceIds() []string { return m.AssetSourceIds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateVmwareVmAssetDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateVmwareVmAssetDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/import_inventory_via_assets_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/import_inventory_via_assets_details.go index a50fcfb8aee..34359049b7b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/import_inventory_via_assets_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/import_inventory_via_assets_details.go @@ -39,17 +39,17 @@ type ImportInventoryViaAssetsDetails struct { AssetType AssetTypeEnum `mandatory:"false" json:"assetType,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ImportInventoryViaAssetsDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ImportInventoryViaAssetsDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ImportInventoryViaAssetsDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vm_asset_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vm_asset_details.go index 9daf567f0ad..91f3acc0c4e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vm_asset_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vm_asset_details.go @@ -36,22 +36,22 @@ type UpdateVmAssetDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateVmAssetDetails) GetDisplayName() *string { return m.DisplayName } -//GetAssetSourceIds returns AssetSourceIds +// GetAssetSourceIds returns AssetSourceIds func (m UpdateVmAssetDetails) GetAssetSourceIds() []string { return m.AssetSourceIds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateVmAssetDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateVmAssetDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vm_ware_asset_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vm_ware_asset_source_details.go index 0f69fcb2834..51e0a9b33d9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vm_ware_asset_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vm_ware_asset_source_details.go @@ -58,27 +58,27 @@ type UpdateVmWareAssetSourceDetails struct { DiscoveryScheduleId *string `mandatory:"false" json:"discoveryScheduleId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateVmWareAssetSourceDetails) GetDisplayName() *string { return m.DisplayName } -//GetAssetsCompartmentId returns AssetsCompartmentId +// GetAssetsCompartmentId returns AssetsCompartmentId func (m UpdateVmWareAssetSourceDetails) GetAssetsCompartmentId() *string { return m.AssetsCompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateVmWareAssetSourceDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateVmWareAssetSourceDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m UpdateVmWareAssetSourceDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vmware_vm_asset_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vmware_vm_asset_details.go index 72e0d6d7d4a..e93eba193bb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vmware_vm_asset_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/update_vmware_vm_asset_details.go @@ -44,22 +44,22 @@ type UpdateVmwareVmAssetDetails struct { VmwareVCenter *VmwareVCenterProperties `mandatory:"false" json:"vmwareVCenter"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateVmwareVmAssetDetails) GetDisplayName() *string { return m.DisplayName } -//GetAssetSourceIds returns AssetSourceIds +// GetAssetSourceIds returns AssetSourceIds func (m UpdateVmwareVmAssetDetails) GetAssetSourceIds() []string { return m.AssetSourceIds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateVmwareVmAssetDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateVmwareVmAssetDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_asset.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_asset.go index 7cf798c61c6..815ed6d960b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_asset.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_asset.go @@ -69,67 +69,67 @@ type VmAsset struct { LifecycleState AssetLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VmAsset) GetDisplayName() *string { return m.DisplayName } -//GetInventoryId returns InventoryId +// GetInventoryId returns InventoryId func (m VmAsset) GetInventoryId() *string { return m.InventoryId } -//GetId returns Id +// GetId returns Id func (m VmAsset) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VmAsset) GetCompartmentId() *string { return m.CompartmentId } -//GetSourceKey returns SourceKey +// GetSourceKey returns SourceKey func (m VmAsset) GetSourceKey() *string { return m.SourceKey } -//GetExternalAssetKey returns ExternalAssetKey +// GetExternalAssetKey returns ExternalAssetKey func (m VmAsset) GetExternalAssetKey() *string { return m.ExternalAssetKey } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VmAsset) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VmAsset) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetAssetSourceIds returns AssetSourceIds +// GetAssetSourceIds returns AssetSourceIds func (m VmAsset) GetAssetSourceIds() []string { return m.AssetSourceIds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VmAsset) GetLifecycleState() AssetLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VmAsset) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VmAsset) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VmAsset) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_ware_asset_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_ware_asset_source.go index 3d27143c746..444efc2b148 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_ware_asset_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_ware_asset_source.go @@ -82,72 +82,72 @@ type VmWareAssetSource struct { LifecycleState AssetSourceLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m VmWareAssetSource) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VmWareAssetSource) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VmWareAssetSource) GetDisplayName() *string { return m.DisplayName } -//GetEnvironmentId returns EnvironmentId +// GetEnvironmentId returns EnvironmentId func (m VmWareAssetSource) GetEnvironmentId() *string { return m.EnvironmentId } -//GetInventoryId returns InventoryId +// GetInventoryId returns InventoryId func (m VmWareAssetSource) GetInventoryId() *string { return m.InventoryId } -//GetAssetsCompartmentId returns AssetsCompartmentId +// GetAssetsCompartmentId returns AssetsCompartmentId func (m VmWareAssetSource) GetAssetsCompartmentId() *string { return m.AssetsCompartmentId } -//GetDiscoveryScheduleId returns DiscoveryScheduleId +// GetDiscoveryScheduleId returns DiscoveryScheduleId func (m VmWareAssetSource) GetDiscoveryScheduleId() *string { return m.DiscoveryScheduleId } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VmWareAssetSource) GetLifecycleState() AssetSourceLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VmWareAssetSource) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VmWareAssetSource) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VmWareAssetSource) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VmWareAssetSource) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VmWareAssetSource) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VmWareAssetSource) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_ware_asset_source_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_ware_asset_source_summary.go index 8460eaa96b2..0471712f755 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_ware_asset_source_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vm_ware_asset_source_summary.go @@ -69,67 +69,67 @@ type VmWareAssetSourceSummary struct { LifecycleState AssetSourceLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m VmWareAssetSourceSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VmWareAssetSourceSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetEnvironmentId returns EnvironmentId +// GetEnvironmentId returns EnvironmentId func (m VmWareAssetSourceSummary) GetEnvironmentId() *string { return m.EnvironmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VmWareAssetSourceSummary) GetDisplayName() *string { return m.DisplayName } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VmWareAssetSourceSummary) GetLifecycleState() AssetSourceLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VmWareAssetSourceSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetInventoryId returns InventoryId +// GetInventoryId returns InventoryId func (m VmWareAssetSourceSummary) GetInventoryId() *string { return m.InventoryId } -//GetAssetsCompartmentId returns AssetsCompartmentId +// GetAssetsCompartmentId returns AssetsCompartmentId func (m VmWareAssetSourceSummary) GetAssetsCompartmentId() *string { return m.AssetsCompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VmWareAssetSourceSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VmWareAssetSourceSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VmWareAssetSourceSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VmWareAssetSourceSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VmWareAssetSourceSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vmware_vm_asset.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vmware_vm_asset.go index 44e824ccaee..842fb133e74 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vmware_vm_asset.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudbridge/vmware_vm_asset.go @@ -73,67 +73,67 @@ type VmwareVmAsset struct { LifecycleState AssetLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VmwareVmAsset) GetDisplayName() *string { return m.DisplayName } -//GetInventoryId returns InventoryId +// GetInventoryId returns InventoryId func (m VmwareVmAsset) GetInventoryId() *string { return m.InventoryId } -//GetId returns Id +// GetId returns Id func (m VmwareVmAsset) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VmwareVmAsset) GetCompartmentId() *string { return m.CompartmentId } -//GetSourceKey returns SourceKey +// GetSourceKey returns SourceKey func (m VmwareVmAsset) GetSourceKey() *string { return m.SourceKey } -//GetExternalAssetKey returns ExternalAssetKey +// GetExternalAssetKey returns ExternalAssetKey func (m VmwareVmAsset) GetExternalAssetKey() *string { return m.ExternalAssetKey } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VmwareVmAsset) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VmwareVmAsset) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetAssetSourceIds returns AssetSourceIds +// GetAssetSourceIds returns AssetSourceIds func (m VmwareVmAsset) GetAssetSourceIds() []string { return m.AssetSourceIds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VmwareVmAsset) GetLifecycleState() AssetLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VmwareVmAsset) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VmwareVmAsset) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VmwareVmAsset) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudguard/cloudguard_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudguard/cloudguard_client.go index 9f5c2da75d2..0465d6812ba 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudguard/cloudguard_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudguard/cloudguard_client.go @@ -94,7 +94,7 @@ func (client *CloudGuardClient) ConfigurationProvider() *common.ConfigurationPro // AddCompartment Add an existing compartment to a security zone. If you previously removed a subcompartment from a security zone, you can add it back to the same security zone. The security zone ensures that resources in the subcompartment comply with the security zone's policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/AddCompartment.go.html to see an example of how to use AddCompartment API. func (client CloudGuardClient) AddCompartment(ctx context.Context, request AddCompartmentRequest) (response AddCompartmentResponse, err error) { @@ -156,7 +156,7 @@ func (client CloudGuardClient) addCompartment(ctx context.Context, request commo // CancelWorkRequest Cancels the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. func (client CloudGuardClient) CancelWorkRequest(ctx context.Context, request CancelWorkRequestRequest) (response CancelWorkRequestResponse, err error) { @@ -213,7 +213,7 @@ func (client CloudGuardClient) cancelWorkRequest(ctx context.Context, request co // ChangeDataSourceCompartment Moves the DataSource from current compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ChangeDataSourceCompartment.go.html to see an example of how to use ChangeDataSourceCompartment API. func (client CloudGuardClient) ChangeDataSourceCompartment(ctx context.Context, request ChangeDataSourceCompartmentRequest) (response ChangeDataSourceCompartmentResponse, err error) { @@ -275,7 +275,7 @@ func (client CloudGuardClient) changeDataSourceCompartment(ctx context.Context, // ChangeDetectorRecipeCompartment Moves the DetectorRecipe from current compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ChangeDetectorRecipeCompartment.go.html to see an example of how to use ChangeDetectorRecipeCompartment API. func (client CloudGuardClient) ChangeDetectorRecipeCompartment(ctx context.Context, request ChangeDetectorRecipeCompartmentRequest) (response ChangeDetectorRecipeCompartmentResponse, err error) { @@ -337,7 +337,7 @@ func (client CloudGuardClient) changeDetectorRecipeCompartment(ctx context.Conte // ChangeManagedListCompartment Moves the ManagedList from current compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ChangeManagedListCompartment.go.html to see an example of how to use ChangeManagedListCompartment API. func (client CloudGuardClient) ChangeManagedListCompartment(ctx context.Context, request ChangeManagedListCompartmentRequest) (response ChangeManagedListCompartmentResponse, err error) { @@ -399,7 +399,7 @@ func (client CloudGuardClient) changeManagedListCompartment(ctx context.Context, // ChangeResponderRecipeCompartment Moves the ResponderRecipe from current compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ChangeResponderRecipeCompartment.go.html to see an example of how to use ChangeResponderRecipeCompartment API. func (client CloudGuardClient) ChangeResponderRecipeCompartment(ctx context.Context, request ChangeResponderRecipeCompartmentRequest) (response ChangeResponderRecipeCompartmentResponse, err error) { @@ -461,7 +461,7 @@ func (client CloudGuardClient) changeResponderRecipeCompartment(ctx context.Cont // ChangeSecurityRecipeCompartment Moves a security zone recipe to a different compartment. When provided, `If-Match` is checked against `ETag` values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ChangeSecurityRecipeCompartment.go.html to see an example of how to use ChangeSecurityRecipeCompartment API. func (client CloudGuardClient) ChangeSecurityRecipeCompartment(ctx context.Context, request ChangeSecurityRecipeCompartmentRequest) (response ChangeSecurityRecipeCompartmentResponse, err error) { @@ -523,7 +523,7 @@ func (client CloudGuardClient) changeSecurityRecipeCompartment(ctx context.Conte // ChangeSecurityZoneCompartment Moves a security zone to a different compartment. When provided, `If-Match` is checked against `ETag` values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ChangeSecurityZoneCompartment.go.html to see an example of how to use ChangeSecurityZoneCompartment API. func (client CloudGuardClient) ChangeSecurityZoneCompartment(ctx context.Context, request ChangeSecurityZoneCompartmentRequest) (response ChangeSecurityZoneCompartmentResponse, err error) { @@ -585,7 +585,7 @@ func (client CloudGuardClient) changeSecurityZoneCompartment(ctx context.Context // CreateDataMaskRule Creates a new Data Mask Rule Definition // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateDataMaskRule.go.html to see an example of how to use CreateDataMaskRule API. func (client CloudGuardClient) CreateDataMaskRule(ctx context.Context, request CreateDataMaskRuleRequest) (response CreateDataMaskRuleResponse, err error) { @@ -647,7 +647,7 @@ func (client CloudGuardClient) createDataMaskRule(ctx context.Context, request c // CreateDataSource Creates a DataSource // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateDataSource.go.html to see an example of how to use CreateDataSource API. func (client CloudGuardClient) CreateDataSource(ctx context.Context, request CreateDataSourceRequest) (response CreateDataSourceResponse, err error) { @@ -709,7 +709,7 @@ func (client CloudGuardClient) createDataSource(ctx context.Context, request com // CreateDetectorRecipe Creates a DetectorRecipe // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateDetectorRecipe.go.html to see an example of how to use CreateDetectorRecipe API. func (client CloudGuardClient) CreateDetectorRecipe(ctx context.Context, request CreateDetectorRecipeRequest) (response CreateDetectorRecipeResponse, err error) { @@ -771,7 +771,7 @@ func (client CloudGuardClient) createDetectorRecipe(ctx context.Context, request // CreateDetectorRecipeDetectorRule Create the DetectorRule // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateDetectorRecipeDetectorRule.go.html to see an example of how to use CreateDetectorRecipeDetectorRule API. func (client CloudGuardClient) CreateDetectorRecipeDetectorRule(ctx context.Context, request CreateDetectorRecipeDetectorRuleRequest) (response CreateDetectorRecipeDetectorRuleResponse, err error) { @@ -833,7 +833,7 @@ func (client CloudGuardClient) createDetectorRecipeDetectorRule(ctx context.Cont // CreateManagedList Creates a new ManagedList. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateManagedList.go.html to see an example of how to use CreateManagedList API. func (client CloudGuardClient) CreateManagedList(ctx context.Context, request CreateManagedListRequest) (response CreateManagedListResponse, err error) { @@ -895,7 +895,7 @@ func (client CloudGuardClient) createManagedList(ctx context.Context, request co // CreateResponderRecipe Create a ResponderRecipe. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateResponderRecipe.go.html to see an example of how to use CreateResponderRecipe API. func (client CloudGuardClient) CreateResponderRecipe(ctx context.Context, request CreateResponderRecipeRequest) (response CreateResponderRecipeResponse, err error) { @@ -957,7 +957,7 @@ func (client CloudGuardClient) createResponderRecipe(ctx context.Context, reques // CreateSecurityRecipe Creates a security zone recipe. A security zone recipe is a collection of security zone policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateSecurityRecipe.go.html to see an example of how to use CreateSecurityRecipe API. func (client CloudGuardClient) CreateSecurityRecipe(ctx context.Context, request CreateSecurityRecipeRequest) (response CreateSecurityRecipeResponse, err error) { @@ -1019,7 +1019,7 @@ func (client CloudGuardClient) createSecurityRecipe(ctx context.Context, request // CreateSecurityZone Creates a security zone for a compartment. A security zone enforces all security zone policies in a given security zone recipe. Any actions that violate a policy are denied. By default, any subcompartments are also in the same security zone. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateSecurityZone.go.html to see an example of how to use CreateSecurityZone API. func (client CloudGuardClient) CreateSecurityZone(ctx context.Context, request CreateSecurityZoneRequest) (response CreateSecurityZoneResponse, err error) { @@ -1081,7 +1081,7 @@ func (client CloudGuardClient) createSecurityZone(ctx context.Context, request c // CreateTarget Creates a new Target // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateTarget.go.html to see an example of how to use CreateTarget API. func (client CloudGuardClient) CreateTarget(ctx context.Context, request CreateTargetRequest) (response CreateTargetResponse, err error) { @@ -1143,7 +1143,7 @@ func (client CloudGuardClient) createTarget(ctx context.Context, request common. // CreateTargetDetectorRecipe Attach a DetectorRecipe with the Target // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateTargetDetectorRecipe.go.html to see an example of how to use CreateTargetDetectorRecipe API. func (client CloudGuardClient) CreateTargetDetectorRecipe(ctx context.Context, request CreateTargetDetectorRecipeRequest) (response CreateTargetDetectorRecipeResponse, err error) { @@ -1205,7 +1205,7 @@ func (client CloudGuardClient) createTargetDetectorRecipe(ctx context.Context, r // CreateTargetResponderRecipe Attach a ResponderRecipe with the Target // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/CreateTargetResponderRecipe.go.html to see an example of how to use CreateTargetResponderRecipe API. func (client CloudGuardClient) CreateTargetResponderRecipe(ctx context.Context, request CreateTargetResponderRecipeRequest) (response CreateTargetResponderRecipeResponse, err error) { @@ -1267,7 +1267,7 @@ func (client CloudGuardClient) createTargetResponderRecipe(ctx context.Context, // DeleteDataMaskRule Deletes a DataMaskRule identified by dataMaskRuleId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteDataMaskRule.go.html to see an example of how to use DeleteDataMaskRule API. func (client CloudGuardClient) DeleteDataMaskRule(ctx context.Context, request DeleteDataMaskRuleRequest) (response DeleteDataMaskRuleResponse, err error) { @@ -1324,7 +1324,7 @@ func (client CloudGuardClient) deleteDataMaskRule(ctx context.Context, request c // DeleteDataSource Deletes a DataSource identified by dataSourceId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteDataSource.go.html to see an example of how to use DeleteDataSource API. func (client CloudGuardClient) DeleteDataSource(ctx context.Context, request DeleteDataSourceRequest) (response DeleteDataSourceResponse, err error) { @@ -1386,7 +1386,7 @@ func (client CloudGuardClient) deleteDataSource(ctx context.Context, request com // DeleteDetectorRecipe Deletes a DetectorRecipe identified by detectorRecipeId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteDetectorRecipe.go.html to see an example of how to use DeleteDetectorRecipe API. func (client CloudGuardClient) DeleteDetectorRecipe(ctx context.Context, request DeleteDetectorRecipeRequest) (response DeleteDetectorRecipeResponse, err error) { @@ -1448,7 +1448,7 @@ func (client CloudGuardClient) deleteDetectorRecipe(ctx context.Context, request // DeleteDetectorRecipeDetectorRule Deletes DetectorRecipeDetectorRule // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteDetectorRecipeDetectorRule.go.html to see an example of how to use DeleteDetectorRecipeDetectorRule API. func (client CloudGuardClient) DeleteDetectorRecipeDetectorRule(ctx context.Context, request DeleteDetectorRecipeDetectorRuleRequest) (response DeleteDetectorRecipeDetectorRuleResponse, err error) { @@ -1505,7 +1505,7 @@ func (client CloudGuardClient) deleteDetectorRecipeDetectorRule(ctx context.Cont // DeleteDetectorRecipeDetectorRuleDataSource Delete the DetectorRecipeDetectorRuleDataSource resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteDetectorRecipeDetectorRuleDataSource.go.html to see an example of how to use DeleteDetectorRecipeDetectorRuleDataSource API. func (client CloudGuardClient) DeleteDetectorRecipeDetectorRuleDataSource(ctx context.Context, request DeleteDetectorRecipeDetectorRuleDataSourceRequest) (response DeleteDetectorRecipeDetectorRuleDataSourceResponse, err error) { @@ -1562,7 +1562,7 @@ func (client CloudGuardClient) deleteDetectorRecipeDetectorRuleDataSource(ctx co // DeleteManagedList Deletes a managed list identified by managedListId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteManagedList.go.html to see an example of how to use DeleteManagedList API. func (client CloudGuardClient) DeleteManagedList(ctx context.Context, request DeleteManagedListRequest) (response DeleteManagedListResponse, err error) { @@ -1624,7 +1624,7 @@ func (client CloudGuardClient) deleteManagedList(ctx context.Context, request co // DeleteResponderRecipe Delete the ResponderRecipe resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteResponderRecipe.go.html to see an example of how to use DeleteResponderRecipe API. func (client CloudGuardClient) DeleteResponderRecipe(ctx context.Context, request DeleteResponderRecipeRequest) (response DeleteResponderRecipeResponse, err error) { @@ -1681,7 +1681,7 @@ func (client CloudGuardClient) deleteResponderRecipe(ctx context.Context, reques // DeleteSecurityRecipe Deletes a security zone recipe. The recipe can't be associated with an existing security zone. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteSecurityRecipe.go.html to see an example of how to use DeleteSecurityRecipe API. func (client CloudGuardClient) DeleteSecurityRecipe(ctx context.Context, request DeleteSecurityRecipeRequest) (response DeleteSecurityRecipeResponse, err error) { @@ -1738,7 +1738,7 @@ func (client CloudGuardClient) deleteSecurityRecipe(ctx context.Context, request // DeleteSecurityZone Deletes an existing security zone with a given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteSecurityZone.go.html to see an example of how to use DeleteSecurityZone API. func (client CloudGuardClient) DeleteSecurityZone(ctx context.Context, request DeleteSecurityZoneRequest) (response DeleteSecurityZoneResponse, err error) { @@ -1795,7 +1795,7 @@ func (client CloudGuardClient) deleteSecurityZone(ctx context.Context, request c // DeleteTarget Deletes a Target identified by targetId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteTarget.go.html to see an example of how to use DeleteTarget API. func (client CloudGuardClient) DeleteTarget(ctx context.Context, request DeleteTargetRequest) (response DeleteTargetResponse, err error) { @@ -1852,7 +1852,7 @@ func (client CloudGuardClient) deleteTarget(ctx context.Context, request common. // DeleteTargetDetectorRecipe Delete the TargetDetectorRecipe resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteTargetDetectorRecipe.go.html to see an example of how to use DeleteTargetDetectorRecipe API. func (client CloudGuardClient) DeleteTargetDetectorRecipe(ctx context.Context, request DeleteTargetDetectorRecipeRequest) (response DeleteTargetDetectorRecipeResponse, err error) { @@ -1909,7 +1909,7 @@ func (client CloudGuardClient) deleteTargetDetectorRecipe(ctx context.Context, r // DeleteTargetResponderRecipe Delete the TargetResponderRecipe resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/DeleteTargetResponderRecipe.go.html to see an example of how to use DeleteTargetResponderRecipe API. func (client CloudGuardClient) DeleteTargetResponderRecipe(ctx context.Context, request DeleteTargetResponderRecipeRequest) (response DeleteTargetResponderRecipeResponse, err error) { @@ -1966,7 +1966,7 @@ func (client CloudGuardClient) deleteTargetResponderRecipe(ctx context.Context, // ExecuteResponderExecution Executes the responder execution. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ExecuteResponderExecution.go.html to see an example of how to use ExecuteResponderExecution API. func (client CloudGuardClient) ExecuteResponderExecution(ctx context.Context, request ExecuteResponderExecutionRequest) (response ExecuteResponderExecutionResponse, err error) { @@ -2028,7 +2028,7 @@ func (client CloudGuardClient) executeResponderExecution(ctx context.Context, re // GetConditionMetadataType Returns ConditionType with its details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetConditionMetadataType.go.html to see an example of how to use GetConditionMetadataType API. func (client CloudGuardClient) GetConditionMetadataType(ctx context.Context, request GetConditionMetadataTypeRequest) (response GetConditionMetadataTypeResponse, err error) { @@ -2085,7 +2085,7 @@ func (client CloudGuardClient) getConditionMetadataType(ctx context.Context, req // GetConfiguration GET Cloud Guard Configuration Details for a Tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetConfiguration.go.html to see an example of how to use GetConfiguration API. func (client CloudGuardClient) GetConfiguration(ctx context.Context, request GetConfigurationRequest) (response GetConfigurationResponse, err error) { @@ -2142,7 +2142,7 @@ func (client CloudGuardClient) getConfiguration(ctx context.Context, request com // GetDataMaskRule Returns a DataMaskRule identified by DataMaskRuleId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetDataMaskRule.go.html to see an example of how to use GetDataMaskRule API. func (client CloudGuardClient) GetDataMaskRule(ctx context.Context, request GetDataMaskRuleRequest) (response GetDataMaskRuleResponse, err error) { @@ -2199,7 +2199,7 @@ func (client CloudGuardClient) getDataMaskRule(ctx context.Context, request comm // GetDataSource Returns a DataSource identified by dataSourceId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetDataSource.go.html to see an example of how to use GetDataSource API. func (client CloudGuardClient) GetDataSource(ctx context.Context, request GetDataSourceRequest) (response GetDataSourceResponse, err error) { @@ -2256,7 +2256,7 @@ func (client CloudGuardClient) getDataSource(ctx context.Context, request common // GetDetector Returns a Detector identified by detectorId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetDetector.go.html to see an example of how to use GetDetector API. func (client CloudGuardClient) GetDetector(ctx context.Context, request GetDetectorRequest) (response GetDetectorResponse, err error) { @@ -2313,7 +2313,7 @@ func (client CloudGuardClient) getDetector(ctx context.Context, request common.O // GetDetectorRecipe Returns a DetectorRecipe identified by detectorRecipeId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetDetectorRecipe.go.html to see an example of how to use GetDetectorRecipe API. func (client CloudGuardClient) GetDetectorRecipe(ctx context.Context, request GetDetectorRecipeRequest) (response GetDetectorRecipeResponse, err error) { @@ -2370,7 +2370,7 @@ func (client CloudGuardClient) getDetectorRecipe(ctx context.Context, request co // GetDetectorRecipeDetectorRule Get DetectorRule by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetDetectorRecipeDetectorRule.go.html to see an example of how to use GetDetectorRecipeDetectorRule API. func (client CloudGuardClient) GetDetectorRecipeDetectorRule(ctx context.Context, request GetDetectorRecipeDetectorRuleRequest) (response GetDetectorRecipeDetectorRuleResponse, err error) { @@ -2427,7 +2427,7 @@ func (client CloudGuardClient) getDetectorRecipeDetectorRule(ctx context.Context // GetDetectorRule Returns a Detector Rule identified by detectorRuleId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetDetectorRule.go.html to see an example of how to use GetDetectorRule API. func (client CloudGuardClient) GetDetectorRule(ctx context.Context, request GetDetectorRuleRequest) (response GetDetectorRuleResponse, err error) { @@ -2484,7 +2484,7 @@ func (client CloudGuardClient) getDetectorRule(ctx context.Context, request comm // GetManagedList Returns a managed list identified by managedListId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetManagedList.go.html to see an example of how to use GetManagedList API. func (client CloudGuardClient) GetManagedList(ctx context.Context, request GetManagedListRequest) (response GetManagedListResponse, err error) { @@ -2541,7 +2541,7 @@ func (client CloudGuardClient) getManagedList(ctx context.Context, request commo // GetProblem Returns a Problems response // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetProblem.go.html to see an example of how to use GetProblem API. func (client CloudGuardClient) GetProblem(ctx context.Context, request GetProblemRequest) (response GetProblemResponse, err error) { @@ -2598,7 +2598,7 @@ func (client CloudGuardClient) getProblem(ctx context.Context, request common.OC // GetResourceProfile Returns resource profile details // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetResourceProfile.go.html to see an example of how to use GetResourceProfile API. func (client CloudGuardClient) GetResourceProfile(ctx context.Context, request GetResourceProfileRequest) (response GetResourceProfileResponse, err error) { @@ -2655,7 +2655,7 @@ func (client CloudGuardClient) getResourceProfile(ctx context.Context, request c // GetResponderExecution Returns a Responder Execution identified by responderExecutionId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetResponderExecution.go.html to see an example of how to use GetResponderExecution API. func (client CloudGuardClient) GetResponderExecution(ctx context.Context, request GetResponderExecutionRequest) (response GetResponderExecutionResponse, err error) { @@ -2712,7 +2712,7 @@ func (client CloudGuardClient) getResponderExecution(ctx context.Context, reques // GetResponderRecipe Get a ResponderRecipe by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetResponderRecipe.go.html to see an example of how to use GetResponderRecipe API. func (client CloudGuardClient) GetResponderRecipe(ctx context.Context, request GetResponderRecipeRequest) (response GetResponderRecipeResponse, err error) { @@ -2769,7 +2769,7 @@ func (client CloudGuardClient) getResponderRecipe(ctx context.Context, request c // GetResponderRecipeResponderRule Get ResponderRule by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetResponderRecipeResponderRule.go.html to see an example of how to use GetResponderRecipeResponderRule API. func (client CloudGuardClient) GetResponderRecipeResponderRule(ctx context.Context, request GetResponderRecipeResponderRuleRequest) (response GetResponderRecipeResponderRuleResponse, err error) { @@ -2826,7 +2826,7 @@ func (client CloudGuardClient) getResponderRecipeResponderRule(ctx context.Conte // GetResponderRule Get a ResponderRule by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetResponderRule.go.html to see an example of how to use GetResponderRule API. func (client CloudGuardClient) GetResponderRule(ctx context.Context, request GetResponderRuleRequest) (response GetResponderRuleResponse, err error) { @@ -2883,7 +2883,7 @@ func (client CloudGuardClient) getResponderRule(ctx context.Context, request com // GetSecurityPolicy Gets a security zone policy using its identifier. When a policy is enabled in a security zone, then any action in the zone that attempts to violate that policy is denied. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetSecurityPolicy.go.html to see an example of how to use GetSecurityPolicy API. func (client CloudGuardClient) GetSecurityPolicy(ctx context.Context, request GetSecurityPolicyRequest) (response GetSecurityPolicyResponse, err error) { @@ -2940,7 +2940,7 @@ func (client CloudGuardClient) getSecurityPolicy(ctx context.Context, request co // GetSecurityRecipe Gets a security zone recipe by identifier. A security zone recipe is a collection of security zone policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetSecurityRecipe.go.html to see an example of how to use GetSecurityRecipe API. func (client CloudGuardClient) GetSecurityRecipe(ctx context.Context, request GetSecurityRecipeRequest) (response GetSecurityRecipeResponse, err error) { @@ -2997,7 +2997,7 @@ func (client CloudGuardClient) getSecurityRecipe(ctx context.Context, request co // GetSecurityZone Gets a security zone by its identifier. A security zone is associated with a security zone recipe and enforces all security zone policies in the recipe. Any actions in the zone's compartments that violate a policy are denied. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetSecurityZone.go.html to see an example of how to use GetSecurityZone API. func (client CloudGuardClient) GetSecurityZone(ctx context.Context, request GetSecurityZoneRequest) (response GetSecurityZoneResponse, err error) { @@ -3054,7 +3054,7 @@ func (client CloudGuardClient) getSecurityZone(ctx context.Context, request comm // GetSighting Returns Sighting details // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetSighting.go.html to see an example of how to use GetSighting API. func (client CloudGuardClient) GetSighting(ctx context.Context, request GetSightingRequest) (response GetSightingResponse, err error) { @@ -3111,7 +3111,7 @@ func (client CloudGuardClient) getSighting(ctx context.Context, request common.O // GetTarget Returns a Target identified by targetId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetTarget.go.html to see an example of how to use GetTarget API. func (client CloudGuardClient) GetTarget(ctx context.Context, request GetTargetRequest) (response GetTargetResponse, err error) { @@ -3168,7 +3168,7 @@ func (client CloudGuardClient) getTarget(ctx context.Context, request common.OCI // GetTargetDetectorRecipe Get a TargetDetectorRecipe by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetTargetDetectorRecipe.go.html to see an example of how to use GetTargetDetectorRecipe API. func (client CloudGuardClient) GetTargetDetectorRecipe(ctx context.Context, request GetTargetDetectorRecipeRequest) (response GetTargetDetectorRecipeResponse, err error) { @@ -3225,7 +3225,7 @@ func (client CloudGuardClient) getTargetDetectorRecipe(ctx context.Context, requ // GetTargetDetectorRecipeDetectorRule Get DetectorRule by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetTargetDetectorRecipeDetectorRule.go.html to see an example of how to use GetTargetDetectorRecipeDetectorRule API. func (client CloudGuardClient) GetTargetDetectorRecipeDetectorRule(ctx context.Context, request GetTargetDetectorRecipeDetectorRuleRequest) (response GetTargetDetectorRecipeDetectorRuleResponse, err error) { @@ -3282,7 +3282,7 @@ func (client CloudGuardClient) getTargetDetectorRecipeDetectorRule(ctx context.C // GetTargetResponderRecipe Get a TargetResponderRecipe by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetTargetResponderRecipe.go.html to see an example of how to use GetTargetResponderRecipe API. func (client CloudGuardClient) GetTargetResponderRecipe(ctx context.Context, request GetTargetResponderRecipeRequest) (response GetTargetResponderRecipeResponse, err error) { @@ -3339,7 +3339,7 @@ func (client CloudGuardClient) getTargetResponderRecipe(ctx context.Context, req // GetTargetResponderRecipeResponderRule Get ResponderRule by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetTargetResponderRecipeResponderRule.go.html to see an example of how to use GetTargetResponderRecipeResponderRule API. func (client CloudGuardClient) GetTargetResponderRecipeResponderRule(ctx context.Context, request GetTargetResponderRecipeResponderRuleRequest) (response GetTargetResponderRecipeResponderRuleResponse, err error) { @@ -3396,7 +3396,7 @@ func (client CloudGuardClient) getTargetResponderRecipeResponderRule(ctx context // GetWorkRequest Gets details of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client CloudGuardClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -3453,7 +3453,7 @@ func (client CloudGuardClient) getWorkRequest(ctx context.Context, request commo // ListConditionMetadataTypes Returns a list of condition types. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListConditionMetadataTypes.go.html to see an example of how to use ListConditionMetadataTypes API. func (client CloudGuardClient) ListConditionMetadataTypes(ctx context.Context, request ListConditionMetadataTypesRequest) (response ListConditionMetadataTypesResponse, err error) { @@ -3510,7 +3510,7 @@ func (client CloudGuardClient) listConditionMetadataTypes(ctx context.Context, r // ListDataMaskRules Returns a list of all Data Mask Rules in the root 'compartmentId' passed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListDataMaskRules.go.html to see an example of how to use ListDataMaskRules API. func (client CloudGuardClient) ListDataMaskRules(ctx context.Context, request ListDataMaskRulesRequest) (response ListDataMaskRulesResponse, err error) { @@ -3567,7 +3567,7 @@ func (client CloudGuardClient) listDataMaskRules(ctx context.Context, request co // ListDataSourceEvents Returns a list of events from CloudGuard DataSource // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListDataSourceEvents.go.html to see an example of how to use ListDataSourceEvents API. func (client CloudGuardClient) ListDataSourceEvents(ctx context.Context, request ListDataSourceEventsRequest) (response ListDataSourceEventsResponse, err error) { @@ -3635,7 +3635,7 @@ func (client CloudGuardClient) listDataSourceEvents(ctx context.Context, request // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListDataSources.go.html to see an example of how to use ListDataSources API. func (client CloudGuardClient) ListDataSources(ctx context.Context, request ListDataSourcesRequest) (response ListDataSourcesResponse, err error) { @@ -3692,7 +3692,7 @@ func (client CloudGuardClient) listDataSources(ctx context.Context, request comm // ListDetectorRecipeDetectorRules Returns a list of DetectorRule associated with DetectorRecipe. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListDetectorRecipeDetectorRules.go.html to see an example of how to use ListDetectorRecipeDetectorRules API. func (client CloudGuardClient) ListDetectorRecipeDetectorRules(ctx context.Context, request ListDetectorRecipeDetectorRulesRequest) (response ListDetectorRecipeDetectorRulesResponse, err error) { @@ -3760,7 +3760,7 @@ func (client CloudGuardClient) listDetectorRecipeDetectorRules(ctx context.Conte // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListDetectorRecipes.go.html to see an example of how to use ListDetectorRecipes API. func (client CloudGuardClient) ListDetectorRecipes(ctx context.Context, request ListDetectorRecipesRequest) (response ListDetectorRecipesResponse, err error) { @@ -3817,7 +3817,7 @@ func (client CloudGuardClient) listDetectorRecipes(ctx context.Context, request // ListDetectorRules Returns a list of detector rules for the detectorId passed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListDetectorRules.go.html to see an example of how to use ListDetectorRules API. func (client CloudGuardClient) ListDetectorRules(ctx context.Context, request ListDetectorRulesRequest) (response ListDetectorRulesResponse, err error) { @@ -3874,7 +3874,7 @@ func (client CloudGuardClient) listDetectorRules(ctx context.Context, request co // ListDetectors Returns detector catalog - list of detectors supported by Cloud Guard // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListDetectors.go.html to see an example of how to use ListDetectors API. func (client CloudGuardClient) ListDetectors(ctx context.Context, request ListDetectorsRequest) (response ListDetectorsResponse, err error) { @@ -3931,7 +3931,7 @@ func (client CloudGuardClient) listDetectors(ctx context.Context, request common // ListImpactedResources Returns a list of Impacted Resources for a CloudGuard Problem // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListImpactedResources.go.html to see an example of how to use ListImpactedResources API. func (client CloudGuardClient) ListImpactedResources(ctx context.Context, request ListImpactedResourcesRequest) (response ListImpactedResourcesResponse, err error) { @@ -3988,7 +3988,7 @@ func (client CloudGuardClient) listImpactedResources(ctx context.Context, reques // ListManagedListTypes Returns all ManagedList types supported by Cloud Guard // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListManagedListTypes.go.html to see an example of how to use ListManagedListTypes API. func (client CloudGuardClient) ListManagedListTypes(ctx context.Context, request ListManagedListTypesRequest) (response ListManagedListTypesResponse, err error) { @@ -4056,7 +4056,7 @@ func (client CloudGuardClient) listManagedListTypes(ctx context.Context, request // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListManagedLists.go.html to see an example of how to use ListManagedLists API. func (client CloudGuardClient) ListManagedLists(ctx context.Context, request ListManagedListsRequest) (response ListManagedListsResponse, err error) { @@ -4113,7 +4113,7 @@ func (client CloudGuardClient) listManagedLists(ctx context.Context, request com // ListPolicies Returns the list of global policy statements needed by Cloud Guard when enabling // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListPolicies.go.html to see an example of how to use ListPolicies API. func (client CloudGuardClient) ListPolicies(ctx context.Context, request ListPoliciesRequest) (response ListPoliciesResponse, err error) { @@ -4170,7 +4170,7 @@ func (client CloudGuardClient) listPolicies(ctx context.Context, request common. // ListProblemEndpoints Returns a list of endpoints associated with a cloud guard problem // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListProblemEndpoints.go.html to see an example of how to use ListProblemEndpoints API. func (client CloudGuardClient) ListProblemEndpoints(ctx context.Context, request ListProblemEndpointsRequest) (response ListProblemEndpointsResponse, err error) { @@ -4227,7 +4227,7 @@ func (client CloudGuardClient) listProblemEndpoints(ctx context.Context, request // ListProblemEntities Returns a list of entities for a CloudGuard Problem // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListProblemEntities.go.html to see an example of how to use ListProblemEntities API. func (client CloudGuardClient) ListProblemEntities(ctx context.Context, request ListProblemEntitiesRequest) (response ListProblemEntitiesResponse, err error) { @@ -4284,7 +4284,7 @@ func (client CloudGuardClient) listProblemEntities(ctx context.Context, request // ListProblemHistories Returns a list of Actions done on CloudGuard Problem // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListProblemHistories.go.html to see an example of how to use ListProblemHistories API. func (client CloudGuardClient) ListProblemHistories(ctx context.Context, request ListProblemHistoriesRequest) (response ListProblemHistoriesResponse, err error) { @@ -4352,7 +4352,7 @@ func (client CloudGuardClient) listProblemHistories(ctx context.Context, request // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListProblems.go.html to see an example of how to use ListProblems API. func (client CloudGuardClient) ListProblems(ctx context.Context, request ListProblemsRequest) (response ListProblemsResponse, err error) { @@ -4409,7 +4409,7 @@ func (client CloudGuardClient) listProblems(ctx context.Context, request common. // ListRecommendations Returns a list of all Recommendations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListRecommendations.go.html to see an example of how to use ListRecommendations API. func (client CloudGuardClient) ListRecommendations(ctx context.Context, request ListRecommendationsRequest) (response ListRecommendationsResponse, err error) { @@ -4466,7 +4466,7 @@ func (client CloudGuardClient) listRecommendations(ctx context.Context, request // ListResourceProfileEndpoints Returns a list of endpoints for Cloud Guard resource profile // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListResourceProfileEndpoints.go.html to see an example of how to use ListResourceProfileEndpoints API. func (client CloudGuardClient) ListResourceProfileEndpoints(ctx context.Context, request ListResourceProfileEndpointsRequest) (response ListResourceProfileEndpointsResponse, err error) { @@ -4523,7 +4523,7 @@ func (client CloudGuardClient) listResourceProfileEndpoints(ctx context.Context, // ListResourceProfileImpactedResources Returns a list of impacted resources for Cloud Guard resource profile // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListResourceProfileImpactedResources.go.html to see an example of how to use ListResourceProfileImpactedResources API. func (client CloudGuardClient) ListResourceProfileImpactedResources(ctx context.Context, request ListResourceProfileImpactedResourcesRequest) (response ListResourceProfileImpactedResourcesResponse, err error) { @@ -4591,7 +4591,7 @@ func (client CloudGuardClient) listResourceProfileImpactedResources(ctx context. // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListResourceProfiles.go.html to see an example of how to use ListResourceProfiles API. func (client CloudGuardClient) ListResourceProfiles(ctx context.Context, request ListResourceProfilesRequest) (response ListResourceProfilesResponse, err error) { @@ -4648,7 +4648,7 @@ func (client CloudGuardClient) listResourceProfiles(ctx context.Context, request // ListResourceTypes Returns a list of resource types. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListResourceTypes.go.html to see an example of how to use ListResourceTypes API. func (client CloudGuardClient) ListResourceTypes(ctx context.Context, request ListResourceTypesRequest) (response ListResourceTypesResponse, err error) { @@ -4705,7 +4705,7 @@ func (client CloudGuardClient) listResourceTypes(ctx context.Context, request co // ListResponderActivities Returns a list of Responder activities done on CloudGuard Problem // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListResponderActivities.go.html to see an example of how to use ListResponderActivities API. func (client CloudGuardClient) ListResponderActivities(ctx context.Context, request ListResponderActivitiesRequest) (response ListResponderActivitiesResponse, err error) { @@ -4762,7 +4762,7 @@ func (client CloudGuardClient) listResponderActivities(ctx context.Context, requ // ListResponderExecutions Returns a list of Responder Executions. A Responder Execution is an entity that tracks the collective execution of multiple Responder Rule Executions for a given Problem. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListResponderExecutions.go.html to see an example of how to use ListResponderExecutions API. func (client CloudGuardClient) ListResponderExecutions(ctx context.Context, request ListResponderExecutionsRequest) (response ListResponderExecutionsResponse, err error) { @@ -4819,7 +4819,7 @@ func (client CloudGuardClient) listResponderExecutions(ctx context.Context, requ // ListResponderRecipeResponderRules Returns a list of ResponderRule associated with ResponderRecipe. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListResponderRecipeResponderRules.go.html to see an example of how to use ListResponderRecipeResponderRules API. func (client CloudGuardClient) ListResponderRecipeResponderRules(ctx context.Context, request ListResponderRecipeResponderRulesRequest) (response ListResponderRecipeResponderRulesResponse, err error) { @@ -4887,7 +4887,7 @@ func (client CloudGuardClient) listResponderRecipeResponderRules(ctx context.Con // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListResponderRecipes.go.html to see an example of how to use ListResponderRecipes API. func (client CloudGuardClient) ListResponderRecipes(ctx context.Context, request ListResponderRecipesRequest) (response ListResponderRecipesResponse, err error) { @@ -4944,7 +4944,7 @@ func (client CloudGuardClient) listResponderRecipes(ctx context.Context, request // ListResponderRules Returns a list of ResponderRule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListResponderRules.go.html to see an example of how to use ListResponderRules API. func (client CloudGuardClient) ListResponderRules(ctx context.Context, request ListResponderRulesRequest) (response ListResponderRulesResponse, err error) { @@ -5001,7 +5001,7 @@ func (client CloudGuardClient) listResponderRules(ctx context.Context, request c // ListSecurityPolicies Returns a list of security zone policies. Specify any compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListSecurityPolicies.go.html to see an example of how to use ListSecurityPolicies API. func (client CloudGuardClient) ListSecurityPolicies(ctx context.Context, request ListSecurityPoliciesRequest) (response ListSecurityPoliciesResponse, err error) { @@ -5058,7 +5058,7 @@ func (client CloudGuardClient) listSecurityPolicies(ctx context.Context, request // ListSecurityRecipes Gets a list of all security zone recipes in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListSecurityRecipes.go.html to see an example of how to use ListSecurityRecipes API. func (client CloudGuardClient) ListSecurityRecipes(ctx context.Context, request ListSecurityRecipesRequest) (response ListSecurityRecipesResponse, err error) { @@ -5115,7 +5115,7 @@ func (client CloudGuardClient) listSecurityRecipes(ctx context.Context, request // ListSecurityZones Gets a list of all security zones in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListSecurityZones.go.html to see an example of how to use ListSecurityZones API. func (client CloudGuardClient) ListSecurityZones(ctx context.Context, request ListSecurityZonesRequest) (response ListSecurityZonesResponse, err error) { @@ -5172,7 +5172,7 @@ func (client CloudGuardClient) listSecurityZones(ctx context.Context, request co // ListSightingEndpoints Returns Sighting endpoints details // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListSightingEndpoints.go.html to see an example of how to use ListSightingEndpoints API. func (client CloudGuardClient) ListSightingEndpoints(ctx context.Context, request ListSightingEndpointsRequest) (response ListSightingEndpointsResponse, err error) { @@ -5229,7 +5229,7 @@ func (client CloudGuardClient) listSightingEndpoints(ctx context.Context, reques // ListSightingImpactedResources Return a list of Impacted Resources for a CloudGuard Sighting // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListSightingImpactedResources.go.html to see an example of how to use ListSightingImpactedResources API. func (client CloudGuardClient) ListSightingImpactedResources(ctx context.Context, request ListSightingImpactedResourcesRequest) (response ListSightingImpactedResourcesResponse, err error) { @@ -5296,7 +5296,7 @@ func (client CloudGuardClient) listSightingImpactedResources(ctx context.Context // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListSightings.go.html to see an example of how to use ListSightings API. func (client CloudGuardClient) ListSightings(ctx context.Context, request ListSightingsRequest) (response ListSightingsResponse, err error) { @@ -5353,7 +5353,7 @@ func (client CloudGuardClient) listSightings(ctx context.Context, request common // ListTactics Returns a list of tactics associated with detector rules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListTactics.go.html to see an example of how to use ListTactics API. func (client CloudGuardClient) ListTactics(ctx context.Context, request ListTacticsRequest) (response ListTacticsResponse, err error) { @@ -5410,7 +5410,7 @@ func (client CloudGuardClient) listTactics(ctx context.Context, request common.O // ListTargetDetectorRecipeDetectorRules Returns a list of DetectorRule associated with DetectorRecipe within a Target. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListTargetDetectorRecipeDetectorRules.go.html to see an example of how to use ListTargetDetectorRecipeDetectorRules API. func (client CloudGuardClient) ListTargetDetectorRecipeDetectorRules(ctx context.Context, request ListTargetDetectorRecipeDetectorRulesRequest) (response ListTargetDetectorRecipeDetectorRulesResponse, err error) { @@ -5467,7 +5467,7 @@ func (client CloudGuardClient) listTargetDetectorRecipeDetectorRules(ctx context // ListTargetDetectorRecipes Returns a list of all detector recipes associated with the target identified by targetId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListTargetDetectorRecipes.go.html to see an example of how to use ListTargetDetectorRecipes API. func (client CloudGuardClient) ListTargetDetectorRecipes(ctx context.Context, request ListTargetDetectorRecipesRequest) (response ListTargetDetectorRecipesResponse, err error) { @@ -5524,7 +5524,7 @@ func (client CloudGuardClient) listTargetDetectorRecipes(ctx context.Context, re // ListTargetResponderRecipeResponderRules Returns a list of ResponderRule associated with ResponderRecipe within a Target. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListTargetResponderRecipeResponderRules.go.html to see an example of how to use ListTargetResponderRecipeResponderRules API. func (client CloudGuardClient) ListTargetResponderRecipeResponderRules(ctx context.Context, request ListTargetResponderRecipeResponderRulesRequest) (response ListTargetResponderRecipeResponderRulesResponse, err error) { @@ -5581,7 +5581,7 @@ func (client CloudGuardClient) listTargetResponderRecipeResponderRules(ctx conte // ListTargetResponderRecipes Returns a list of all responder recipes associated with the target identified by targetId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListTargetResponderRecipes.go.html to see an example of how to use ListTargetResponderRecipes API. func (client CloudGuardClient) ListTargetResponderRecipes(ctx context.Context, request ListTargetResponderRecipesRequest) (response ListTargetResponderRecipesResponse, err error) { @@ -5649,7 +5649,7 @@ func (client CloudGuardClient) listTargetResponderRecipes(ctx context.Context, r // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListTargets.go.html to see an example of how to use ListTargets API. func (client CloudGuardClient) ListTargets(ctx context.Context, request ListTargetsRequest) (response ListTargetsResponse, err error) { @@ -5706,7 +5706,7 @@ func (client CloudGuardClient) listTargets(ctx context.Context, request common.O // ListTechniques Returns a list of techniques associated with detector rules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListTechniques.go.html to see an example of how to use ListTechniques API. func (client CloudGuardClient) ListTechniques(ctx context.Context, request ListTechniquesRequest) (response ListTechniquesResponse, err error) { @@ -5763,7 +5763,7 @@ func (client CloudGuardClient) listTechniques(ctx context.Context, request commo // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client CloudGuardClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -5820,7 +5820,7 @@ func (client CloudGuardClient) listWorkRequestErrors(ctx context.Context, reques // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client CloudGuardClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -5877,7 +5877,7 @@ func (client CloudGuardClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client CloudGuardClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -5934,7 +5934,7 @@ func (client CloudGuardClient) listWorkRequests(ctx context.Context, request com // RemoveCompartment Removes an existing compartment from a security zone. When you remove a subcompartment from a security zone, it no longer enforces security zone policies on the resources in the subcompartment. You can't remove the primary compartment that was used to create the security zone. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RemoveCompartment.go.html to see an example of how to use RemoveCompartment API. func (client CloudGuardClient) RemoveCompartment(ctx context.Context, request RemoveCompartmentRequest) (response RemoveCompartmentResponse, err error) { @@ -5996,7 +5996,7 @@ func (client CloudGuardClient) removeCompartment(ctx context.Context, request co // RequestRiskScores Examines the number of problems related to the resource and the relative severity of those problems. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestRiskScores.go.html to see an example of how to use RequestRiskScores API. func (client CloudGuardClient) RequestRiskScores(ctx context.Context, request RequestRiskScoresRequest) (response RequestRiskScoresResponse, err error) { @@ -6054,7 +6054,7 @@ func (client CloudGuardClient) requestRiskScores(ctx context.Context, request co // RequestSecurityScoreSummarizedTrend Measures the number of resources examined across all regions and compares it with the // number of problems detected, for a given time period. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSecurityScoreSummarizedTrend.go.html to see an example of how to use RequestSecurityScoreSummarizedTrend API. func (client CloudGuardClient) RequestSecurityScoreSummarizedTrend(ctx context.Context, request RequestSecurityScoreSummarizedTrendRequest) (response RequestSecurityScoreSummarizedTrendResponse, err error) { @@ -6111,7 +6111,7 @@ func (client CloudGuardClient) requestSecurityScoreSummarizedTrend(ctx context.C // RequestSecurityScores Measures the number of resources examined across all regions and compares it with the number of problems detected. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSecurityScores.go.html to see an example of how to use RequestSecurityScores API. func (client CloudGuardClient) RequestSecurityScores(ctx context.Context, request RequestSecurityScoresRequest) (response RequestSecurityScoresResponse, err error) { @@ -6179,7 +6179,7 @@ func (client CloudGuardClient) requestSecurityScores(ctx context.Context, reques // The compartmentId to be passed with `accessLevel` and `compartmentIdInSubtree` params has to be the root // compartment id (tenant-id) only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedActivityProblems.go.html to see an example of how to use RequestSummarizedActivityProblems API. func (client CloudGuardClient) RequestSummarizedActivityProblems(ctx context.Context, request RequestSummarizedActivityProblemsRequest) (response RequestSummarizedActivityProblemsResponse, err error) { @@ -6245,7 +6245,7 @@ func (client CloudGuardClient) requestSummarizedActivityProblems(ctx context.Con // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedProblems.go.html to see an example of how to use RequestSummarizedProblems API. func (client CloudGuardClient) RequestSummarizedProblems(ctx context.Context, request RequestSummarizedProblemsRequest) (response RequestSummarizedProblemsResponse, err error) { @@ -6311,7 +6311,7 @@ func (client CloudGuardClient) requestSummarizedProblems(ctx context.Context, re // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedResponderExecutions.go.html to see an example of how to use RequestSummarizedResponderExecutions API. func (client CloudGuardClient) RequestSummarizedResponderExecutions(ctx context.Context, request RequestSummarizedResponderExecutionsRequest) (response RequestSummarizedResponderExecutionsResponse, err error) { @@ -6368,7 +6368,7 @@ func (client CloudGuardClient) requestSummarizedResponderExecutions(ctx context. // RequestSummarizedRiskScores DEPRECATED // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedRiskScores.go.html to see an example of how to use RequestSummarizedRiskScores API. func (client CloudGuardClient) RequestSummarizedRiskScores(ctx context.Context, request RequestSummarizedRiskScoresRequest) (response RequestSummarizedRiskScoresResponse, err error) { @@ -6425,7 +6425,7 @@ func (client CloudGuardClient) requestSummarizedRiskScores(ctx context.Context, // RequestSummarizedSecurityScores DEPRECATED // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedSecurityScores.go.html to see an example of how to use RequestSummarizedSecurityScores API. func (client CloudGuardClient) RequestSummarizedSecurityScores(ctx context.Context, request RequestSummarizedSecurityScoresRequest) (response RequestSummarizedSecurityScoresResponse, err error) { @@ -6482,7 +6482,7 @@ func (client CloudGuardClient) requestSummarizedSecurityScores(ctx context.Conte // RequestSummarizedTopTrendResourceProfileRiskScores Summarizes the resource profile risk score top trends for the given time range based on the search filters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedTopTrendResourceProfileRiskScores.go.html to see an example of how to use RequestSummarizedTopTrendResourceProfileRiskScores API. func (client CloudGuardClient) RequestSummarizedTopTrendResourceProfileRiskScores(ctx context.Context, request RequestSummarizedTopTrendResourceProfileRiskScoresRequest) (response RequestSummarizedTopTrendResourceProfileRiskScoresResponse, err error) { @@ -6548,7 +6548,7 @@ func (client CloudGuardClient) requestSummarizedTopTrendResourceProfileRiskScore // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedTrendProblems.go.html to see an example of how to use RequestSummarizedTrendProblems API. func (client CloudGuardClient) RequestSummarizedTrendProblems(ctx context.Context, request RequestSummarizedTrendProblemsRequest) (response RequestSummarizedTrendProblemsResponse, err error) { @@ -6605,7 +6605,7 @@ func (client CloudGuardClient) requestSummarizedTrendProblems(ctx context.Contex // RequestSummarizedTrendResourceRiskScores Summarizes the resource risk score trend for the given time range based on the search filters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedTrendResourceRiskScores.go.html to see an example of how to use RequestSummarizedTrendResourceRiskScores API. func (client CloudGuardClient) RequestSummarizedTrendResourceRiskScores(ctx context.Context, request RequestSummarizedTrendResourceRiskScoresRequest) (response RequestSummarizedTrendResourceRiskScoresResponse, err error) { @@ -6671,7 +6671,7 @@ func (client CloudGuardClient) requestSummarizedTrendResourceRiskScores(ctx cont // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedTrendResponderExecutions.go.html to see an example of how to use RequestSummarizedTrendResponderExecutions API. func (client CloudGuardClient) RequestSummarizedTrendResponderExecutions(ctx context.Context, request RequestSummarizedTrendResponderExecutionsRequest) (response RequestSummarizedTrendResponderExecutionsResponse, err error) { @@ -6728,7 +6728,7 @@ func (client CloudGuardClient) requestSummarizedTrendResponderExecutions(ctx con // RequestSummarizedTrendSecurityScores DEPRECATED // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/RequestSummarizedTrendSecurityScores.go.html to see an example of how to use RequestSummarizedTrendSecurityScores API. func (client CloudGuardClient) RequestSummarizedTrendSecurityScores(ctx context.Context, request RequestSummarizedTrendSecurityScoresRequest) (response RequestSummarizedTrendSecurityScoresResponse, err error) { @@ -6786,7 +6786,7 @@ func (client CloudGuardClient) requestSummarizedTrendSecurityScores(ctx context. // SkipBulkResponderExecution Skips the execution for a bulk of responder executions // The operation is atomic in nature // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/SkipBulkResponderExecution.go.html to see an example of how to use SkipBulkResponderExecution API. func (client CloudGuardClient) SkipBulkResponderExecution(ctx context.Context, request SkipBulkResponderExecutionRequest) (response SkipBulkResponderExecutionResponse, err error) { @@ -6843,7 +6843,7 @@ func (client CloudGuardClient) skipBulkResponderExecution(ctx context.Context, r // SkipResponderExecution Skips the execution of the responder execution. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/SkipResponderExecution.go.html to see an example of how to use SkipResponderExecution API. func (client CloudGuardClient) SkipResponderExecution(ctx context.Context, request SkipResponderExecutionRequest) (response SkipResponderExecutionResponse, err error) { @@ -6905,7 +6905,7 @@ func (client CloudGuardClient) skipResponderExecution(ctx context.Context, reque // TriggerResponder push the problem to responder // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/TriggerResponder.go.html to see an example of how to use TriggerResponder API. func (client CloudGuardClient) TriggerResponder(ctx context.Context, request TriggerResponderRequest) (response TriggerResponderResponse, err error) { @@ -6968,7 +6968,7 @@ func (client CloudGuardClient) triggerResponder(ctx context.Context, request com // UpdateBulkProblemStatus Updates the statuses in bulk for a list of problems // The operation is atomic in nature // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateBulkProblemStatus.go.html to see an example of how to use UpdateBulkProblemStatus API. func (client CloudGuardClient) UpdateBulkProblemStatus(ctx context.Context, request UpdateBulkProblemStatusRequest) (response UpdateBulkProblemStatusResponse, err error) { @@ -7025,7 +7025,7 @@ func (client CloudGuardClient) updateBulkProblemStatus(ctx context.Context, requ // UpdateConfiguration Enable/Disable Cloud Guard. The reporting region cannot be updated once created. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateConfiguration.go.html to see an example of how to use UpdateConfiguration API. func (client CloudGuardClient) UpdateConfiguration(ctx context.Context, request UpdateConfigurationRequest) (response UpdateConfigurationResponse, err error) { @@ -7087,7 +7087,7 @@ func (client CloudGuardClient) updateConfiguration(ctx context.Context, request // UpdateDataMaskRule Updates a DataMaskRule identified by dataMaskRuleId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateDataMaskRule.go.html to see an example of how to use UpdateDataMaskRule API. func (client CloudGuardClient) UpdateDataMaskRule(ctx context.Context, request UpdateDataMaskRuleRequest) (response UpdateDataMaskRuleResponse, err error) { @@ -7144,7 +7144,7 @@ func (client CloudGuardClient) updateDataMaskRule(ctx context.Context, request c // UpdateDataSource Updates a data source identified by dataSourceId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateDataSource.go.html to see an example of how to use UpdateDataSource API. func (client CloudGuardClient) UpdateDataSource(ctx context.Context, request UpdateDataSourceRequest) (response UpdateDataSourceResponse, err error) { @@ -7206,7 +7206,7 @@ func (client CloudGuardClient) updateDataSource(ctx context.Context, request com // UpdateDetectorRecipe Updates a detector recipe identified by detectorRecipeId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateDetectorRecipe.go.html to see an example of how to use UpdateDetectorRecipe API. func (client CloudGuardClient) UpdateDetectorRecipe(ctx context.Context, request UpdateDetectorRecipeRequest) (response UpdateDetectorRecipeResponse, err error) { @@ -7268,7 +7268,7 @@ func (client CloudGuardClient) updateDetectorRecipe(ctx context.Context, request // UpdateDetectorRecipeDetectorRule Update the DetectorRule by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateDetectorRecipeDetectorRule.go.html to see an example of how to use UpdateDetectorRecipeDetectorRule API. func (client CloudGuardClient) UpdateDetectorRecipeDetectorRule(ctx context.Context, request UpdateDetectorRecipeDetectorRuleRequest) (response UpdateDetectorRecipeDetectorRuleResponse, err error) { @@ -7325,7 +7325,7 @@ func (client CloudGuardClient) updateDetectorRecipeDetectorRule(ctx context.Cont // UpdateManagedList Updates a managed list identified by managedListId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateManagedList.go.html to see an example of how to use UpdateManagedList API. func (client CloudGuardClient) UpdateManagedList(ctx context.Context, request UpdateManagedListRequest) (response UpdateManagedListResponse, err error) { @@ -7387,7 +7387,7 @@ func (client CloudGuardClient) updateManagedList(ctx context.Context, request co // UpdateProblemStatus updates the problem details // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateProblemStatus.go.html to see an example of how to use UpdateProblemStatus API. func (client CloudGuardClient) UpdateProblemStatus(ctx context.Context, request UpdateProblemStatusRequest) (response UpdateProblemStatusResponse, err error) { @@ -7449,7 +7449,7 @@ func (client CloudGuardClient) updateProblemStatus(ctx context.Context, request // UpdateResponderRecipe Update the ResponderRecipe resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateResponderRecipe.go.html to see an example of how to use UpdateResponderRecipe API. func (client CloudGuardClient) UpdateResponderRecipe(ctx context.Context, request UpdateResponderRecipeRequest) (response UpdateResponderRecipeResponse, err error) { @@ -7506,7 +7506,7 @@ func (client CloudGuardClient) updateResponderRecipe(ctx context.Context, reques // UpdateResponderRecipeResponderRule Update the ResponderRule by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateResponderRecipeResponderRule.go.html to see an example of how to use UpdateResponderRecipeResponderRule API. func (client CloudGuardClient) UpdateResponderRecipeResponderRule(ctx context.Context, request UpdateResponderRecipeResponderRuleRequest) (response UpdateResponderRecipeResponderRuleResponse, err error) { @@ -7563,7 +7563,7 @@ func (client CloudGuardClient) updateResponderRecipeResponderRule(ctx context.Co // UpdateSecurityRecipe Updates a security zone recipe. A security zone recipe is a collection of security zone policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateSecurityRecipe.go.html to see an example of how to use UpdateSecurityRecipe API. func (client CloudGuardClient) UpdateSecurityRecipe(ctx context.Context, request UpdateSecurityRecipeRequest) (response UpdateSecurityRecipeResponse, err error) { @@ -7620,7 +7620,7 @@ func (client CloudGuardClient) updateSecurityRecipe(ctx context.Context, request // UpdateSecurityZone Updates the security zone identified by its id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateSecurityZone.go.html to see an example of how to use UpdateSecurityZone API. func (client CloudGuardClient) UpdateSecurityZone(ctx context.Context, request UpdateSecurityZoneRequest) (response UpdateSecurityZoneResponse, err error) { @@ -7677,7 +7677,7 @@ func (client CloudGuardClient) updateSecurityZone(ctx context.Context, request c // UpdateTarget Updates a Target identified by targetId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateTarget.go.html to see an example of how to use UpdateTarget API. func (client CloudGuardClient) UpdateTarget(ctx context.Context, request UpdateTargetRequest) (response UpdateTargetResponse, err error) { @@ -7734,7 +7734,7 @@ func (client CloudGuardClient) updateTarget(ctx context.Context, request common. // UpdateTargetDetectorRecipe Update the TargetDetectorRecipe resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateTargetDetectorRecipe.go.html to see an example of how to use UpdateTargetDetectorRecipe API. func (client CloudGuardClient) UpdateTargetDetectorRecipe(ctx context.Context, request UpdateTargetDetectorRecipeRequest) (response UpdateTargetDetectorRecipeResponse, err error) { @@ -7791,7 +7791,7 @@ func (client CloudGuardClient) updateTargetDetectorRecipe(ctx context.Context, r // UpdateTargetDetectorRecipeDetectorRule Update the DetectorRule by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateTargetDetectorRecipeDetectorRule.go.html to see an example of how to use UpdateTargetDetectorRecipeDetectorRule API. func (client CloudGuardClient) UpdateTargetDetectorRecipeDetectorRule(ctx context.Context, request UpdateTargetDetectorRecipeDetectorRuleRequest) (response UpdateTargetDetectorRecipeDetectorRuleResponse, err error) { @@ -7848,7 +7848,7 @@ func (client CloudGuardClient) updateTargetDetectorRecipeDetectorRule(ctx contex // UpdateTargetResponderRecipe Update the TargetResponderRecipe resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateTargetResponderRecipe.go.html to see an example of how to use UpdateTargetResponderRecipe API. func (client CloudGuardClient) UpdateTargetResponderRecipe(ctx context.Context, request UpdateTargetResponderRecipeRequest) (response UpdateTargetResponderRecipeResponse, err error) { @@ -7905,7 +7905,7 @@ func (client CloudGuardClient) updateTargetResponderRecipe(ctx context.Context, // UpdateTargetResponderRecipeResponderRule Update the ResponderRule by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudguard/UpdateTargetResponderRecipeResponderRule.go.html to see an example of how to use UpdateTargetResponderRecipeResponderRule API. func (client CloudGuardClient) UpdateTargetResponderRecipeResponderRule(ctx context.Context, request UpdateTargetResponderRecipeResponderRuleRequest) (response UpdateTargetResponderRecipeResponderRuleResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/as_is_resource_assessment_strategy.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/as_is_resource_assessment_strategy.go index b41e27d1773..8511f637f0e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/as_is_resource_assessment_strategy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/as_is_resource_assessment_strategy.go @@ -26,7 +26,7 @@ type AsIsResourceAssessmentStrategy struct { ResourceType ResourceAssessmentStrategyResourceTypeEnum `mandatory:"true" json:"resourceType"` } -//GetResourceType returns ResourceType +// GetResourceType returns ResourceType func (m AsIsResourceAssessmentStrategy) GetResourceType() ResourceAssessmentStrategyResourceTypeEnum { return m.ResourceType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/average_resource_assessment_strategy.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/average_resource_assessment_strategy.go index d4d0a6817cb..e728ae5856a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/average_resource_assessment_strategy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/average_resource_assessment_strategy.go @@ -32,7 +32,7 @@ type AverageResourceAssessmentStrategy struct { MetricTimeWindow MetricTimeWindowEnum `mandatory:"false" json:"metricTimeWindow,omitempty"` } -//GetResourceType returns ResourceType +// GetResourceType returns ResourceType func (m AverageResourceAssessmentStrategy) GetResourceType() ResourceAssessmentStrategyResourceTypeEnum { return m.ResourceType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/cloudmigrations_migration_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/cloudmigrations_migration_client.go index f36972741fa..1ea0bbabcc5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/cloudmigrations_migration_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/cloudmigrations_migration_client.go @@ -93,7 +93,7 @@ func (client *MigrationClient) ConfigurationProvider() *common.ConfigurationProv // CancelWorkRequest Cancels work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -151,7 +151,7 @@ func (client MigrationClient) cancelWorkRequest(ctx context.Context, request com // ChangeMigrationCompartment Moves a migration resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ChangeMigrationCompartment.go.html to see an example of how to use ChangeMigrationCompartment API. // A default retry strategy applies to this operation ChangeMigrationCompartment() @@ -214,7 +214,7 @@ func (client MigrationClient) changeMigrationCompartment(ctx context.Context, re // ChangeMigrationPlanCompartment Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ChangeMigrationPlanCompartment.go.html to see an example of how to use ChangeMigrationPlanCompartment API. // A default retry strategy applies to this operation ChangeMigrationPlanCompartment() @@ -277,7 +277,7 @@ func (client MigrationClient) changeMigrationPlanCompartment(ctx context.Context // ChangeReplicationScheduleCompartment Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ChangeReplicationScheduleCompartment.go.html to see an example of how to use ChangeReplicationScheduleCompartment API. // A default retry strategy applies to this operation ChangeReplicationScheduleCompartment() @@ -340,7 +340,7 @@ func (client MigrationClient) changeReplicationScheduleCompartment(ctx context.C // CreateMigration Creates a migration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/CreateMigration.go.html to see an example of how to use CreateMigration API. // A default retry strategy applies to this operation CreateMigration() @@ -403,7 +403,7 @@ func (client MigrationClient) createMigration(ctx context.Context, request commo // CreateMigrationAsset Creates a migration asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/CreateMigrationAsset.go.html to see an example of how to use CreateMigrationAsset API. // A default retry strategy applies to this operation CreateMigrationAsset() @@ -466,7 +466,7 @@ func (client MigrationClient) createMigrationAsset(ctx context.Context, request // CreateMigrationPlan Creates a migration plan. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/CreateMigrationPlan.go.html to see an example of how to use CreateMigrationPlan API. // A default retry strategy applies to this operation CreateMigrationPlan() @@ -529,7 +529,7 @@ func (client MigrationClient) createMigrationPlan(ctx context.Context, request c // CreateReplicationSchedule Creates a replication schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/CreateReplicationSchedule.go.html to see an example of how to use CreateReplicationSchedule API. // A default retry strategy applies to this operation CreateReplicationSchedule() @@ -592,7 +592,7 @@ func (client MigrationClient) createReplicationSchedule(ctx context.Context, req // CreateTargetAsset Creates a target asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/CreateTargetAsset.go.html to see an example of how to use CreateTargetAsset API. // A default retry strategy applies to this operation CreateTargetAsset() @@ -655,7 +655,7 @@ func (client MigrationClient) createTargetAsset(ctx context.Context, request com // DeleteMigration Deletes a migration resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/DeleteMigration.go.html to see an example of how to use DeleteMigration API. // A default retry strategy applies to this operation DeleteMigration() @@ -713,7 +713,7 @@ func (client MigrationClient) deleteMigration(ctx context.Context, request commo // DeleteMigrationAsset Deletes a migration asset resource by an identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/DeleteMigrationAsset.go.html to see an example of how to use DeleteMigrationAsset API. // A default retry strategy applies to this operation DeleteMigrationAsset() @@ -771,7 +771,7 @@ func (client MigrationClient) deleteMigrationAsset(ctx context.Context, request // DeleteMigrationPlan Deletes a migration plan resource by an identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/DeleteMigrationPlan.go.html to see an example of how to use DeleteMigrationPlan API. // A default retry strategy applies to this operation DeleteMigrationPlan() @@ -829,7 +829,7 @@ func (client MigrationClient) deleteMigrationPlan(ctx context.Context, request c // DeleteReplicationSchedule Deletes a replication schedule resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/DeleteReplicationSchedule.go.html to see an example of how to use DeleteReplicationSchedule API. // A default retry strategy applies to this operation DeleteReplicationSchedule() @@ -887,7 +887,7 @@ func (client MigrationClient) deleteReplicationSchedule(ctx context.Context, req // DeleteTargetAsset Deletes a target asset resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/DeleteTargetAsset.go.html to see an example of how to use DeleteTargetAsset API. // A default retry strategy applies to this operation DeleteTargetAsset() @@ -945,7 +945,7 @@ func (client MigrationClient) deleteTargetAsset(ctx context.Context, request com // ExecuteMigrationPlan Executes the migration plan with the migration plan ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ExecuteMigrationPlan.go.html to see an example of how to use ExecuteMigrationPlan API. // A default retry strategy applies to this operation ExecuteMigrationPlan() @@ -1008,7 +1008,7 @@ func (client MigrationClient) executeMigrationPlan(ctx context.Context, request // ExportMigrationPlan Exports the migration plan to a csv file. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ExportMigrationPlan.go.html to see an example of how to use ExportMigrationPlan API. // A default retry strategy applies to this operation ExportMigrationPlan() @@ -1065,7 +1065,7 @@ func (client MigrationClient) exportMigrationPlan(ctx context.Context, request c // GetMigration Gets a migration by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/GetMigration.go.html to see an example of how to use GetMigration API. // A default retry strategy applies to this operation GetMigration() @@ -1123,7 +1123,7 @@ func (client MigrationClient) getMigration(ctx context.Context, request common.O // GetMigrationAsset Gets a migration asset by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/GetMigrationAsset.go.html to see an example of how to use GetMigrationAsset API. // A default retry strategy applies to this operation GetMigrationAsset() @@ -1181,7 +1181,7 @@ func (client MigrationClient) getMigrationAsset(ctx context.Context, request com // GetMigrationPlan Gets a migration plan by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/GetMigrationPlan.go.html to see an example of how to use GetMigrationPlan API. // A default retry strategy applies to this operation GetMigrationPlan() @@ -1239,7 +1239,7 @@ func (client MigrationClient) getMigrationPlan(ctx context.Context, request comm // GetReplicationProgress Gets the progress percentage of a migration asset's replication process. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/GetReplicationProgress.go.html to see an example of how to use GetReplicationProgress API. // A default retry strategy applies to this operation GetReplicationProgress() @@ -1297,7 +1297,7 @@ func (client MigrationClient) getReplicationProgress(ctx context.Context, reques // GetReplicationSchedule Gets a replication schedule by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/GetReplicationSchedule.go.html to see an example of how to use GetReplicationSchedule API. // A default retry strategy applies to this operation GetReplicationSchedule() @@ -1355,7 +1355,7 @@ func (client MigrationClient) getReplicationSchedule(ctx context.Context, reques // GetTargetAsset Gets a target asset by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/GetTargetAsset.go.html to see an example of how to use GetTargetAsset API. // A default retry strategy applies to this operation GetTargetAsset() @@ -1413,7 +1413,7 @@ func (client MigrationClient) getTargetAsset(ctx context.Context, request common // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1471,7 +1471,7 @@ func (client MigrationClient) getWorkRequest(ctx context.Context, request common // ImportMigrationPlan Imports a migration plan from a csv file. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ImportMigrationPlan.go.html to see an example of how to use ImportMigrationPlan API. // A default retry strategy applies to this operation ImportMigrationPlan() @@ -1534,7 +1534,7 @@ func (client MigrationClient) importMigrationPlan(ctx context.Context, request c // ListAvailableShapes List of shapes by parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ListAvailableShapes.go.html to see an example of how to use ListAvailableShapes API. // A default retry strategy applies to this operation ListAvailableShapes() @@ -1592,7 +1592,7 @@ func (client MigrationClient) listAvailableShapes(ctx context.Context, request c // ListMigrationAssets Returns a list of migration assets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ListMigrationAssets.go.html to see an example of how to use ListMigrationAssets API. // A default retry strategy applies to this operation ListMigrationAssets() @@ -1650,7 +1650,7 @@ func (client MigrationClient) listMigrationAssets(ctx context.Context, request c // ListMigrationPlans Returns a list of migration plans. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ListMigrationPlans.go.html to see an example of how to use ListMigrationPlans API. // A default retry strategy applies to this operation ListMigrationPlans() @@ -1708,7 +1708,7 @@ func (client MigrationClient) listMigrationPlans(ctx context.Context, request co // ListMigrations Returns a list of migrations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ListMigrations.go.html to see an example of how to use ListMigrations API. // A default retry strategy applies to this operation ListMigrations() @@ -1766,7 +1766,7 @@ func (client MigrationClient) listMigrations(ctx context.Context, request common // ListReplicationSchedules Returns a list of replication schedules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ListReplicationSchedules.go.html to see an example of how to use ListReplicationSchedules API. // A default retry strategy applies to this operation ListReplicationSchedules() @@ -1824,7 +1824,7 @@ func (client MigrationClient) listReplicationSchedules(ctx context.Context, requ // ListTargetAssets Returns a list of target assets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ListTargetAssets.go.html to see an example of how to use ListTargetAssets API. // A default retry strategy applies to this operation ListTargetAssets() @@ -1882,7 +1882,7 @@ func (client MigrationClient) listTargetAssets(ctx context.Context, request comm // ListWorkRequestErrors Returns a paginated list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1940,7 +1940,7 @@ func (client MigrationClient) listWorkRequestErrors(ctx context.Context, request // ListWorkRequestLogs Returns a paginated list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1998,7 +1998,7 @@ func (client MigrationClient) listWorkRequestLogs(ctx context.Context, request c // ListWorkRequests List of work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2056,7 +2056,7 @@ func (client MigrationClient) listWorkRequests(ctx context.Context, request comm // RefreshMigration Refreshes migration based on the migration ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/RefreshMigration.go.html to see an example of how to use RefreshMigration API. // A default retry strategy applies to this operation RefreshMigration() @@ -2119,7 +2119,7 @@ func (client MigrationClient) refreshMigration(ctx context.Context, request comm // RefreshMigrationAsset Refreshes the migration asset with the migration asset ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/RefreshMigrationAsset.go.html to see an example of how to use RefreshMigrationAsset API. // A default retry strategy applies to this operation RefreshMigrationAsset() @@ -2182,7 +2182,7 @@ func (client MigrationClient) refreshMigrationAsset(ctx context.Context, request // RefreshMigrationPlan Refreshes the migration plan with the migration plan ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/RefreshMigrationPlan.go.html to see an example of how to use RefreshMigrationPlan API. // A default retry strategy applies to this operation RefreshMigrationPlan() @@ -2245,7 +2245,7 @@ func (client MigrationClient) refreshMigrationPlan(ctx context.Context, request // StartAssetReplication Starts replication for the asset with the migration asset ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/StartAssetReplication.go.html to see an example of how to use StartAssetReplication API. // A default retry strategy applies to this operation StartAssetReplication() @@ -2308,7 +2308,7 @@ func (client MigrationClient) startAssetReplication(ctx context.Context, request // StartMigrationReplication Starts replication for a migration or for some asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/StartMigrationReplication.go.html to see an example of how to use StartMigrationReplication API. // A default retry strategy applies to this operation StartMigrationReplication() @@ -2371,7 +2371,7 @@ func (client MigrationClient) startMigrationReplication(ctx context.Context, req // UpdateMigration Updates the migration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/UpdateMigration.go.html to see an example of how to use UpdateMigration API. // A default retry strategy applies to this operation UpdateMigration() @@ -2429,7 +2429,7 @@ func (client MigrationClient) updateMigration(ctx context.Context, request commo // UpdateMigrationAsset Updates the migration asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/UpdateMigrationAsset.go.html to see an example of how to use UpdateMigrationAsset API. // A default retry strategy applies to this operation UpdateMigrationAsset() @@ -2487,7 +2487,7 @@ func (client MigrationClient) updateMigrationAsset(ctx context.Context, request // UpdateMigrationPlan Updates the migration plan. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/UpdateMigrationPlan.go.html to see an example of how to use UpdateMigrationPlan API. // A default retry strategy applies to this operation UpdateMigrationPlan() @@ -2550,7 +2550,7 @@ func (client MigrationClient) updateMigrationPlan(ctx context.Context, request c // UpdateReplicationSchedule Updates the replication schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/UpdateReplicationSchedule.go.html to see an example of how to use UpdateReplicationSchedule API. // A default retry strategy applies to this operation UpdateReplicationSchedule() @@ -2613,7 +2613,7 @@ func (client MigrationClient) updateReplicationSchedule(ctx context.Context, req // UpdateTargetAsset Updates the target asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/cloudmigrations/UpdateTargetAsset.go.html to see an example of how to use UpdateTargetAsset API. // A default retry strategy applies to this operation UpdateTargetAsset() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/create_vm_target_asset_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/create_vm_target_asset_details.go index fb365a0123b..b0cad9a45fc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/create_vm_target_asset_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/create_vm_target_asset_details.go @@ -37,12 +37,12 @@ type CreateVmTargetAssetDetails struct { PreferredShapeType VmTargetAssetPreferredShapeTypeEnum `mandatory:"true" json:"preferredShapeType"` } -//GetMigrationPlanId returns MigrationPlanId +// GetMigrationPlanId returns MigrationPlanId func (m CreateVmTargetAssetDetails) GetMigrationPlanId() *string { return m.MigrationPlanId } -//GetIsExcludedFromExecution returns IsExcludedFromExecution +// GetIsExcludedFromExecution returns IsExcludedFromExecution func (m CreateVmTargetAssetDetails) GetIsExcludedFromExecution() *bool { return m.IsExcludedFromExecution } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/create_vm_ware_asset_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/create_vm_ware_asset_source_details.go index 47a192a01c8..ee6d21c8612 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/create_vm_ware_asset_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/create_vm_ware_asset_source_details.go @@ -65,47 +65,47 @@ type CreateVmWareAssetSourceDetails struct { AreRealtimeMetricsCollected *bool `mandatory:"false" json:"areRealtimeMetricsCollected"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateVmWareAssetSourceDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateVmWareAssetSourceDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetEnvironmentId returns EnvironmentId +// GetEnvironmentId returns EnvironmentId func (m CreateVmWareAssetSourceDetails) GetEnvironmentId() *string { return m.EnvironmentId } -//GetInventoryId returns InventoryId +// GetInventoryId returns InventoryId func (m CreateVmWareAssetSourceDetails) GetInventoryId() *string { return m.InventoryId } -//GetAssetsCompartmentId returns AssetsCompartmentId +// GetAssetsCompartmentId returns AssetsCompartmentId func (m CreateVmWareAssetSourceDetails) GetAssetsCompartmentId() *string { return m.AssetsCompartmentId } -//GetDiscoveryScheduleId returns DiscoveryScheduleId +// GetDiscoveryScheduleId returns DiscoveryScheduleId func (m CreateVmWareAssetSourceDetails) GetDiscoveryScheduleId() *string { return m.DiscoveryScheduleId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateVmWareAssetSourceDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateVmWareAssetSourceDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m CreateVmWareAssetSourceDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/peak_resource_assessment_strategy.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/peak_resource_assessment_strategy.go index 52ad94a7da8..333724ed9e3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/peak_resource_assessment_strategy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/peak_resource_assessment_strategy.go @@ -32,7 +32,7 @@ type PeakResourceAssessmentStrategy struct { MetricTimeWindow MetricTimeWindowEnum `mandatory:"false" json:"metricTimeWindow,omitempty"` } -//GetResourceType returns ResourceType +// GetResourceType returns ResourceType func (m PeakResourceAssessmentStrategy) GetResourceType() ResourceAssessmentStrategyResourceTypeEnum { return m.ResourceType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/percentile_resource_assessment_strategy.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/percentile_resource_assessment_strategy.go index e8fb043f1a1..06ae49bf018 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/percentile_resource_assessment_strategy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/percentile_resource_assessment_strategy.go @@ -32,7 +32,7 @@ type PercentileResourceAssessmentStrategy struct { MetricTimeWindow MetricTimeWindowEnum `mandatory:"false" json:"metricTimeWindow,omitempty"` } -//GetResourceType returns ResourceType +// GetResourceType returns ResourceType func (m PercentileResourceAssessmentStrategy) GetResourceType() ResourceAssessmentStrategyResourceTypeEnum { return m.ResourceType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/update_vm_target_asset_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/update_vm_target_asset_details.go index 6488905462d..ab3c7c51173 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/update_vm_target_asset_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/update_vm_target_asset_details.go @@ -34,7 +34,7 @@ type UpdateVmTargetAssetDetails struct { PreferredShapeType VmTargetAssetPreferredShapeTypeEnum `mandatory:"false" json:"preferredShapeType,omitempty"` } -//GetIsExcludedFromExecution returns IsExcludedFromExecution +// GetIsExcludedFromExecution returns IsExcludedFromExecution func (m UpdateVmTargetAssetDetails) GetIsExcludedFromExecution() *bool { return m.IsExcludedFromExecution } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/update_vm_ware_asset_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/update_vm_ware_asset_source_details.go index 85d8ccd3910..fb999ab8b88 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/update_vm_ware_asset_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/update_vm_ware_asset_source_details.go @@ -55,27 +55,27 @@ type UpdateVmWareAssetSourceDetails struct { DiscoveryScheduleId *string `mandatory:"false" json:"discoveryScheduleId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateVmWareAssetSourceDetails) GetDisplayName() *string { return m.DisplayName } -//GetAssetsCompartmentId returns AssetsCompartmentId +// GetAssetsCompartmentId returns AssetsCompartmentId func (m UpdateVmWareAssetSourceDetails) GetAssetsCompartmentId() *string { return m.AssetsCompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateVmWareAssetSourceDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateVmWareAssetSourceDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m UpdateVmWareAssetSourceDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_asset.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_asset.go index 6c0dafcad26..fa7c32cbbaa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_asset.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_asset.go @@ -75,72 +75,72 @@ type VmTargetAsset struct { LifecycleState TargetAssetLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m VmTargetAsset) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VmTargetAsset) GetDisplayName() *string { return m.DisplayName } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VmTargetAsset) GetLifecycleState() TargetAssetLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VmTargetAsset) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetMigrationPlanId returns MigrationPlanId +// GetMigrationPlanId returns MigrationPlanId func (m VmTargetAsset) GetMigrationPlanId() *string { return m.MigrationPlanId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VmTargetAsset) GetCompartmentId() *string { return m.CompartmentId } -//GetCreatedResourceId returns CreatedResourceId +// GetCreatedResourceId returns CreatedResourceId func (m VmTargetAsset) GetCreatedResourceId() *string { return m.CreatedResourceId } -//GetIsExcludedFromExecution returns IsExcludedFromExecution +// GetIsExcludedFromExecution returns IsExcludedFromExecution func (m VmTargetAsset) GetIsExcludedFromExecution() *bool { return m.IsExcludedFromExecution } -//GetCompatibilityMessages returns CompatibilityMessages +// GetCompatibilityMessages returns CompatibilityMessages func (m VmTargetAsset) GetCompatibilityMessages() []CompatibilityMessage { return m.CompatibilityMessages } -//GetEstimatedCost returns EstimatedCost +// GetEstimatedCost returns EstimatedCost func (m VmTargetAsset) GetEstimatedCost() *CostEstimation { return m.EstimatedCost } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VmTargetAsset) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VmTargetAsset) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetTimeAssessed returns TimeAssessed +// GetTimeAssessed returns TimeAssessed func (m VmTargetAsset) GetTimeAssessed() *common.SDKTime { return m.TimeAssessed } -//GetMigrationAsset returns MigrationAsset +// GetMigrationAsset returns MigrationAsset func (m VmTargetAsset) GetMigrationAsset() *MigrationAsset { return m.MigrationAsset } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_asset_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_asset_summary.go index cac8a1a42a5..ff68bcfc3ed 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_asset_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_asset_summary.go @@ -73,72 +73,72 @@ type VmTargetAssetSummary struct { PreferredShapeType VmTargetAssetPreferredShapeTypeEnum `mandatory:"true" json:"preferredShapeType"` } -//GetId returns Id +// GetId returns Id func (m VmTargetAssetSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VmTargetAssetSummary) GetDisplayName() *string { return m.DisplayName } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VmTargetAssetSummary) GetLifecycleState() TargetAssetLifecycleStateEnum { return m.LifecycleState } -//GetMigrationPlanId returns MigrationPlanId +// GetMigrationPlanId returns MigrationPlanId func (m VmTargetAssetSummary) GetMigrationPlanId() *string { return m.MigrationPlanId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VmTargetAssetSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetCreatedResourceId returns CreatedResourceId +// GetCreatedResourceId returns CreatedResourceId func (m VmTargetAssetSummary) GetCreatedResourceId() *string { return m.CreatedResourceId } -//GetIsExcludedFromExecution returns IsExcludedFromExecution +// GetIsExcludedFromExecution returns IsExcludedFromExecution func (m VmTargetAssetSummary) GetIsExcludedFromExecution() *bool { return m.IsExcludedFromExecution } -//GetCompatibilityMessages returns CompatibilityMessages +// GetCompatibilityMessages returns CompatibilityMessages func (m VmTargetAssetSummary) GetCompatibilityMessages() []CompatibilityMessage { return m.CompatibilityMessages } -//GetEstimatedCost returns EstimatedCost +// GetEstimatedCost returns EstimatedCost func (m VmTargetAssetSummary) GetEstimatedCost() *CostEstimation { return m.EstimatedCost } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VmTargetAssetSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VmTargetAssetSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VmTargetAssetSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetTimeAssessed returns TimeAssessed +// GetTimeAssessed returns TimeAssessed func (m VmTargetAssetSummary) GetTimeAssessed() *common.SDKTime { return m.TimeAssessed } -//GetMigrationAsset returns MigrationAsset +// GetMigrationAsset returns MigrationAsset func (m VmTargetAssetSummary) GetMigrationAsset() *MigrationAssetSummary { return m.MigrationAsset } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_environment.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_environment.go index 43eae0fd67c..94578af5d8c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_environment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_target_environment.go @@ -44,7 +44,7 @@ type VmTargetEnvironment struct { PreferredShapeType VmTargetAssetPreferredShapeTypeEnum `mandatory:"false" json:"preferredShapeType,omitempty"` } -//GetTargetCompartmentId returns TargetCompartmentId +// GetTargetCompartmentId returns TargetCompartmentId func (m VmTargetEnvironment) GetTargetCompartmentId() *string { return m.TargetCompartmentId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_ware_asset_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_ware_asset_source.go index 2bcb9451b45..6b7e7b3c9d1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_ware_asset_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_ware_asset_source.go @@ -79,72 +79,72 @@ type VmWareAssetSource struct { LifecycleState AssetSourceLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m VmWareAssetSource) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VmWareAssetSource) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VmWareAssetSource) GetDisplayName() *string { return m.DisplayName } -//GetEnvironmentId returns EnvironmentId +// GetEnvironmentId returns EnvironmentId func (m VmWareAssetSource) GetEnvironmentId() *string { return m.EnvironmentId } -//GetInventoryId returns InventoryId +// GetInventoryId returns InventoryId func (m VmWareAssetSource) GetInventoryId() *string { return m.InventoryId } -//GetAssetsCompartmentId returns AssetsCompartmentId +// GetAssetsCompartmentId returns AssetsCompartmentId func (m VmWareAssetSource) GetAssetsCompartmentId() *string { return m.AssetsCompartmentId } -//GetDiscoveryScheduleId returns DiscoveryScheduleId +// GetDiscoveryScheduleId returns DiscoveryScheduleId func (m VmWareAssetSource) GetDiscoveryScheduleId() *string { return m.DiscoveryScheduleId } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VmWareAssetSource) GetLifecycleState() AssetSourceLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VmWareAssetSource) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VmWareAssetSource) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VmWareAssetSource) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VmWareAssetSource) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VmWareAssetSource) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VmWareAssetSource) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_ware_asset_source_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_ware_asset_source_summary.go index 2c262409d09..0c78dc29aab 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_ware_asset_source_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/cloudmigrations/vm_ware_asset_source_summary.go @@ -66,67 +66,67 @@ type VmWareAssetSourceSummary struct { LifecycleState AssetSourceLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m VmWareAssetSourceSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VmWareAssetSourceSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetEnvironmentId returns EnvironmentId +// GetEnvironmentId returns EnvironmentId func (m VmWareAssetSourceSummary) GetEnvironmentId() *string { return m.EnvironmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VmWareAssetSourceSummary) GetDisplayName() *string { return m.DisplayName } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VmWareAssetSourceSummary) GetLifecycleState() AssetSourceLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VmWareAssetSourceSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetInventoryId returns InventoryId +// GetInventoryId returns InventoryId func (m VmWareAssetSourceSummary) GetInventoryId() *string { return m.InventoryId } -//GetAssetsCompartmentId returns AssetsCompartmentId +// GetAssetsCompartmentId returns AssetsCompartmentId func (m VmWareAssetSourceSummary) GetAssetsCompartmentId() *string { return m.AssetsCompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VmWareAssetSourceSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VmWareAssetSourceSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VmWareAssetSourceSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VmWareAssetSourceSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VmWareAssetSourceSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/common/version.go b/vendor/github.com/oracle/oci-go-sdk/v65/common/version.go index 78fa1fec4cb..bb214bada96 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/common/version.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/common/version.go @@ -13,7 +13,7 @@ import ( const ( major = "65" minor = "49" - patch = "1" + patch = "2" tag = "" ) diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_client.go index 9a7fda5b1f3..48e6af15529 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_client.go @@ -97,7 +97,7 @@ func (client *ComputeInstanceAgentClient) ConfigurationProvider() *common.Config // Canceling a command is a best-effort attempt. If the command has already // completed, it will not be canceled. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/computeinstanceagent/CancelInstanceAgentCommand.go.html to see an example of how to use CancelInstanceAgentCommand API. func (client ComputeInstanceAgentClient) CancelInstanceAgentCommand(ctx context.Context, request CancelInstanceAgentCommandRequest) (response CancelInstanceAgentCommandResponse, err error) { @@ -158,7 +158,7 @@ func (client ComputeInstanceAgentClient) cancelInstanceAgentCommand(ctx context. // Commands that require administrator privileges will run only if Oracle Cloud Agent // is running with administrator privileges. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/computeinstanceagent/CreateInstanceAgentCommand.go.html to see an example of how to use CreateInstanceAgentCommand API. func (client ComputeInstanceAgentClient) CreateInstanceAgentCommand(ctx context.Context, request CreateInstanceAgentCommandRequest) (response CreateInstanceAgentCommandResponse, err error) { @@ -220,7 +220,7 @@ func (client ComputeInstanceAgentClient) createInstanceAgentCommand(ctx context. // GetInstanceAgentCommand Gets information about an Oracle Cloud Agent command. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/computeinstanceagent/GetInstanceAgentCommand.go.html to see an example of how to use GetInstanceAgentCommand API. func (client ComputeInstanceAgentClient) GetInstanceAgentCommand(ctx context.Context, request GetInstanceAgentCommandRequest) (response GetInstanceAgentCommandResponse, err error) { @@ -277,7 +277,7 @@ func (client ComputeInstanceAgentClient) getInstanceAgentCommand(ctx context.Con // GetInstanceAgentCommandExecution Gets information about the status of specified instance agent commandId for the given instanceId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/computeinstanceagent/GetInstanceAgentCommandExecution.go.html to see an example of how to use GetInstanceAgentCommandExecution API. func (client ComputeInstanceAgentClient) GetInstanceAgentCommandExecution(ctx context.Context, request GetInstanceAgentCommandExecutionRequest) (response GetInstanceAgentCommandExecutionResponse, err error) { @@ -335,7 +335,7 @@ func (client ComputeInstanceAgentClient) getInstanceAgentCommandExecution(ctx co // ListInstanceAgentCommandExecutions Lists the execution details for Oracle Cloud Agent commands that run on the specified compute // instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/computeinstanceagent/ListInstanceAgentCommandExecutions.go.html to see an example of how to use ListInstanceAgentCommandExecutions API. func (client ComputeInstanceAgentClient) ListInstanceAgentCommandExecutions(ctx context.Context, request ListInstanceAgentCommandExecutionsRequest) (response ListInstanceAgentCommandExecutionsResponse, err error) { @@ -392,7 +392,7 @@ func (client ComputeInstanceAgentClient) listInstanceAgentCommandExecutions(ctx // ListInstanceAgentCommands Lists the Oracle Cloud Agent commands issued in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/computeinstanceagent/ListInstanceAgentCommands.go.html to see an example of how to use ListInstanceAgentCommands API. func (client ComputeInstanceAgentClient) ListInstanceAgentCommands(ctx context.Context, request ListInstanceAgentCommandsRequest) (response ListInstanceAgentCommandsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_plugin_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_plugin_client.go index 080651b43e5..20b961779e8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_plugin_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_plugin_client.go @@ -94,7 +94,7 @@ func (client *PluginClient) ConfigurationProvider() *common.ConfigurationProvide // GetInstanceAgentPlugin The API to get information for a plugin. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/computeinstanceagent/GetInstanceAgentPlugin.go.html to see an example of how to use GetInstanceAgentPlugin API. func (client PluginClient) GetInstanceAgentPlugin(ctx context.Context, request GetInstanceAgentPluginRequest) (response GetInstanceAgentPluginResponse, err error) { @@ -151,7 +151,7 @@ func (client PluginClient) getInstanceAgentPlugin(ctx context.Context, request c // ListInstanceAgentPlugins The API to get one or more plugin information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/computeinstanceagent/ListInstanceAgentPlugins.go.html to see an example of how to use ListInstanceAgentPlugins API. func (client PluginClient) ListInstanceAgentPlugins(ctx context.Context, request ListInstanceAgentPluginsRequest) (response ListInstanceAgentPluginsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_pluginconfig_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_pluginconfig_client.go index a9d59696678..8e15c501425 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_pluginconfig_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/computeinstanceagent_pluginconfig_client.go @@ -94,7 +94,7 @@ func (client *PluginconfigClient) ConfigurationProvider() *common.ConfigurationP // ListInstanceagentAvailablePlugins The API to get the list of plugins that are available. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/computeinstanceagent/ListInstanceagentAvailablePlugins.go.html to see an example of how to use ListInstanceagentAvailablePlugins API. func (client PluginconfigClient) ListInstanceagentAvailablePlugins(ctx context.Context, request ListInstanceagentAvailablePluginsRequest) (response ListInstanceagentAvailablePluginsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_object_storage_tuple_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_object_storage_tuple_details.go index a3260b7f071..36ddcdbb097 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_object_storage_tuple_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_object_storage_tuple_details.go @@ -36,12 +36,12 @@ type InstanceAgentCommandExecutionOutputViaObjectStorageTupleDetails struct { Message *string `mandatory:"false" json:"message"` } -//GetExitCode returns ExitCode +// GetExitCode returns ExitCode func (m InstanceAgentCommandExecutionOutputViaObjectStorageTupleDetails) GetExitCode() *int { return m.ExitCode } -//GetMessage returns Message +// GetMessage returns Message func (m InstanceAgentCommandExecutionOutputViaObjectStorageTupleDetails) GetMessage() *string { return m.Message } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_object_storage_uri_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_object_storage_uri_details.go index 6f07b277c0a..6f6d8c30fea 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_object_storage_uri_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_object_storage_uri_details.go @@ -30,12 +30,12 @@ type InstanceAgentCommandExecutionOutputViaObjectStorageUriDetails struct { Message *string `mandatory:"false" json:"message"` } -//GetExitCode returns ExitCode +// GetExitCode returns ExitCode func (m InstanceAgentCommandExecutionOutputViaObjectStorageUriDetails) GetExitCode() *int { return m.ExitCode } -//GetMessage returns Message +// GetMessage returns Message func (m InstanceAgentCommandExecutionOutputViaObjectStorageUriDetails) GetMessage() *string { return m.Message } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_text_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_text_details.go index e2a5b54bddf..45a17e85357 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_text_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/computeinstanceagent/instance_agent_command_execution_output_via_text_details.go @@ -33,12 +33,12 @@ type InstanceAgentCommandExecutionOutputViaTextDetails struct { TextSha256 *string `mandatory:"false" json:"textSha256"` } -//GetExitCode returns ExitCode +// GetExitCode returns ExitCode func (m InstanceAgentCommandExecutionOutputViaTextDetails) GetExitCode() *int { return m.ExitCode } -//GetMessage returns Message +// GetMessage returns Message func (m InstanceAgentCommandExecutionOutputViaTextDetails) GetMessage() *string { return m.Message } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerengine/containerengine_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerengine/containerengine_client.go index 93206a888db..0fb19241847 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerengine/containerengine_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerengine/containerengine_client.go @@ -95,7 +95,7 @@ func (client *ContainerEngineClient) ConfigurationProvider() *common.Configurati // ClusterMigrateToNativeVcn Initiates cluster migration to use native VCN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ClusterMigrateToNativeVcn.go.html to see an example of how to use ClusterMigrateToNativeVcn API. // A default retry strategy applies to this operation ClusterMigrateToNativeVcn() @@ -153,7 +153,7 @@ func (client ContainerEngineClient) clusterMigrateToNativeVcn(ctx context.Contex // CompleteCredentialRotation Complete cluster credential rotation. Retire old credentials from kubernetes components. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/CompleteCredentialRotation.go.html to see an example of how to use CompleteCredentialRotation API. // A default retry strategy applies to this operation CompleteCredentialRotation() @@ -216,7 +216,7 @@ func (client ContainerEngineClient) completeCredentialRotation(ctx context.Conte // CreateCluster Create a new cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/CreateCluster.go.html to see an example of how to use CreateCluster API. // A default retry strategy applies to this operation CreateCluster() @@ -279,7 +279,7 @@ func (client ContainerEngineClient) createCluster(ctx context.Context, request c // CreateKubeconfig Create the Kubeconfig YAML for a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/CreateKubeconfig.go.html to see an example of how to use CreateKubeconfig API. // A default retry strategy applies to this operation CreateKubeconfig() @@ -336,7 +336,7 @@ func (client ContainerEngineClient) createKubeconfig(ctx context.Context, reques // CreateNodePool Create a new node pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/CreateNodePool.go.html to see an example of how to use CreateNodePool API. // A default retry strategy applies to this operation CreateNodePool() @@ -399,7 +399,7 @@ func (client ContainerEngineClient) createNodePool(ctx context.Context, request // CreateVirtualNodePool Create a new virtual node pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/CreateVirtualNodePool.go.html to see an example of how to use CreateVirtualNodePool API. // A default retry strategy applies to this operation CreateVirtualNodePool() @@ -462,7 +462,7 @@ func (client ContainerEngineClient) createVirtualNodePool(ctx context.Context, r // CreateWorkloadMapping Create the specified workloadMapping for a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/CreateWorkloadMapping.go.html to see an example of how to use CreateWorkloadMapping API. // A default retry strategy applies to this operation CreateWorkloadMapping() @@ -525,7 +525,7 @@ func (client ContainerEngineClient) createWorkloadMapping(ctx context.Context, r // DeleteCluster Delete a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/DeleteCluster.go.html to see an example of how to use DeleteCluster API. // A default retry strategy applies to this operation DeleteCluster() @@ -583,7 +583,7 @@ func (client ContainerEngineClient) deleteCluster(ctx context.Context, request c // DeleteNode Delete node. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/DeleteNode.go.html to see an example of how to use DeleteNode API. // A default retry strategy applies to this operation DeleteNode() @@ -641,7 +641,7 @@ func (client ContainerEngineClient) deleteNode(ctx context.Context, request comm // DeleteNodePool Delete a node pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/DeleteNodePool.go.html to see an example of how to use DeleteNodePool API. // A default retry strategy applies to this operation DeleteNodePool() @@ -699,7 +699,7 @@ func (client ContainerEngineClient) deleteNodePool(ctx context.Context, request // DeleteVirtualNodePool Delete a virtual node pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/DeleteVirtualNodePool.go.html to see an example of how to use DeleteVirtualNodePool API. // A default retry strategy applies to this operation DeleteVirtualNodePool() @@ -757,7 +757,7 @@ func (client ContainerEngineClient) deleteVirtualNodePool(ctx context.Context, r // DeleteWorkRequest Cancel a work request that has not started. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/DeleteWorkRequest.go.html to see an example of how to use DeleteWorkRequest API. // A default retry strategy applies to this operation DeleteWorkRequest() @@ -815,7 +815,7 @@ func (client ContainerEngineClient) deleteWorkRequest(ctx context.Context, reque // DeleteWorkloadMapping Delete workloadMapping for a provisioned cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/DeleteWorkloadMapping.go.html to see an example of how to use DeleteWorkloadMapping API. // A default retry strategy applies to this operation DeleteWorkloadMapping() @@ -873,7 +873,7 @@ func (client ContainerEngineClient) deleteWorkloadMapping(ctx context.Context, r // DisableAddon Disable addon for a provisioned cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/DisableAddon.go.html to see an example of how to use DisableAddon API. // A default retry strategy applies to this operation DisableAddon() @@ -931,7 +931,7 @@ func (client ContainerEngineClient) disableAddon(ctx context.Context, request co // GetAddon Get the specified addon for a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetAddon.go.html to see an example of how to use GetAddon API. // A default retry strategy applies to this operation GetAddon() @@ -989,7 +989,7 @@ func (client ContainerEngineClient) getAddon(ctx context.Context, request common // GetCluster Get the details of a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetCluster.go.html to see an example of how to use GetCluster API. // A default retry strategy applies to this operation GetCluster() @@ -1047,7 +1047,7 @@ func (client ContainerEngineClient) getCluster(ctx context.Context, request comm // GetClusterMigrateToNativeVcnStatus Get details on a cluster's migration to native VCN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetClusterMigrateToNativeVcnStatus.go.html to see an example of how to use GetClusterMigrateToNativeVcnStatus API. // A default retry strategy applies to this operation GetClusterMigrateToNativeVcnStatus() @@ -1105,7 +1105,7 @@ func (client ContainerEngineClient) getClusterMigrateToNativeVcnStatus(ctx conte // GetClusterOptions Get options available for clusters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetClusterOptions.go.html to see an example of how to use GetClusterOptions API. // A default retry strategy applies to this operation GetClusterOptions() @@ -1163,7 +1163,7 @@ func (client ContainerEngineClient) getClusterOptions(ctx context.Context, reque // GetCredentialRotationStatus Get cluster credential rotation status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetCredentialRotationStatus.go.html to see an example of how to use GetCredentialRotationStatus API. // A default retry strategy applies to this operation GetCredentialRotationStatus() @@ -1221,7 +1221,7 @@ func (client ContainerEngineClient) getCredentialRotationStatus(ctx context.Cont // GetNodePool Get the details of a node pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetNodePool.go.html to see an example of how to use GetNodePool API. // A default retry strategy applies to this operation GetNodePool() @@ -1279,7 +1279,7 @@ func (client ContainerEngineClient) getNodePool(ctx context.Context, request com // GetNodePoolOptions Get options available for node pools. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetNodePoolOptions.go.html to see an example of how to use GetNodePoolOptions API. // A default retry strategy applies to this operation GetNodePoolOptions() @@ -1337,7 +1337,7 @@ func (client ContainerEngineClient) getNodePoolOptions(ctx context.Context, requ // GetVirtualNode Get the details of a virtual node. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetVirtualNode.go.html to see an example of how to use GetVirtualNode API. // A default retry strategy applies to this operation GetVirtualNode() @@ -1395,7 +1395,7 @@ func (client ContainerEngineClient) getVirtualNode(ctx context.Context, request // GetVirtualNodePool Get the details of a virtual node pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetVirtualNodePool.go.html to see an example of how to use GetVirtualNodePool API. // A default retry strategy applies to this operation GetVirtualNodePool() @@ -1453,7 +1453,7 @@ func (client ContainerEngineClient) getVirtualNodePool(ctx context.Context, requ // GetWorkRequest Get the details of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1511,7 +1511,7 @@ func (client ContainerEngineClient) getWorkRequest(ctx context.Context, request // GetWorkloadMapping Get the specified workloadMapping for a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/GetWorkloadMapping.go.html to see an example of how to use GetWorkloadMapping API. // A default retry strategy applies to this operation GetWorkloadMapping() @@ -1569,7 +1569,7 @@ func (client ContainerEngineClient) getWorkloadMapping(ctx context.Context, requ // InstallAddon Install the specified addon for a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/InstallAddon.go.html to see an example of how to use InstallAddon API. // A default retry strategy applies to this operation InstallAddon() @@ -1632,7 +1632,7 @@ func (client ContainerEngineClient) installAddon(ctx context.Context, request co // ListAddonOptions Get list of supported addons for a specific kubernetes version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListAddonOptions.go.html to see an example of how to use ListAddonOptions API. // A default retry strategy applies to this operation ListAddonOptions() @@ -1690,7 +1690,7 @@ func (client ContainerEngineClient) listAddonOptions(ctx context.Context, reques // ListAddons List addon for a provisioned cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListAddons.go.html to see an example of how to use ListAddons API. // A default retry strategy applies to this operation ListAddons() @@ -1748,7 +1748,7 @@ func (client ContainerEngineClient) listAddons(ctx context.Context, request comm // ListClusters List all the cluster objects in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListClusters.go.html to see an example of how to use ListClusters API. // A default retry strategy applies to this operation ListClusters() @@ -1806,7 +1806,7 @@ func (client ContainerEngineClient) listClusters(ctx context.Context, request co // ListNodePools List all the node pools in a compartment, and optionally filter by cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListNodePools.go.html to see an example of how to use ListNodePools API. // A default retry strategy applies to this operation ListNodePools() @@ -1864,7 +1864,7 @@ func (client ContainerEngineClient) listNodePools(ctx context.Context, request c // ListPodShapes List all the Pod Shapes in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListPodShapes.go.html to see an example of how to use ListPodShapes API. // A default retry strategy applies to this operation ListPodShapes() @@ -1922,7 +1922,7 @@ func (client ContainerEngineClient) listPodShapes(ctx context.Context, request c // ListVirtualNodePools List all the virtual node pools in a compartment, and optionally filter by cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListVirtualNodePools.go.html to see an example of how to use ListVirtualNodePools API. // A default retry strategy applies to this operation ListVirtualNodePools() @@ -1980,7 +1980,7 @@ func (client ContainerEngineClient) listVirtualNodePools(ctx context.Context, re // ListVirtualNodes List virtual nodes in a virtual node pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListVirtualNodes.go.html to see an example of how to use ListVirtualNodes API. // A default retry strategy applies to this operation ListVirtualNodes() @@ -2038,7 +2038,7 @@ func (client ContainerEngineClient) listVirtualNodes(ctx context.Context, reques // ListWorkRequestErrors Get the errors of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -2096,7 +2096,7 @@ func (client ContainerEngineClient) listWorkRequestErrors(ctx context.Context, r // ListWorkRequestLogs Get the logs of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -2154,7 +2154,7 @@ func (client ContainerEngineClient) listWorkRequestLogs(ctx context.Context, req // ListWorkRequests List all work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2212,7 +2212,7 @@ func (client ContainerEngineClient) listWorkRequests(ctx context.Context, reques // ListWorkloadMappings List workloadMappings for a provisioned cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/ListWorkloadMappings.go.html to see an example of how to use ListWorkloadMappings API. // A default retry strategy applies to this operation ListWorkloadMappings() @@ -2270,7 +2270,7 @@ func (client ContainerEngineClient) listWorkloadMappings(ctx context.Context, re // StartCredentialRotation Start cluster credential rotation by adding new credentials, old credentials will still work after this operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/StartCredentialRotation.go.html to see an example of how to use StartCredentialRotation API. // A default retry strategy applies to this operation StartCredentialRotation() @@ -2333,7 +2333,7 @@ func (client ContainerEngineClient) startCredentialRotation(ctx context.Context, // UpdateAddon Update addon details for a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/UpdateAddon.go.html to see an example of how to use UpdateAddon API. // A default retry strategy applies to this operation UpdateAddon() @@ -2391,7 +2391,7 @@ func (client ContainerEngineClient) updateAddon(ctx context.Context, request com // UpdateCluster Update the details of a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/UpdateCluster.go.html to see an example of how to use UpdateCluster API. // A default retry strategy applies to this operation UpdateCluster() @@ -2449,7 +2449,7 @@ func (client ContainerEngineClient) updateCluster(ctx context.Context, request c // UpdateClusterEndpointConfig Update the details of the cluster endpoint configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/UpdateClusterEndpointConfig.go.html to see an example of how to use UpdateClusterEndpointConfig API. // A default retry strategy applies to this operation UpdateClusterEndpointConfig() @@ -2507,7 +2507,7 @@ func (client ContainerEngineClient) updateClusterEndpointConfig(ctx context.Cont // UpdateNodePool Update the details of a node pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/UpdateNodePool.go.html to see an example of how to use UpdateNodePool API. // A default retry strategy applies to this operation UpdateNodePool() @@ -2565,7 +2565,7 @@ func (client ContainerEngineClient) updateNodePool(ctx context.Context, request // UpdateVirtualNodePool Update the details of a virtual node pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/UpdateVirtualNodePool.go.html to see an example of how to use UpdateVirtualNodePool API. // A default retry strategy applies to this operation UpdateVirtualNodePool() @@ -2623,7 +2623,7 @@ func (client ContainerEngineClient) updateVirtualNodePool(ctx context.Context, r // UpdateWorkloadMapping Update workloadMapping details for a cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerengine/UpdateWorkloadMapping.go.html to see an example of how to use UpdateWorkloadMapping API. // A default retry strategy applies to this operation UpdateWorkloadMapping() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerengine/node_source_via_image_option.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerengine/node_source_via_image_option.go index e6c4974b06b..59162fdb320 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerengine/node_source_via_image_option.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerengine/node_source_via_image_option.go @@ -28,7 +28,7 @@ type NodeSourceViaImageOption struct { ImageId *string `mandatory:"false" json:"imageId"` } -//GetSourceName returns SourceName +// GetSourceName returns SourceName func (m NodeSourceViaImageOption) GetSourceName() *string { return m.SourceName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/basic_image_pull_secret.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/basic_image_pull_secret.go index 3af068fb587..bf6ab9fb60b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/basic_image_pull_secret.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/basic_image_pull_secret.go @@ -23,7 +23,7 @@ type BasicImagePullSecret struct { RegistryEndpoint *string `mandatory:"true" json:"registryEndpoint"` } -//GetRegistryEndpoint returns RegistryEndpoint +// GetRegistryEndpoint returns RegistryEndpoint func (m BasicImagePullSecret) GetRegistryEndpoint() *string { return m.RegistryEndpoint } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_command_health_check.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_command_health_check.go index d83a497e808..54149b01c57 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_command_health_check.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_command_health_check.go @@ -51,47 +51,47 @@ type ContainerCommandHealthCheck struct { FailureAction ContainerHealthCheckFailureActionEnum `mandatory:"false" json:"failureAction,omitempty"` } -//GetName returns Name +// GetName returns Name func (m ContainerCommandHealthCheck) GetName() *string { return m.Name } -//GetInitialDelayInSeconds returns InitialDelayInSeconds +// GetInitialDelayInSeconds returns InitialDelayInSeconds func (m ContainerCommandHealthCheck) GetInitialDelayInSeconds() *int { return m.InitialDelayInSeconds } -//GetIntervalInSeconds returns IntervalInSeconds +// GetIntervalInSeconds returns IntervalInSeconds func (m ContainerCommandHealthCheck) GetIntervalInSeconds() *int { return m.IntervalInSeconds } -//GetFailureThreshold returns FailureThreshold +// GetFailureThreshold returns FailureThreshold func (m ContainerCommandHealthCheck) GetFailureThreshold() *int { return m.FailureThreshold } -//GetSuccessThreshold returns SuccessThreshold +// GetSuccessThreshold returns SuccessThreshold func (m ContainerCommandHealthCheck) GetSuccessThreshold() *int { return m.SuccessThreshold } -//GetTimeoutInSeconds returns TimeoutInSeconds +// GetTimeoutInSeconds returns TimeoutInSeconds func (m ContainerCommandHealthCheck) GetTimeoutInSeconds() *int { return m.TimeoutInSeconds } -//GetStatus returns Status +// GetStatus returns Status func (m ContainerCommandHealthCheck) GetStatus() ContainerHealthCheckStatusEnum { return m.Status } -//GetStatusDetails returns StatusDetails +// GetStatusDetails returns StatusDetails func (m ContainerCommandHealthCheck) GetStatusDetails() *string { return m.StatusDetails } -//GetFailureAction returns FailureAction +// GetFailureAction returns FailureAction func (m ContainerCommandHealthCheck) GetFailureAction() ContainerHealthCheckFailureActionEnum { return m.FailureAction } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_config_file_volume.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_config_file_volume.go index 900d31d6b47..e3454c0bf22 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_config_file_volume.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_config_file_volume.go @@ -26,7 +26,7 @@ type ContainerConfigFileVolume struct { Configs []ContainerConfigFile `mandatory:"false" json:"configs"` } -//GetName returns Name +// GetName returns Name func (m ContainerConfigFileVolume) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_empty_dir_volume.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_empty_dir_volume.go index e2a1d90313c..e4b98583044 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_empty_dir_volume.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_empty_dir_volume.go @@ -26,7 +26,7 @@ type ContainerEmptyDirVolume struct { BackingStore ContainerEmptyDirVolumeBackingStoreEnum `mandatory:"false" json:"backingStore,omitempty"` } -//GetName returns Name +// GetName returns Name func (m ContainerEmptyDirVolume) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_http_health_check.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_http_health_check.go index c5a7dbe4a8e..777df31b6ee 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_http_health_check.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_http_health_check.go @@ -57,47 +57,47 @@ type ContainerHttpHealthCheck struct { FailureAction ContainerHealthCheckFailureActionEnum `mandatory:"false" json:"failureAction,omitempty"` } -//GetName returns Name +// GetName returns Name func (m ContainerHttpHealthCheck) GetName() *string { return m.Name } -//GetInitialDelayInSeconds returns InitialDelayInSeconds +// GetInitialDelayInSeconds returns InitialDelayInSeconds func (m ContainerHttpHealthCheck) GetInitialDelayInSeconds() *int { return m.InitialDelayInSeconds } -//GetIntervalInSeconds returns IntervalInSeconds +// GetIntervalInSeconds returns IntervalInSeconds func (m ContainerHttpHealthCheck) GetIntervalInSeconds() *int { return m.IntervalInSeconds } -//GetFailureThreshold returns FailureThreshold +// GetFailureThreshold returns FailureThreshold func (m ContainerHttpHealthCheck) GetFailureThreshold() *int { return m.FailureThreshold } -//GetSuccessThreshold returns SuccessThreshold +// GetSuccessThreshold returns SuccessThreshold func (m ContainerHttpHealthCheck) GetSuccessThreshold() *int { return m.SuccessThreshold } -//GetTimeoutInSeconds returns TimeoutInSeconds +// GetTimeoutInSeconds returns TimeoutInSeconds func (m ContainerHttpHealthCheck) GetTimeoutInSeconds() *int { return m.TimeoutInSeconds } -//GetStatus returns Status +// GetStatus returns Status func (m ContainerHttpHealthCheck) GetStatus() ContainerHealthCheckStatusEnum { return m.Status } -//GetStatusDetails returns StatusDetails +// GetStatusDetails returns StatusDetails func (m ContainerHttpHealthCheck) GetStatusDetails() *string { return m.StatusDetails } -//GetFailureAction returns FailureAction +// GetFailureAction returns FailureAction func (m ContainerHttpHealthCheck) GetFailureAction() ContainerHealthCheckFailureActionEnum { return m.FailureAction } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_tcp_health_check.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_tcp_health_check.go index 7f5f4b85eec..427c1e26790 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_tcp_health_check.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/container_tcp_health_check.go @@ -51,47 +51,47 @@ type ContainerTcpHealthCheck struct { FailureAction ContainerHealthCheckFailureActionEnum `mandatory:"false" json:"failureAction,omitempty"` } -//GetName returns Name +// GetName returns Name func (m ContainerTcpHealthCheck) GetName() *string { return m.Name } -//GetInitialDelayInSeconds returns InitialDelayInSeconds +// GetInitialDelayInSeconds returns InitialDelayInSeconds func (m ContainerTcpHealthCheck) GetInitialDelayInSeconds() *int { return m.InitialDelayInSeconds } -//GetIntervalInSeconds returns IntervalInSeconds +// GetIntervalInSeconds returns IntervalInSeconds func (m ContainerTcpHealthCheck) GetIntervalInSeconds() *int { return m.IntervalInSeconds } -//GetFailureThreshold returns FailureThreshold +// GetFailureThreshold returns FailureThreshold func (m ContainerTcpHealthCheck) GetFailureThreshold() *int { return m.FailureThreshold } -//GetSuccessThreshold returns SuccessThreshold +// GetSuccessThreshold returns SuccessThreshold func (m ContainerTcpHealthCheck) GetSuccessThreshold() *int { return m.SuccessThreshold } -//GetTimeoutInSeconds returns TimeoutInSeconds +// GetTimeoutInSeconds returns TimeoutInSeconds func (m ContainerTcpHealthCheck) GetTimeoutInSeconds() *int { return m.TimeoutInSeconds } -//GetStatus returns Status +// GetStatus returns Status func (m ContainerTcpHealthCheck) GetStatus() ContainerHealthCheckStatusEnum { return m.Status } -//GetStatusDetails returns StatusDetails +// GetStatusDetails returns StatusDetails func (m ContainerTcpHealthCheck) GetStatusDetails() *string { return m.StatusDetails } -//GetFailureAction returns FailureAction +// GetFailureAction returns FailureAction func (m ContainerTcpHealthCheck) GetFailureAction() ContainerHealthCheckFailureActionEnum { return m.FailureAction } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/containerinstances_containerinstance_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/containerinstances_containerinstance_client.go index 58055bce46d..7ea1c74ca32 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/containerinstances_containerinstance_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/containerinstances_containerinstance_client.go @@ -93,7 +93,7 @@ func (client *ContainerInstanceClient) ConfigurationProvider() *common.Configura // ChangeContainerInstanceCompartment Moves a container instance resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/ChangeContainerInstanceCompartment.go.html to see an example of how to use ChangeContainerInstanceCompartment API. // A default retry strategy applies to this operation ChangeContainerInstanceCompartment() @@ -151,7 +151,7 @@ func (client ContainerInstanceClient) changeContainerInstanceCompartment(ctx con // CreateContainerInstance Creates a container instance and deploys the containers on it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/CreateContainerInstance.go.html to see an example of how to use CreateContainerInstance API. // A default retry strategy applies to this operation CreateContainerInstance() @@ -214,7 +214,7 @@ func (client ContainerInstanceClient) createContainerInstance(ctx context.Contex // DeleteContainerInstance Deletes a container instance and its containers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/DeleteContainerInstance.go.html to see an example of how to use DeleteContainerInstance API. // A default retry strategy applies to this operation DeleteContainerInstance() @@ -272,7 +272,7 @@ func (client ContainerInstanceClient) deleteContainerInstance(ctx context.Contex // GetContainer Get details about a single container by the container ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/GetContainer.go.html to see an example of how to use GetContainer API. // A default retry strategy applies to this operation GetContainer() @@ -330,7 +330,7 @@ func (client ContainerInstanceClient) getContainer(ctx context.Context, request // GetContainerInstance Gets information about the specified container instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/GetContainerInstance.go.html to see an example of how to use GetContainerInstance API. // A default retry strategy applies to this operation GetContainerInstance() @@ -388,7 +388,7 @@ func (client ContainerInstanceClient) getContainerInstance(ctx context.Context, // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -446,7 +446,7 @@ func (client ContainerInstanceClient) getWorkRequest(ctx context.Context, reques // ListContainerInstanceShapes Lists the shapes that can be used to create container instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/ListContainerInstanceShapes.go.html to see an example of how to use ListContainerInstanceShapes API. // A default retry strategy applies to this operation ListContainerInstanceShapes() @@ -504,7 +504,7 @@ func (client ContainerInstanceClient) listContainerInstanceShapes(ctx context.Co // ListContainerInstances Returns a list of container instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/ListContainerInstances.go.html to see an example of how to use ListContainerInstances API. // A default retry strategy applies to this operation ListContainerInstances() @@ -562,7 +562,7 @@ func (client ContainerInstanceClient) listContainerInstances(ctx context.Context // ListContainers Returns a list of containers in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/ListContainers.go.html to see an example of how to use ListContainers API. // A default retry strategy applies to this operation ListContainers() @@ -620,7 +620,7 @@ func (client ContainerInstanceClient) listContainers(ctx context.Context, reques // ListWorkRequestErrors Return a paginated list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -678,7 +678,7 @@ func (client ContainerInstanceClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Return a paginated list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -736,7 +736,7 @@ func (client ContainerInstanceClient) listWorkRequestLogs(ctx context.Context, r // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -794,7 +794,7 @@ func (client ContainerInstanceClient) listWorkRequests(ctx context.Context, requ // RestartContainerInstance Restarts a container instance. When provided, If-Match is checked against ETag values of the container instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/RestartContainerInstance.go.html to see an example of how to use RestartContainerInstance API. // A default retry strategy applies to this operation RestartContainerInstance() @@ -852,7 +852,7 @@ func (client ContainerInstanceClient) restartContainerInstance(ctx context.Conte // RetrieveLogs Retrieves recent logs from the specified container. The most recent 256 KB of logs are returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/RetrieveLogs.go.html to see an example of how to use RetrieveLogs API. // A default retry strategy applies to this operation RetrieveLogs() @@ -909,7 +909,7 @@ func (client ContainerInstanceClient) retrieveLogs(ctx context.Context, request // StartContainerInstance Starts a container instance if it is "inactive". No effect otherwise. When provided, If-Match is checked against ETag values of the container instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/StartContainerInstance.go.html to see an example of how to use StartContainerInstance API. // A default retry strategy applies to this operation StartContainerInstance() @@ -967,7 +967,7 @@ func (client ContainerInstanceClient) startContainerInstance(ctx context.Context // StopContainerInstance Stops a container instance if it is "active". No effect otherwise. When provided, If-Match is checked against ETag values of the container instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/StopContainerInstance.go.html to see an example of how to use StopContainerInstance API. // A default retry strategy applies to this operation StopContainerInstance() @@ -1025,7 +1025,7 @@ func (client ContainerInstanceClient) stopContainerInstance(ctx context.Context, // UpdateContainer Updates a container. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/UpdateContainer.go.html to see an example of how to use UpdateContainer API. // A default retry strategy applies to this operation UpdateContainer() @@ -1083,7 +1083,7 @@ func (client ContainerInstanceClient) updateContainer(ctx context.Context, reque // UpdateContainerInstance Updates a container instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/containerinstances/UpdateContainerInstance.go.html to see an example of how to use UpdateContainerInstance API. // A default retry strategy applies to this operation UpdateContainerInstance() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_basic_image_pull_secret_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_basic_image_pull_secret_details.go index 09bd156171a..e628e42e66d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_basic_image_pull_secret_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_basic_image_pull_secret_details.go @@ -29,7 +29,7 @@ type CreateBasicImagePullSecretDetails struct { Password *string `mandatory:"true" json:"password"` } -//GetRegistryEndpoint returns RegistryEndpoint +// GetRegistryEndpoint returns RegistryEndpoint func (m CreateBasicImagePullSecretDetails) GetRegistryEndpoint() *string { return m.RegistryEndpoint } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_command_health_check_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_command_health_check_details.go index d0da4605101..feb4d2bb4a3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_command_health_check_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_command_health_check_details.go @@ -45,37 +45,37 @@ type CreateContainerCommandHealthCheckDetails struct { FailureAction ContainerHealthCheckFailureActionEnum `mandatory:"false" json:"failureAction,omitempty"` } -//GetName returns Name +// GetName returns Name func (m CreateContainerCommandHealthCheckDetails) GetName() *string { return m.Name } -//GetInitialDelayInSeconds returns InitialDelayInSeconds +// GetInitialDelayInSeconds returns InitialDelayInSeconds func (m CreateContainerCommandHealthCheckDetails) GetInitialDelayInSeconds() *int { return m.InitialDelayInSeconds } -//GetIntervalInSeconds returns IntervalInSeconds +// GetIntervalInSeconds returns IntervalInSeconds func (m CreateContainerCommandHealthCheckDetails) GetIntervalInSeconds() *int { return m.IntervalInSeconds } -//GetFailureThreshold returns FailureThreshold +// GetFailureThreshold returns FailureThreshold func (m CreateContainerCommandHealthCheckDetails) GetFailureThreshold() *int { return m.FailureThreshold } -//GetSuccessThreshold returns SuccessThreshold +// GetSuccessThreshold returns SuccessThreshold func (m CreateContainerCommandHealthCheckDetails) GetSuccessThreshold() *int { return m.SuccessThreshold } -//GetTimeoutInSeconds returns TimeoutInSeconds +// GetTimeoutInSeconds returns TimeoutInSeconds func (m CreateContainerCommandHealthCheckDetails) GetTimeoutInSeconds() *int { return m.TimeoutInSeconds } -//GetFailureAction returns FailureAction +// GetFailureAction returns FailureAction func (m CreateContainerCommandHealthCheckDetails) GetFailureAction() ContainerHealthCheckFailureActionEnum { return m.FailureAction } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_config_file_volume_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_config_file_volume_details.go index 2ca93ff6006..e7f33d617d3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_config_file_volume_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_config_file_volume_details.go @@ -26,7 +26,7 @@ type CreateContainerConfigFileVolumeDetails struct { Configs []ContainerConfigFile `mandatory:"false" json:"configs"` } -//GetName returns Name +// GetName returns Name func (m CreateContainerConfigFileVolumeDetails) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_empty_dir_volume_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_empty_dir_volume_details.go index 056ad397cc7..86e9fd872a1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_empty_dir_volume_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_empty_dir_volume_details.go @@ -26,7 +26,7 @@ type CreateContainerEmptyDirVolumeDetails struct { BackingStore ContainerEmptyDirVolumeBackingStoreEnum `mandatory:"false" json:"backingStore,omitempty"` } -//GetName returns Name +// GetName returns Name func (m CreateContainerEmptyDirVolumeDetails) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_http_health_check_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_http_health_check_details.go index a984fc00e03..1e53cdce6b7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_http_health_check_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_http_health_check_details.go @@ -51,37 +51,37 @@ type CreateContainerHttpHealthCheckDetails struct { FailureAction ContainerHealthCheckFailureActionEnum `mandatory:"false" json:"failureAction,omitempty"` } -//GetName returns Name +// GetName returns Name func (m CreateContainerHttpHealthCheckDetails) GetName() *string { return m.Name } -//GetInitialDelayInSeconds returns InitialDelayInSeconds +// GetInitialDelayInSeconds returns InitialDelayInSeconds func (m CreateContainerHttpHealthCheckDetails) GetInitialDelayInSeconds() *int { return m.InitialDelayInSeconds } -//GetIntervalInSeconds returns IntervalInSeconds +// GetIntervalInSeconds returns IntervalInSeconds func (m CreateContainerHttpHealthCheckDetails) GetIntervalInSeconds() *int { return m.IntervalInSeconds } -//GetFailureThreshold returns FailureThreshold +// GetFailureThreshold returns FailureThreshold func (m CreateContainerHttpHealthCheckDetails) GetFailureThreshold() *int { return m.FailureThreshold } -//GetSuccessThreshold returns SuccessThreshold +// GetSuccessThreshold returns SuccessThreshold func (m CreateContainerHttpHealthCheckDetails) GetSuccessThreshold() *int { return m.SuccessThreshold } -//GetTimeoutInSeconds returns TimeoutInSeconds +// GetTimeoutInSeconds returns TimeoutInSeconds func (m CreateContainerHttpHealthCheckDetails) GetTimeoutInSeconds() *int { return m.TimeoutInSeconds } -//GetFailureAction returns FailureAction +// GetFailureAction returns FailureAction func (m CreateContainerHttpHealthCheckDetails) GetFailureAction() ContainerHealthCheckFailureActionEnum { return m.FailureAction } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_tcp_health_check_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_tcp_health_check_details.go index 24cbe33d130..2bf87f6d63b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_tcp_health_check_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_container_tcp_health_check_details.go @@ -45,37 +45,37 @@ type CreateContainerTcpHealthCheckDetails struct { FailureAction ContainerHealthCheckFailureActionEnum `mandatory:"false" json:"failureAction,omitempty"` } -//GetName returns Name +// GetName returns Name func (m CreateContainerTcpHealthCheckDetails) GetName() *string { return m.Name } -//GetInitialDelayInSeconds returns InitialDelayInSeconds +// GetInitialDelayInSeconds returns InitialDelayInSeconds func (m CreateContainerTcpHealthCheckDetails) GetInitialDelayInSeconds() *int { return m.InitialDelayInSeconds } -//GetIntervalInSeconds returns IntervalInSeconds +// GetIntervalInSeconds returns IntervalInSeconds func (m CreateContainerTcpHealthCheckDetails) GetIntervalInSeconds() *int { return m.IntervalInSeconds } -//GetFailureThreshold returns FailureThreshold +// GetFailureThreshold returns FailureThreshold func (m CreateContainerTcpHealthCheckDetails) GetFailureThreshold() *int { return m.FailureThreshold } -//GetSuccessThreshold returns SuccessThreshold +// GetSuccessThreshold returns SuccessThreshold func (m CreateContainerTcpHealthCheckDetails) GetSuccessThreshold() *int { return m.SuccessThreshold } -//GetTimeoutInSeconds returns TimeoutInSeconds +// GetTimeoutInSeconds returns TimeoutInSeconds func (m CreateContainerTcpHealthCheckDetails) GetTimeoutInSeconds() *int { return m.TimeoutInSeconds } -//GetFailureAction returns FailureAction +// GetFailureAction returns FailureAction func (m CreateContainerTcpHealthCheckDetails) GetFailureAction() ContainerHealthCheckFailureActionEnum { return m.FailureAction } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_vault_image_pull_secret_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_vault_image_pull_secret_details.go index ef505e9389d..c14e3b22ccc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_vault_image_pull_secret_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/create_vault_image_pull_secret_details.go @@ -19,10 +19,12 @@ import ( // CreateVaultImagePullSecretDetails A CreateVaultImagePullSecretDetails is a ImagePullSecret which accepts secretId as credentials information. // **Sample Format for username and password in Vault Secret** // ``` -// { -// "username": "this-is-not-the-secret", -// "password": "example-password" -// } +// +// { +// "username": "this-is-not-the-secret", +// "password": "example-password" +// } +// // ``` type CreateVaultImagePullSecretDetails struct { @@ -33,7 +35,7 @@ type CreateVaultImagePullSecretDetails struct { SecretId *string `mandatory:"true" json:"secretId"` } -//GetRegistryEndpoint returns RegistryEndpoint +// GetRegistryEndpoint returns RegistryEndpoint func (m CreateVaultImagePullSecretDetails) GetRegistryEndpoint() *string { return m.RegistryEndpoint } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/vault_image_pull_secret.go b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/vault_image_pull_secret.go index 26274d4ae19..ce17b32e280 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/vault_image_pull_secret.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/containerinstances/vault_image_pull_secret.go @@ -26,7 +26,7 @@ type VaultImagePullSecret struct { SecretId *string `mandatory:"true" json:"secretId"` } -//GetRegistryEndpoint returns RegistryEndpoint +// GetRegistryEndpoint returns RegistryEndpoint func (m VaultImagePullSecret) GetRegistryEndpoint() *string { return m.RegistryEndpoint } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_gpu_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_gpu_launch_instance_platform_config.go index 6ecf57ee9cc..94f3d130d77 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_gpu_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_gpu_launch_instance_platform_config.go @@ -64,22 +64,22 @@ type AmdMilanBmGpuLaunchInstancePlatformConfig struct { NumaNodesPerSocket AmdMilanBmGpuLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdMilanBmGpuLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdMilanBmGpuLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdMilanBmGpuLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdMilanBmGpuLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_gpu_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_gpu_platform_config.go index 808b9d28105..ccbe478ceae 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_gpu_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_gpu_platform_config.go @@ -64,22 +64,22 @@ type AmdMilanBmGpuPlatformConfig struct { NumaNodesPerSocket AmdMilanBmGpuPlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdMilanBmGpuPlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdMilanBmGpuPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdMilanBmGpuPlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdMilanBmGpuPlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_launch_instance_platform_config.go index f3ff83a9e58..a312945644f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_launch_instance_platform_config.go @@ -72,22 +72,22 @@ type AmdMilanBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket AmdMilanBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdMilanBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdMilanBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdMilanBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdMilanBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_platform_config.go index ab0a3b8abe5..2c8f666e705 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_milan_bm_platform_config.go @@ -72,22 +72,22 @@ type AmdMilanBmPlatformConfig struct { NumaNodesPerSocket AmdMilanBmPlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdMilanBmPlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdMilanBmPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdMilanBmPlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdMilanBmPlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_gpu_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_gpu_launch_instance_platform_config.go index 4e83514f753..7136cd1c418 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_gpu_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_gpu_launch_instance_platform_config.go @@ -64,22 +64,22 @@ type AmdRomeBmGpuLaunchInstancePlatformConfig struct { NumaNodesPerSocket AmdRomeBmGpuLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdRomeBmGpuLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdRomeBmGpuLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdRomeBmGpuLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdRomeBmGpuLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_gpu_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_gpu_platform_config.go index 60343228d9c..8ae7c859bd7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_gpu_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_gpu_platform_config.go @@ -64,22 +64,22 @@ type AmdRomeBmGpuPlatformConfig struct { NumaNodesPerSocket AmdRomeBmGpuPlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdRomeBmGpuPlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdRomeBmGpuPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdRomeBmGpuPlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdRomeBmGpuPlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_launch_instance_platform_config.go index 9b51c6c4f05..82d961e7b81 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_launch_instance_platform_config.go @@ -72,22 +72,22 @@ type AmdRomeBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket AmdRomeBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdRomeBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdRomeBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdRomeBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdRomeBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_platform_config.go index a756f8f513d..118ebe44de2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_rome_bm_platform_config.go @@ -71,22 +71,22 @@ type AmdRomeBmPlatformConfig struct { NumaNodesPerSocket AmdRomeBmPlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdRomeBmPlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdRomeBmPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdRomeBmPlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdRomeBmPlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_vm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_vm_launch_instance_platform_config.go index 4368b114198..85a974ec6bc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_vm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_vm_launch_instance_platform_config.go @@ -38,22 +38,22 @@ type AmdVmLaunchInstancePlatformConfig struct { IsMemoryEncryptionEnabled *bool `mandatory:"false" json:"isMemoryEncryptionEnabled"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdVmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdVmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdVmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdVmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_vm_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_vm_platform_config.go index 89d5005a707..3de5c42d2a8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_vm_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/amd_vm_platform_config.go @@ -38,22 +38,22 @@ type AmdVmPlatformConfig struct { IsMemoryEncryptionEnabled *bool `mandatory:"false" json:"isMemoryEncryptionEnabled"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m AmdVmPlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m AmdVmPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m AmdVmPlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m AmdVmPlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_emulated_volume_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_emulated_volume_details.go index e09916ec11f..4b1ba3fce70 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_emulated_volume_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_emulated_volume_details.go @@ -48,32 +48,32 @@ type AttachEmulatedVolumeDetails struct { IsShareable *bool `mandatory:"false" json:"isShareable"` } -//GetDevice returns Device +// GetDevice returns Device func (m AttachEmulatedVolumeDetails) GetDevice() *string { return m.Device } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AttachEmulatedVolumeDetails) GetDisplayName() *string { return m.DisplayName } -//GetInstanceId returns InstanceId +// GetInstanceId returns InstanceId func (m AttachEmulatedVolumeDetails) GetInstanceId() *string { return m.InstanceId } -//GetIsReadOnly returns IsReadOnly +// GetIsReadOnly returns IsReadOnly func (m AttachEmulatedVolumeDetails) GetIsReadOnly() *bool { return m.IsReadOnly } -//GetIsShareable returns IsShareable +// GetIsShareable returns IsShareable func (m AttachEmulatedVolumeDetails) GetIsShareable() *bool { return m.IsShareable } -//GetVolumeId returns VolumeId +// GetVolumeId returns VolumeId func (m AttachEmulatedVolumeDetails) GetVolumeId() *string { return m.VolumeId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_i_scsi_volume_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_i_scsi_volume_details.go index 31a4b37a2fb..4334d068086 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_i_scsi_volume_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_i_scsi_volume_details.go @@ -58,32 +58,32 @@ type AttachIScsiVolumeDetails struct { EncryptionInTransitType EncryptionInTransitTypeEnum `mandatory:"false" json:"encryptionInTransitType,omitempty"` } -//GetDevice returns Device +// GetDevice returns Device func (m AttachIScsiVolumeDetails) GetDevice() *string { return m.Device } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AttachIScsiVolumeDetails) GetDisplayName() *string { return m.DisplayName } -//GetInstanceId returns InstanceId +// GetInstanceId returns InstanceId func (m AttachIScsiVolumeDetails) GetInstanceId() *string { return m.InstanceId } -//GetIsReadOnly returns IsReadOnly +// GetIsReadOnly returns IsReadOnly func (m AttachIScsiVolumeDetails) GetIsReadOnly() *bool { return m.IsReadOnly } -//GetIsShareable returns IsShareable +// GetIsShareable returns IsShareable func (m AttachIScsiVolumeDetails) GetIsShareable() *bool { return m.IsShareable } -//GetVolumeId returns VolumeId +// GetVolumeId returns VolumeId func (m AttachIScsiVolumeDetails) GetVolumeId() *string { return m.VolumeId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_paravirtualized_volume_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_paravirtualized_volume_details.go index d51cf53a1d1..4666a9b54f2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_paravirtualized_volume_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_paravirtualized_volume_details.go @@ -51,32 +51,32 @@ type AttachParavirtualizedVolumeDetails struct { IsPvEncryptionInTransitEnabled *bool `mandatory:"false" json:"isPvEncryptionInTransitEnabled"` } -//GetDevice returns Device +// GetDevice returns Device func (m AttachParavirtualizedVolumeDetails) GetDevice() *string { return m.Device } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AttachParavirtualizedVolumeDetails) GetDisplayName() *string { return m.DisplayName } -//GetInstanceId returns InstanceId +// GetInstanceId returns InstanceId func (m AttachParavirtualizedVolumeDetails) GetInstanceId() *string { return m.InstanceId } -//GetIsReadOnly returns IsReadOnly +// GetIsReadOnly returns IsReadOnly func (m AttachParavirtualizedVolumeDetails) GetIsReadOnly() *bool { return m.IsReadOnly } -//GetIsShareable returns IsShareable +// GetIsShareable returns IsShareable func (m AttachParavirtualizedVolumeDetails) GetIsShareable() *bool { return m.IsShareable } -//GetVolumeId returns VolumeId +// GetVolumeId returns VolumeId func (m AttachParavirtualizedVolumeDetails) GetVolumeId() *string { return m.VolumeId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_service_determined_volume_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_service_determined_volume_details.go index 83ba68c4b8d..b69c1338a16 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_service_determined_volume_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/attach_service_determined_volume_details.go @@ -48,32 +48,32 @@ type AttachServiceDeterminedVolumeDetails struct { IsShareable *bool `mandatory:"false" json:"isShareable"` } -//GetDevice returns Device +// GetDevice returns Device func (m AttachServiceDeterminedVolumeDetails) GetDevice() *string { return m.Device } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AttachServiceDeterminedVolumeDetails) GetDisplayName() *string { return m.DisplayName } -//GetInstanceId returns InstanceId +// GetInstanceId returns InstanceId func (m AttachServiceDeterminedVolumeDetails) GetInstanceId() *string { return m.InstanceId } -//GetIsReadOnly returns IsReadOnly +// GetIsReadOnly returns IsReadOnly func (m AttachServiceDeterminedVolumeDetails) GetIsReadOnly() *bool { return m.IsReadOnly } -//GetIsShareable returns IsShareable +// GetIsShareable returns IsShareable func (m AttachServiceDeterminedVolumeDetails) GetIsShareable() *bool { return m.IsShareable } -//GetVolumeId returns VolumeId +// GetVolumeId returns VolumeId func (m AttachServiceDeterminedVolumeDetails) GetVolumeId() *string { return m.VolumeId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/boolean_image_capability_schema_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/boolean_image_capability_schema_descriptor.go index 7657983bcb6..fd85db32f4a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/boolean_image_capability_schema_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/boolean_image_capability_schema_descriptor.go @@ -31,7 +31,7 @@ type BooleanImageCapabilitySchemaDescriptor struct { Source ImageCapabilitySchemaDescriptorSourceEnum `mandatory:"true" json:"source"` } -//GetSource returns Source +// GetSource returns Source func (m BooleanImageCapabilitySchemaDescriptor) GetSource() ImageCapabilitySchemaDescriptorSourceEnum { return m.Source } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/core_blockstorage_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/core_blockstorage_client.go index 894b03573a7..de1d563b88e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/core_blockstorage_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/core_blockstorage_client.go @@ -101,7 +101,7 @@ func (client *BlockstorageClient) ConfigurationProvider() *common.ConfigurationP // For information about moving resources between compartments, // see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeBootVolumeBackupCompartment.go.html to see an example of how to use ChangeBootVolumeBackupCompartment API. func (client BlockstorageClient) ChangeBootVolumeBackupCompartment(ctx context.Context, request ChangeBootVolumeBackupCompartmentRequest) (response ChangeBootVolumeBackupCompartmentResponse, err error) { @@ -160,7 +160,7 @@ func (client BlockstorageClient) changeBootVolumeBackupCompartment(ctx context.C // For information about moving resources between compartments, // see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeBootVolumeCompartment.go.html to see an example of how to use ChangeBootVolumeCompartment API. func (client BlockstorageClient) ChangeBootVolumeCompartment(ctx context.Context, request ChangeBootVolumeCompartmentRequest) (response ChangeBootVolumeCompartmentResponse, err error) { @@ -219,7 +219,7 @@ func (client BlockstorageClient) changeBootVolumeCompartment(ctx context.Context // For information about moving resources between compartments, // see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeVolumeBackupCompartment.go.html to see an example of how to use ChangeVolumeBackupCompartment API. func (client BlockstorageClient) ChangeVolumeBackupCompartment(ctx context.Context, request ChangeVolumeBackupCompartmentRequest) (response ChangeVolumeBackupCompartmentResponse, err error) { @@ -278,7 +278,7 @@ func (client BlockstorageClient) changeVolumeBackupCompartment(ctx context.Conte // For information about moving resources between compartments, // see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeVolumeCompartment.go.html to see an example of how to use ChangeVolumeCompartment API. func (client BlockstorageClient) ChangeVolumeCompartment(ctx context.Context, request ChangeVolumeCompartmentRequest) (response ChangeVolumeCompartmentResponse, err error) { @@ -337,7 +337,7 @@ func (client BlockstorageClient) changeVolumeCompartment(ctx context.Context, re // For information about moving resources between compartments, // see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeVolumeGroupBackupCompartment.go.html to see an example of how to use ChangeVolumeGroupBackupCompartment API. func (client BlockstorageClient) ChangeVolumeGroupBackupCompartment(ctx context.Context, request ChangeVolumeGroupBackupCompartmentRequest) (response ChangeVolumeGroupBackupCompartmentResponse, err error) { @@ -396,7 +396,7 @@ func (client BlockstorageClient) changeVolumeGroupBackupCompartment(ctx context. // For information about moving resources between compartments, // see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeVolumeGroupCompartment.go.html to see an example of how to use ChangeVolumeGroupCompartment API. func (client BlockstorageClient) ChangeVolumeGroupCompartment(ctx context.Context, request ChangeVolumeGroupCompartmentRequest) (response ChangeVolumeGroupCompartmentResponse, err error) { @@ -454,7 +454,7 @@ func (client BlockstorageClient) changeVolumeGroupCompartment(ctx context.Contex // CopyBootVolumeBackup Creates a boot volume backup copy in specified region. For general information about volume backups, // see Overview of Boot Volume Backups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/bootvolumebackups.htm) // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CopyBootVolumeBackup.go.html to see an example of how to use CopyBootVolumeBackup API. func (client BlockstorageClient) CopyBootVolumeBackup(ctx context.Context, request CopyBootVolumeBackupRequest) (response CopyBootVolumeBackupResponse, err error) { @@ -517,7 +517,7 @@ func (client BlockstorageClient) copyBootVolumeBackup(ctx context.Context, reque // CopyVolumeBackup Creates a volume backup copy in specified region. For general information about volume backups, // see Overview of Block Volume Service Backups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumebackups.htm) // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CopyVolumeBackup.go.html to see an example of how to use CopyVolumeBackup API. func (client BlockstorageClient) CopyVolumeBackup(ctx context.Context, request CopyVolumeBackupRequest) (response CopyVolumeBackupResponse, err error) { @@ -580,7 +580,7 @@ func (client BlockstorageClient) copyVolumeBackup(ctx context.Context, request c // CopyVolumeGroupBackup Creates a volume group backup copy in specified region. For general information about volume group backups, // see Overview of Block Volume Backups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumebackups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CopyVolumeGroupBackup.go.html to see an example of how to use CopyVolumeGroupBackup API. func (client BlockstorageClient) CopyVolumeGroupBackup(ctx context.Context, request CopyVolumeGroupBackupRequest) (response CopyVolumeGroupBackupResponse, err error) { @@ -645,7 +645,7 @@ func (client BlockstorageClient) copyVolumeGroupBackup(ctx context.Context, requ // You may optionally specify a *display name* for the volume, which is simply a friendly name or // description. It does not have to be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateBootVolume.go.html to see an example of how to use CreateBootVolume API. func (client BlockstorageClient) CreateBootVolume(ctx context.Context, request CreateBootVolumeRequest) (response CreateBootVolumeResponse, err error) { @@ -711,7 +711,7 @@ func (client BlockstorageClient) createBootVolume(ctx context.Context, request c // When the data is imaged, it goes into a CREATING state. // After the backup is fully uploaded to the cloud, it goes into an AVAILABLE state. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateBootVolumeBackup.go.html to see an example of how to use CreateBootVolumeBackup API. func (client BlockstorageClient) CreateBootVolumeBackup(ctx context.Context, request CreateBootVolumeBackupRequest) (response CreateBootVolumeBackupResponse, err error) { @@ -784,7 +784,7 @@ func (client BlockstorageClient) createBootVolumeBackup(ctx context.Context, req // You may optionally specify a *display name* for the volume, which is simply a friendly name or // description. It does not have to be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVolume.go.html to see an example of how to use CreateVolume API. func (client BlockstorageClient) CreateVolume(ctx context.Context, request CreateVolumeRequest) (response CreateVolumeResponse, err error) { @@ -850,7 +850,7 @@ func (client BlockstorageClient) createVolume(ctx context.Context, request commo // When the data is imaged, it goes into a CREATING state. // After the backup is fully uploaded to the cloud, it goes into an AVAILABLE state. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVolumeBackup.go.html to see an example of how to use CreateVolumeBackup API. func (client BlockstorageClient) CreateVolumeBackup(ctx context.Context, request CreateVolumeBackupRequest) (response CreateVolumeBackupResponse, err error) { @@ -914,7 +914,7 @@ func (client BlockstorageClient) createVolumeBackup(ctx context.Context, request // For more information about Oracle defined backup policies and user defined backup policies, // see Policy-Based Backups (https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/schedulingvolumebackups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVolumeBackupPolicy.go.html to see an example of how to use CreateVolumeBackupPolicy API. func (client BlockstorageClient) CreateVolumeBackupPolicy(ctx context.Context, request CreateVolumeBackupPolicyRequest) (response CreateVolumeBackupPolicyResponse, err error) { @@ -978,7 +978,7 @@ func (client BlockstorageClient) createVolumeBackupPolicy(ctx context.Context, r // only have one backup policy assigned to it. If this operation is used for a volume that already // has a different backup policy assigned, the prior backup policy will be silently unassigned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVolumeBackupPolicyAssignment.go.html to see an example of how to use CreateVolumeBackupPolicyAssignment API. func (client BlockstorageClient) CreateVolumeBackupPolicyAssignment(ctx context.Context, request CreateVolumeBackupPolicyAssignmentRequest) (response CreateVolumeBackupPolicyAssignmentResponse, err error) { @@ -1040,7 +1040,7 @@ func (client BlockstorageClient) createVolumeBackupPolicyAssignment(ctx context. // description. It does not have to be unique, and you can change it. Avoid entering confidential information. // For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVolumeGroup.go.html to see an example of how to use CreateVolumeGroup API. func (client BlockstorageClient) CreateVolumeGroup(ctx context.Context, request CreateVolumeGroupRequest) (response CreateVolumeGroupResponse, err error) { @@ -1103,7 +1103,7 @@ func (client BlockstorageClient) createVolumeGroup(ctx context.Context, request // CreateVolumeGroupBackup Creates a new backup volume group of the specified volume group. // For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVolumeGroupBackup.go.html to see an example of how to use CreateVolumeGroupBackup API. func (client BlockstorageClient) CreateVolumeGroupBackup(ctx context.Context, request CreateVolumeGroupBackupRequest) (response CreateVolumeGroupBackupResponse, err error) { @@ -1168,7 +1168,7 @@ func (client BlockstorageClient) createVolumeGroupBackup(ctx context.Context, re // Disconnecting From a Boot Volume (https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/deletingbootvolume.htm). // **Warning:** All data on the boot volume will be permanently lost when the boot volume is deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteBootVolume.go.html to see an example of how to use DeleteBootVolume API. func (client BlockstorageClient) DeleteBootVolume(ctx context.Context, request DeleteBootVolumeRequest) (response DeleteBootVolumeResponse, err error) { @@ -1225,7 +1225,7 @@ func (client BlockstorageClient) deleteBootVolume(ctx context.Context, request c // DeleteBootVolumeBackup Deletes a boot volume backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteBootVolumeBackup.go.html to see an example of how to use DeleteBootVolumeBackup API. func (client BlockstorageClient) DeleteBootVolumeBackup(ctx context.Context, request DeleteBootVolumeBackupRequest) (response DeleteBootVolumeBackupResponse, err error) { @@ -1282,7 +1282,7 @@ func (client BlockstorageClient) deleteBootVolumeBackup(ctx context.Context, req // DeleteBootVolumeKmsKey Removes the specified boot volume's assigned Vault Service encryption key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteBootVolumeKmsKey.go.html to see an example of how to use DeleteBootVolumeKmsKey API. func (client BlockstorageClient) DeleteBootVolumeKmsKey(ctx context.Context, request DeleteBootVolumeKmsKeyRequest) (response DeleteBootVolumeKmsKeyResponse, err error) { @@ -1342,7 +1342,7 @@ func (client BlockstorageClient) deleteBootVolumeKmsKey(ctx context.Context, req // Disconnecting From a Volume (https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/disconnectingfromavolume.htm). // **Warning:** All data on the volume will be permanently lost when the volume is deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVolume.go.html to see an example of how to use DeleteVolume API. func (client BlockstorageClient) DeleteVolume(ctx context.Context, request DeleteVolumeRequest) (response DeleteVolumeResponse, err error) { @@ -1399,7 +1399,7 @@ func (client BlockstorageClient) deleteVolume(ctx context.Context, request commo // DeleteVolumeBackup Deletes a volume backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVolumeBackup.go.html to see an example of how to use DeleteVolumeBackup API. func (client BlockstorageClient) DeleteVolumeBackup(ctx context.Context, request DeleteVolumeBackupRequest) (response DeleteVolumeBackupResponse, err error) { @@ -1455,11 +1455,12 @@ func (client BlockstorageClient) deleteVolumeBackup(ctx context.Context, request } // DeleteVolumeBackupPolicy Deletes a user defined backup policy. -// For more information about user defined backup policies, -// see Policy-Based Backups (https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/schedulingvolumebackups.htm#UserDefinedBackupPolicies). -// Avoid entering confidential information. // -// See also +// For more information about user defined backup policies, +// see Policy-Based Backups (https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/schedulingvolumebackups.htm#UserDefinedBackupPolicies). +// Avoid entering confidential information. +// +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVolumeBackupPolicy.go.html to see an example of how to use DeleteVolumeBackupPolicy API. func (client BlockstorageClient) DeleteVolumeBackupPolicy(ctx context.Context, request DeleteVolumeBackupPolicyRequest) (response DeleteVolumeBackupPolicyResponse, err error) { @@ -1516,7 +1517,7 @@ func (client BlockstorageClient) deleteVolumeBackupPolicy(ctx context.Context, r // DeleteVolumeBackupPolicyAssignment Deletes a volume backup policy assignment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVolumeBackupPolicyAssignment.go.html to see an example of how to use DeleteVolumeBackupPolicyAssignment API. func (client BlockstorageClient) DeleteVolumeBackupPolicyAssignment(ctx context.Context, request DeleteVolumeBackupPolicyAssignmentRequest) (response DeleteVolumeBackupPolicyAssignmentResponse, err error) { @@ -1574,7 +1575,7 @@ func (client BlockstorageClient) deleteVolumeBackupPolicyAssignment(ctx context. // DeleteVolumeGroup Deletes the specified volume group. Individual volumes are not deleted, only the volume group is deleted. // For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVolumeGroup.go.html to see an example of how to use DeleteVolumeGroup API. func (client BlockstorageClient) DeleteVolumeGroup(ctx context.Context, request DeleteVolumeGroupRequest) (response DeleteVolumeGroupResponse, err error) { @@ -1632,7 +1633,7 @@ func (client BlockstorageClient) deleteVolumeGroup(ctx context.Context, request // DeleteVolumeGroupBackup Deletes a volume group backup. This operation deletes all the backups in // the volume group. For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVolumeGroupBackup.go.html to see an example of how to use DeleteVolumeGroupBackup API. func (client BlockstorageClient) DeleteVolumeGroupBackup(ctx context.Context, request DeleteVolumeGroupBackupRequest) (response DeleteVolumeGroupBackupResponse, err error) { @@ -1689,7 +1690,7 @@ func (client BlockstorageClient) deleteVolumeGroupBackup(ctx context.Context, re // DeleteVolumeKmsKey Removes the specified volume's assigned Vault service encryption key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVolumeKmsKey.go.html to see an example of how to use DeleteVolumeKmsKey API. func (client BlockstorageClient) DeleteVolumeKmsKey(ctx context.Context, request DeleteVolumeKmsKeyRequest) (response DeleteVolumeKmsKeyResponse, err error) { @@ -1746,7 +1747,7 @@ func (client BlockstorageClient) deleteVolumeKmsKey(ctx context.Context, request // GetBlockVolumeReplica Gets information for the specified block volume replica. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetBlockVolumeReplica.go.html to see an example of how to use GetBlockVolumeReplica API. func (client BlockstorageClient) GetBlockVolumeReplica(ctx context.Context, request GetBlockVolumeReplicaRequest) (response GetBlockVolumeReplicaResponse, err error) { @@ -1803,7 +1804,7 @@ func (client BlockstorageClient) getBlockVolumeReplica(ctx context.Context, requ // GetBootVolume Gets information for the specified boot volume. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetBootVolume.go.html to see an example of how to use GetBootVolume API. func (client BlockstorageClient) GetBootVolume(ctx context.Context, request GetBootVolumeRequest) (response GetBootVolumeResponse, err error) { @@ -1860,7 +1861,7 @@ func (client BlockstorageClient) getBootVolume(ctx context.Context, request comm // GetBootVolumeBackup Gets information for the specified boot volume backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetBootVolumeBackup.go.html to see an example of how to use GetBootVolumeBackup API. func (client BlockstorageClient) GetBootVolumeBackup(ctx context.Context, request GetBootVolumeBackupRequest) (response GetBootVolumeBackupResponse, err error) { @@ -1917,7 +1918,7 @@ func (client BlockstorageClient) getBootVolumeBackup(ctx context.Context, reques // GetBootVolumeKmsKey Gets the Vault service encryption key assigned to the specified boot volume. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetBootVolumeKmsKey.go.html to see an example of how to use GetBootVolumeKmsKey API. func (client BlockstorageClient) GetBootVolumeKmsKey(ctx context.Context, request GetBootVolumeKmsKeyRequest) (response GetBootVolumeKmsKeyResponse, err error) { @@ -1974,7 +1975,7 @@ func (client BlockstorageClient) getBootVolumeKmsKey(ctx context.Context, reques // GetBootVolumeReplica Gets information for the specified boot volume replica. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetBootVolumeReplica.go.html to see an example of how to use GetBootVolumeReplica API. func (client BlockstorageClient) GetBootVolumeReplica(ctx context.Context, request GetBootVolumeReplicaRequest) (response GetBootVolumeReplicaResponse, err error) { @@ -2031,7 +2032,7 @@ func (client BlockstorageClient) getBootVolumeReplica(ctx context.Context, reque // GetVolume Gets information for the specified volume. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolume.go.html to see an example of how to use GetVolume API. func (client BlockstorageClient) GetVolume(ctx context.Context, request GetVolumeRequest) (response GetVolumeResponse, err error) { @@ -2088,7 +2089,7 @@ func (client BlockstorageClient) getVolume(ctx context.Context, request common.O // GetVolumeBackup Gets information for the specified volume backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolumeBackup.go.html to see an example of how to use GetVolumeBackup API. func (client BlockstorageClient) GetVolumeBackup(ctx context.Context, request GetVolumeBackupRequest) (response GetVolumeBackupResponse, err error) { @@ -2145,7 +2146,7 @@ func (client BlockstorageClient) getVolumeBackup(ctx context.Context, request co // GetVolumeBackupPolicy Gets information for the specified volume backup policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolumeBackupPolicy.go.html to see an example of how to use GetVolumeBackupPolicy API. func (client BlockstorageClient) GetVolumeBackupPolicy(ctx context.Context, request GetVolumeBackupPolicyRequest) (response GetVolumeBackupPolicyResponse, err error) { @@ -2204,7 +2205,7 @@ func (client BlockstorageClient) getVolumeBackupPolicy(ctx context.Context, requ // `assetId` query parameter is required, and the returned list will contain at most // one item, since volume can only have one volume backup policy assigned at a time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolumeBackupPolicyAssetAssignment.go.html to see an example of how to use GetVolumeBackupPolicyAssetAssignment API. func (client BlockstorageClient) GetVolumeBackupPolicyAssetAssignment(ctx context.Context, request GetVolumeBackupPolicyAssetAssignmentRequest) (response GetVolumeBackupPolicyAssetAssignmentResponse, err error) { @@ -2261,7 +2262,7 @@ func (client BlockstorageClient) getVolumeBackupPolicyAssetAssignment(ctx contex // GetVolumeBackupPolicyAssignment Gets information for the specified volume backup policy assignment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolumeBackupPolicyAssignment.go.html to see an example of how to use GetVolumeBackupPolicyAssignment API. func (client BlockstorageClient) GetVolumeBackupPolicyAssignment(ctx context.Context, request GetVolumeBackupPolicyAssignmentRequest) (response GetVolumeBackupPolicyAssignmentResponse, err error) { @@ -2318,7 +2319,7 @@ func (client BlockstorageClient) getVolumeBackupPolicyAssignment(ctx context.Con // GetVolumeGroup Gets information for the specified volume group. For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolumeGroup.go.html to see an example of how to use GetVolumeGroup API. func (client BlockstorageClient) GetVolumeGroup(ctx context.Context, request GetVolumeGroupRequest) (response GetVolumeGroupResponse, err error) { @@ -2375,7 +2376,7 @@ func (client BlockstorageClient) getVolumeGroup(ctx context.Context, request com // GetVolumeGroupBackup Gets information for the specified volume group backup. For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolumeGroupBackup.go.html to see an example of how to use GetVolumeGroupBackup API. func (client BlockstorageClient) GetVolumeGroupBackup(ctx context.Context, request GetVolumeGroupBackupRequest) (response GetVolumeGroupBackupResponse, err error) { @@ -2432,7 +2433,7 @@ func (client BlockstorageClient) getVolumeGroupBackup(ctx context.Context, reque // GetVolumeGroupReplica Gets information for the specified volume group replica. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolumeGroupReplica.go.html to see an example of how to use GetVolumeGroupReplica API. func (client BlockstorageClient) GetVolumeGroupReplica(ctx context.Context, request GetVolumeGroupReplicaRequest) (response GetVolumeGroupReplicaResponse, err error) { @@ -2489,7 +2490,7 @@ func (client BlockstorageClient) getVolumeGroupReplica(ctx context.Context, requ // GetVolumeKmsKey Gets the Vault service encryption key assigned to the specified volume. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolumeKmsKey.go.html to see an example of how to use GetVolumeKmsKey API. func (client BlockstorageClient) GetVolumeKmsKey(ctx context.Context, request GetVolumeKmsKeyRequest) (response GetVolumeKmsKeyResponse, err error) { @@ -2546,7 +2547,7 @@ func (client BlockstorageClient) getVolumeKmsKey(ctx context.Context, request co // ListBlockVolumeReplicas Lists the block volume replicas in the specified compartment and availability domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListBlockVolumeReplicas.go.html to see an example of how to use ListBlockVolumeReplicas API. func (client BlockstorageClient) ListBlockVolumeReplicas(ctx context.Context, request ListBlockVolumeReplicasRequest) (response ListBlockVolumeReplicasResponse, err error) { @@ -2603,7 +2604,7 @@ func (client BlockstorageClient) listBlockVolumeReplicas(ctx context.Context, re // ListBootVolumeBackups Lists the boot volume backups in the specified compartment. You can filter the results by boot volume. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListBootVolumeBackups.go.html to see an example of how to use ListBootVolumeBackups API. func (client BlockstorageClient) ListBootVolumeBackups(ctx context.Context, request ListBootVolumeBackupsRequest) (response ListBootVolumeBackupsResponse, err error) { @@ -2660,7 +2661,7 @@ func (client BlockstorageClient) listBootVolumeBackups(ctx context.Context, requ // ListBootVolumeReplicas Lists the boot volume replicas in the specified compartment and availability domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListBootVolumeReplicas.go.html to see an example of how to use ListBootVolumeReplicas API. func (client BlockstorageClient) ListBootVolumeReplicas(ctx context.Context, request ListBootVolumeReplicasRequest) (response ListBootVolumeReplicasResponse, err error) { @@ -2717,7 +2718,7 @@ func (client BlockstorageClient) listBootVolumeReplicas(ctx context.Context, req // ListBootVolumes Lists the boot volumes in the specified compartment and availability domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListBootVolumes.go.html to see an example of how to use ListBootVolumes API. func (client BlockstorageClient) ListBootVolumes(ctx context.Context, request ListBootVolumesRequest) (response ListBootVolumesResponse, err error) { @@ -2776,7 +2777,7 @@ func (client BlockstorageClient) listBootVolumes(ctx context.Context, request co // For more information about Oracle defined backup policies and user defined backup policies, // see Policy-Based Backups (https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/schedulingvolumebackups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVolumeBackupPolicies.go.html to see an example of how to use ListVolumeBackupPolicies API. func (client BlockstorageClient) ListVolumeBackupPolicies(ctx context.Context, request ListVolumeBackupPoliciesRequest) (response ListVolumeBackupPoliciesResponse, err error) { @@ -2833,7 +2834,7 @@ func (client BlockstorageClient) listVolumeBackupPolicies(ctx context.Context, r // ListVolumeBackups Lists the volume backups in the specified compartment. You can filter the results by volume. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVolumeBackups.go.html to see an example of how to use ListVolumeBackups API. func (client BlockstorageClient) ListVolumeBackups(ctx context.Context, request ListVolumeBackupsRequest) (response ListVolumeBackupsResponse, err error) { @@ -2891,7 +2892,7 @@ func (client BlockstorageClient) listVolumeBackups(ctx context.Context, request // ListVolumeGroupBackups Lists the volume group backups in the specified compartment. You can filter the results by volume group. // For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVolumeGroupBackups.go.html to see an example of how to use ListVolumeGroupBackups API. func (client BlockstorageClient) ListVolumeGroupBackups(ctx context.Context, request ListVolumeGroupBackupsRequest) (response ListVolumeGroupBackupsResponse, err error) { @@ -2949,7 +2950,7 @@ func (client BlockstorageClient) listVolumeGroupBackups(ctx context.Context, req // ListVolumeGroupReplicas Lists the volume group replicas in the specified compartment. You can filter the results by volume group. // For more information, see Volume Group Replication (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroupreplication.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVolumeGroupReplicas.go.html to see an example of how to use ListVolumeGroupReplicas API. func (client BlockstorageClient) ListVolumeGroupReplicas(ctx context.Context, request ListVolumeGroupReplicasRequest) (response ListVolumeGroupReplicasResponse, err error) { @@ -3007,7 +3008,7 @@ func (client BlockstorageClient) listVolumeGroupReplicas(ctx context.Context, re // ListVolumeGroups Lists the volume groups in the specified compartment and availability domain. // For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVolumeGroups.go.html to see an example of how to use ListVolumeGroups API. func (client BlockstorageClient) ListVolumeGroups(ctx context.Context, request ListVolumeGroupsRequest) (response ListVolumeGroupsResponse, err error) { @@ -3064,7 +3065,7 @@ func (client BlockstorageClient) listVolumeGroups(ctx context.Context, request c // ListVolumes Lists the volumes in the specified compartment and availability domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVolumes.go.html to see an example of how to use ListVolumes API. func (client BlockstorageClient) ListVolumes(ctx context.Context, request ListVolumesRequest) (response ListVolumesResponse, err error) { @@ -3121,7 +3122,7 @@ func (client BlockstorageClient) listVolumes(ctx context.Context, request common // UpdateBootVolume Updates the specified boot volume's display name, defined tags, and free-form tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateBootVolume.go.html to see an example of how to use UpdateBootVolume API. func (client BlockstorageClient) UpdateBootVolume(ctx context.Context, request UpdateBootVolumeRequest) (response UpdateBootVolumeResponse, err error) { @@ -3179,7 +3180,7 @@ func (client BlockstorageClient) updateBootVolume(ctx context.Context, request c // UpdateBootVolumeBackup Updates the display name for the specified boot volume backup. // Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateBootVolumeBackup.go.html to see an example of how to use UpdateBootVolumeBackup API. func (client BlockstorageClient) UpdateBootVolumeBackup(ctx context.Context, request UpdateBootVolumeBackupRequest) (response UpdateBootVolumeBackupResponse, err error) { @@ -3231,7 +3232,7 @@ func (client BlockstorageClient) updateBootVolumeBackup(ctx context.Context, req // UpdateBootVolumeKmsKey Updates the specified volume with a new Vault service master encryption key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateBootVolumeKmsKey.go.html to see an example of how to use UpdateBootVolumeKmsKey API. func (client BlockstorageClient) UpdateBootVolumeKmsKey(ctx context.Context, request UpdateBootVolumeKmsKeyRequest) (response UpdateBootVolumeKmsKeyResponse, err error) { @@ -3289,7 +3290,7 @@ func (client BlockstorageClient) updateBootVolumeKmsKey(ctx context.Context, req // UpdateVolume Updates the specified volume's display name. // Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVolume.go.html to see an example of how to use UpdateVolume API. func (client BlockstorageClient) UpdateVolume(ctx context.Context, request UpdateVolumeRequest) (response UpdateVolumeResponse, err error) { @@ -3347,7 +3348,7 @@ func (client BlockstorageClient) updateVolume(ctx context.Context, request commo // UpdateVolumeBackup Updates the display name for the specified volume backup. // Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVolumeBackup.go.html to see an example of how to use UpdateVolumeBackup API. func (client BlockstorageClient) UpdateVolumeBackup(ctx context.Context, request UpdateVolumeBackupRequest) (response UpdateVolumeBackupResponse, err error) { @@ -3398,11 +3399,12 @@ func (client BlockstorageClient) updateVolumeBackup(ctx context.Context, request } // UpdateVolumeBackupPolicy Updates a user defined backup policy. -// For more information about user defined backup policies, -// see Policy-Based Backups (https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/schedulingvolumebackups.htm#UserDefinedBackupPolicies). -// Avoid entering confidential information. // -// See also +// For more information about user defined backup policies, +// see Policy-Based Backups (https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/schedulingvolumebackups.htm#UserDefinedBackupPolicies). +// Avoid entering confidential information. +// +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVolumeBackupPolicy.go.html to see an example of how to use UpdateVolumeBackupPolicy API. func (client BlockstorageClient) UpdateVolumeBackupPolicy(ctx context.Context, request UpdateVolumeBackupPolicyRequest) (response UpdateVolumeBackupPolicyResponse, err error) { @@ -3468,7 +3470,7 @@ func (client BlockstorageClient) updateVolumeBackupPolicy(ctx context.Context, r // Avoid entering confidential information. // For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVolumeGroup.go.html to see an example of how to use UpdateVolumeGroup API. func (client BlockstorageClient) UpdateVolumeGroup(ctx context.Context, request UpdateVolumeGroupRequest) (response UpdateVolumeGroupResponse, err error) { @@ -3525,7 +3527,7 @@ func (client BlockstorageClient) updateVolumeGroup(ctx context.Context, request // UpdateVolumeGroupBackup Updates the display name for the specified volume group backup. For more information, see Volume Groups (https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/volumegroups.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVolumeGroupBackup.go.html to see an example of how to use UpdateVolumeGroupBackup API. func (client BlockstorageClient) UpdateVolumeGroupBackup(ctx context.Context, request UpdateVolumeGroupBackupRequest) (response UpdateVolumeGroupBackupResponse, err error) { @@ -3577,7 +3579,7 @@ func (client BlockstorageClient) updateVolumeGroupBackup(ctx context.Context, re // UpdateVolumeKmsKey Updates the specified volume with a new Key Management master encryption key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVolumeKmsKey.go.html to see an example of how to use UpdateVolumeKmsKey API. func (client BlockstorageClient) UpdateVolumeKmsKey(ctx context.Context, request UpdateVolumeKmsKeyRequest) (response UpdateVolumeKmsKeyResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/core_compute_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/core_compute_client.go index 3451c7e7ee4..54cc77b0172 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/core_compute_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/core_compute_client.go @@ -97,7 +97,7 @@ func (client *ComputeClient) ConfigurationProvider() *common.ConfigurationProvid // AcceptShieldedIntegrityPolicy Accept the changes to the PCR values in the measured boot report. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AcceptShieldedIntegrityPolicy.go.html to see an example of how to use AcceptShieldedIntegrityPolicy API. func (client ComputeClient) AcceptShieldedIntegrityPolicy(ctx context.Context, request AcceptShieldedIntegrityPolicyRequest) (response AcceptShieldedIntegrityPolicyResponse, err error) { @@ -159,7 +159,7 @@ func (client ComputeClient) acceptShieldedIntegrityPolicy(ctx context.Context, r // AddImageShapeCompatibilityEntry Adds a shape to the compatible shapes list for the image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AddImageShapeCompatibilityEntry.go.html to see an example of how to use AddImageShapeCompatibilityEntry API. func (client ComputeClient) AddImageShapeCompatibilityEntry(ctx context.Context, request AddImageShapeCompatibilityEntryRequest) (response AddImageShapeCompatibilityEntryResponse, err error) { @@ -216,7 +216,7 @@ func (client ComputeClient) addImageShapeCompatibilityEntry(ctx context.Context, // AttachBootVolume Attaches the specified boot volume to the specified instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AttachBootVolume.go.html to see an example of how to use AttachBootVolume API. func (client ComputeClient) AttachBootVolume(ctx context.Context, request AttachBootVolumeRequest) (response AttachBootVolumeResponse, err error) { @@ -280,7 +280,7 @@ func (client ComputeClient) attachBootVolume(ctx context.Context, request common // For more information about secondary VNICs, see // Virtual Network Interface Cards (VNICs) (https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AttachVnic.go.html to see an example of how to use AttachVnic API. func (client ComputeClient) AttachVnic(ctx context.Context, request AttachVnicRequest) (response AttachVnicResponse, err error) { @@ -342,7 +342,7 @@ func (client ComputeClient) attachVnic(ctx context.Context, request common.OCIRe // AttachVolume Attaches the specified storage volume to the specified instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AttachVolume.go.html to see an example of how to use AttachVolume API. func (client ComputeClient) AttachVolume(ctx context.Context, request AttachVolumeRequest) (response AttachVolumeResponse, err error) { @@ -418,7 +418,7 @@ func (client ComputeClient) attachVolume(ctx context.Context, request common.OCI // 4. Optionally, use `DeleteConsoleHistory` to delete the console history metadata // and the console history data. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CaptureConsoleHistory.go.html to see an example of how to use CaptureConsoleHistory API. func (client ComputeClient) CaptureConsoleHistory(ctx context.Context, request CaptureConsoleHistoryRequest) (response CaptureConsoleHistoryResponse, err error) { @@ -482,7 +482,7 @@ func (client ComputeClient) captureConsoleHistory(ctx context.Context, request c // moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeComputeCapacityReservationCompartment.go.html to see an example of how to use ChangeComputeCapacityReservationCompartment API. func (client ComputeClient) ChangeComputeCapacityReservationCompartment(ctx context.Context, request ChangeComputeCapacityReservationCompartmentRequest) (response ChangeComputeCapacityReservationCompartmentResponse, err error) { @@ -547,7 +547,7 @@ func (client ComputeClient) changeComputeCapacityReservationCompartment(ctx cont // For information about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeComputeClusterCompartment.go.html to see an example of how to use ChangeComputeClusterCompartment API. func (client ComputeClient) ChangeComputeClusterCompartment(ctx context.Context, request ChangeComputeClusterCompartmentRequest) (response ChangeComputeClusterCompartmentResponse, err error) { @@ -609,9 +609,10 @@ func (client ComputeClient) changeComputeClusterCompartment(ctx context.Context, // ChangeComputeImageCapabilitySchemaCompartment Moves a compute image capability schema into a different compartment within the same tenancy. // For information about moving resources between compartments, see -// Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). +// +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeComputeImageCapabilitySchemaCompartment.go.html to see an example of how to use ChangeComputeImageCapabilitySchemaCompartment API. // A default retry strategy applies to this operation ChangeComputeImageCapabilitySchemaCompartment() @@ -674,7 +675,7 @@ func (client ComputeClient) changeComputeImageCapabilitySchemaCompartment(ctx co // ChangeDedicatedVmHostCompartment Moves a dedicated virtual machine host from one compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeDedicatedVmHostCompartment.go.html to see an example of how to use ChangeDedicatedVmHostCompartment API. func (client ComputeClient) ChangeDedicatedVmHostCompartment(ctx context.Context, request ChangeDedicatedVmHostCompartmentRequest) (response ChangeDedicatedVmHostCompartmentResponse, err error) { @@ -738,7 +739,7 @@ func (client ComputeClient) changeDedicatedVmHostCompartment(ctx context.Context // resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeImageCompartment.go.html to see an example of how to use ChangeImageCompartment API. // A default retry strategy applies to this operation ChangeImageCompartment() @@ -805,7 +806,7 @@ func (client ComputeClient) changeImageCompartment(ctx context.Context, request // When you move an instance to a different compartment, associated resources such as boot volumes and VNICs // are not moved. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeInstanceCompartment.go.html to see an example of how to use ChangeInstanceCompartment API. func (client ComputeClient) ChangeInstanceCompartment(ctx context.Context, request ChangeInstanceCompartmentRequest) (response ChangeInstanceCompartmentResponse, err error) { @@ -867,7 +868,7 @@ func (client ComputeClient) changeInstanceCompartment(ctx context.Context, reque // CreateAppCatalogSubscription Create a subscription for listing resource version for a compartment. It will take some time to propagate to all regions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateAppCatalogSubscription.go.html to see an example of how to use CreateAppCatalogSubscription API. // A default retry strategy applies to this operation CreateAppCatalogSubscription() @@ -934,7 +935,7 @@ func (client ComputeClient) createAppCatalogSubscription(ctx context.Context, re // Use the capacity report to determine whether sufficient capacity is available for a shape before // you create an instance or change the shape of an instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateComputeCapacityReport.go.html to see an example of how to use CreateComputeCapacityReport API. // A default retry strategy applies to this operation CreateComputeCapacityReport() @@ -1001,7 +1002,7 @@ func (client ComputeClient) createComputeCapacityReport(ctx context.Context, req // and you won't get out of capacity errors. // For more information, see Reserved Capacity (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/reserve-capacity.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateComputeCapacityReservation.go.html to see an example of how to use CreateComputeCapacityReservation API. func (client ComputeClient) CreateComputeCapacityReservation(ctx context.Context, request CreateComputeCapacityReservationRequest) (response CreateComputeCapacityReservationResponse, err error) { @@ -1072,7 +1073,7 @@ func (client ComputeClient) createComputeCapacityReservation(ctx context.Context // create a cluster network that uses instance pools by using the // CreateClusterNetwork operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateComputeCluster.go.html to see an example of how to use CreateComputeCluster API. func (client ComputeClient) CreateComputeCluster(ctx context.Context, request CreateComputeClusterRequest) (response CreateComputeClusterResponse, err error) { @@ -1134,7 +1135,7 @@ func (client ComputeClient) createComputeCluster(ctx context.Context, request co // CreateComputeImageCapabilitySchema Creates compute image capability schema. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateComputeImageCapabilitySchema.go.html to see an example of how to use CreateComputeImageCapabilitySchema API. // A default retry strategy applies to this operation CreateComputeImageCapabilitySchema() @@ -1200,7 +1201,7 @@ func (client ComputeClient) createComputeImageCapabilitySchema(ctx context.Conte // that are a single tenant and not shared with other customers. // For more information, see Dedicated Virtual Machine Hosts (https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/dedicatedvmhosts.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateDedicatedVmHost.go.html to see an example of how to use CreateDedicatedVmHost API. func (client ComputeClient) CreateDedicatedVmHost(ctx context.Context, request CreateDedicatedVmHostRequest) (response CreateDedicatedVmHostResponse, err error) { @@ -1278,7 +1279,7 @@ func (client ComputeClient) createDedicatedVmHost(ctx context.Context, request c // It does not have to be unique, and you can change it. See UpdateImage. // Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateImage.go.html to see an example of how to use CreateImage API. // A default retry strategy applies to this operation CreateImage() @@ -1344,7 +1345,7 @@ func (client ComputeClient) createImage(ctx context.Context, request common.OCIR // you connect to the console using SSH. // For more information about instance console connections, see Troubleshooting Instances Using Instance Console Connections (https://docs.cloud.oracle.com/iaas/Content/Compute/References/serialconsole.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateInstanceConsoleConnection.go.html to see an example of how to use CreateInstanceConsoleConnection API. func (client ComputeClient) CreateInstanceConsoleConnection(ctx context.Context, request CreateInstanceConsoleConnectionRequest) (response CreateInstanceConsoleConnectionResponse, err error) { @@ -1406,7 +1407,7 @@ func (client ComputeClient) createInstanceConsoleConnection(ctx context.Context, // DeleteAppCatalogSubscription Delete a subscription for a listing resource version for a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteAppCatalogSubscription.go.html to see an example of how to use DeleteAppCatalogSubscription API. func (client ComputeClient) DeleteAppCatalogSubscription(ctx context.Context, request DeleteAppCatalogSubscriptionRequest) (response DeleteAppCatalogSubscriptionResponse, err error) { @@ -1463,7 +1464,7 @@ func (client ComputeClient) deleteAppCatalogSubscription(ctx context.Context, re // DeleteComputeCapacityReservation Deletes the specified compute capacity reservation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteComputeCapacityReservation.go.html to see an example of how to use DeleteComputeCapacityReservation API. func (client ComputeClient) DeleteComputeCapacityReservation(ctx context.Context, request DeleteComputeCapacityReservationRequest) (response DeleteComputeCapacityReservationResponse, err error) { @@ -1523,7 +1524,7 @@ func (client ComputeClient) deleteComputeCapacityReservation(ctx context.Context // Before you delete a compute cluster, first delete all instances in the cluster by using // the TerminateInstance operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteComputeCluster.go.html to see an example of how to use DeleteComputeCluster API. func (client ComputeClient) DeleteComputeCluster(ctx context.Context, request DeleteComputeClusterRequest) (response DeleteComputeClusterResponse, err error) { @@ -1580,7 +1581,7 @@ func (client ComputeClient) deleteComputeCluster(ctx context.Context, request co // DeleteComputeImageCapabilitySchema Deletes the specified Compute Image Capability Schema // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteComputeImageCapabilitySchema.go.html to see an example of how to use DeleteComputeImageCapabilitySchema API. func (client ComputeClient) DeleteComputeImageCapabilitySchema(ctx context.Context, request DeleteComputeImageCapabilitySchemaRequest) (response DeleteComputeImageCapabilitySchemaResponse, err error) { @@ -1637,7 +1638,7 @@ func (client ComputeClient) deleteComputeImageCapabilitySchema(ctx context.Conte // DeleteConsoleHistory Deletes the specified console history metadata and the console history data. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteConsoleHistory.go.html to see an example of how to use DeleteConsoleHistory API. func (client ComputeClient) DeleteConsoleHistory(ctx context.Context, request DeleteConsoleHistoryRequest) (response DeleteConsoleHistoryResponse, err error) { @@ -1696,7 +1697,7 @@ func (client ComputeClient) deleteConsoleHistory(ctx context.Context, request co // If any VM instances are assigned to the dedicated virtual machine host, // the delete operation will fail and the service will return a 409 response code. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteDedicatedVmHost.go.html to see an example of how to use DeleteDedicatedVmHost API. func (client ComputeClient) DeleteDedicatedVmHost(ctx context.Context, request DeleteDedicatedVmHostRequest) (response DeleteDedicatedVmHostResponse, err error) { @@ -1753,7 +1754,7 @@ func (client ComputeClient) deleteDedicatedVmHost(ctx context.Context, request c // DeleteImage Deletes an image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteImage.go.html to see an example of how to use DeleteImage API. func (client ComputeClient) DeleteImage(ctx context.Context, request DeleteImageRequest) (response DeleteImageResponse, err error) { @@ -1810,7 +1811,7 @@ func (client ComputeClient) deleteImage(ctx context.Context, request common.OCIR // DeleteInstanceConsoleConnection Deletes the specified instance console connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteInstanceConsoleConnection.go.html to see an example of how to use DeleteInstanceConsoleConnection API. func (client ComputeClient) DeleteInstanceConsoleConnection(ctx context.Context, request DeleteInstanceConsoleConnectionRequest) (response DeleteInstanceConsoleConnectionResponse, err error) { @@ -1869,7 +1870,7 @@ func (client ComputeClient) deleteInstanceConsoleConnection(ctx context.Context, // This is an asynchronous operation. The attachment's `lifecycleState` will change to DETACHING temporarily // until the attachment is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DetachBootVolume.go.html to see an example of how to use DetachBootVolume API. func (client ComputeClient) DetachBootVolume(ctx context.Context, request DetachBootVolumeRequest) (response DetachBootVolumeResponse, err error) { @@ -1934,7 +1935,7 @@ func (client ComputeClient) detachBootVolume(ctx context.Context, request common // deleting the VNIC causes that route rule to blackhole and the traffic // will be dropped. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DetachVnic.go.html to see an example of how to use DetachVnic API. func (client ComputeClient) DetachVnic(ctx context.Context, request DetachVnicRequest) (response DetachVnicResponse, err error) { @@ -1993,7 +1994,7 @@ func (client ComputeClient) detachVnic(ctx context.Context, request common.OCIRe // This is an asynchronous operation. The attachment's `lifecycleState` will change to DETACHING temporarily // until the attachment is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DetachVolume.go.html to see an example of how to use DetachVolume API. func (client ComputeClient) DetachVolume(ctx context.Context, request DetachVolumeRequest) (response DetachVolumeResponse, err error) { @@ -2056,7 +2057,7 @@ func (client ComputeClient) detachVolume(ctx context.Context, request common.OCI // See Object Storage URLs (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/imageimportexport.htm#URLs) and Using Pre-Authenticated Requests (https://docs.cloud.oracle.com/iaas/Content/Object/Tasks/usingpreauthenticatedrequests.htm) // for constructing URLs for image import/export. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ExportImage.go.html to see an example of how to use ExportImage API. // A default retry strategy applies to this operation ExportImage() @@ -2119,7 +2120,7 @@ func (client ComputeClient) exportImage(ctx context.Context, request common.OCIR // GetAppCatalogListing Gets the specified listing. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetAppCatalogListing.go.html to see an example of how to use GetAppCatalogListing API. // A default retry strategy applies to this operation GetAppCatalogListing() @@ -2177,7 +2178,7 @@ func (client ComputeClient) getAppCatalogListing(ctx context.Context, request co // GetAppCatalogListingAgreements Retrieves the agreements for a particular resource version of a listing. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetAppCatalogListingAgreements.go.html to see an example of how to use GetAppCatalogListingAgreements API. // A default retry strategy applies to this operation GetAppCatalogListingAgreements() @@ -2235,7 +2236,7 @@ func (client ComputeClient) getAppCatalogListingAgreements(ctx context.Context, // GetAppCatalogListingResourceVersion Gets the specified listing resource version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetAppCatalogListingResourceVersion.go.html to see an example of how to use GetAppCatalogListingResourceVersion API. // A default retry strategy applies to this operation GetAppCatalogListingResourceVersion() @@ -2293,7 +2294,7 @@ func (client ComputeClient) getAppCatalogListingResourceVersion(ctx context.Cont // GetBootVolumeAttachment Gets information about the specified boot volume attachment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetBootVolumeAttachment.go.html to see an example of how to use GetBootVolumeAttachment API. func (client ComputeClient) GetBootVolumeAttachment(ctx context.Context, request GetBootVolumeAttachmentRequest) (response GetBootVolumeAttachmentResponse, err error) { @@ -2350,7 +2351,7 @@ func (client ComputeClient) getBootVolumeAttachment(ctx context.Context, request // GetComputeCapacityReservation Gets information about the specified compute capacity reservation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetComputeCapacityReservation.go.html to see an example of how to use GetComputeCapacityReservation API. func (client ComputeClient) GetComputeCapacityReservation(ctx context.Context, request GetComputeCapacityReservationRequest) (response GetComputeCapacityReservationResponse, err error) { @@ -2408,7 +2409,7 @@ func (client ComputeClient) getComputeCapacityReservation(ctx context.Context, r // GetComputeCluster Gets information about a compute cluster. A compute cluster (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/compute-clusters.htm) // is a remote direct memory access (RDMA) network group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetComputeCluster.go.html to see an example of how to use GetComputeCluster API. func (client ComputeClient) GetComputeCluster(ctx context.Context, request GetComputeClusterRequest) (response GetComputeClusterResponse, err error) { @@ -2465,7 +2466,7 @@ func (client ComputeClient) getComputeCluster(ctx context.Context, request commo // GetComputeGlobalImageCapabilitySchema Gets the specified Compute Global Image Capability Schema // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetComputeGlobalImageCapabilitySchema.go.html to see an example of how to use GetComputeGlobalImageCapabilitySchema API. // A default retry strategy applies to this operation GetComputeGlobalImageCapabilitySchema() @@ -2523,7 +2524,7 @@ func (client ComputeClient) getComputeGlobalImageCapabilitySchema(ctx context.Co // GetComputeGlobalImageCapabilitySchemaVersion Gets the specified Compute Global Image Capability Schema Version // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetComputeGlobalImageCapabilitySchemaVersion.go.html to see an example of how to use GetComputeGlobalImageCapabilitySchemaVersion API. // A default retry strategy applies to this operation GetComputeGlobalImageCapabilitySchemaVersion() @@ -2581,7 +2582,7 @@ func (client ComputeClient) getComputeGlobalImageCapabilitySchemaVersion(ctx con // GetComputeImageCapabilitySchema Gets the specified Compute Image Capability Schema // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetComputeImageCapabilitySchema.go.html to see an example of how to use GetComputeImageCapabilitySchema API. // A default retry strategy applies to this operation GetComputeImageCapabilitySchema() @@ -2641,7 +2642,7 @@ func (client ComputeClient) getComputeImageCapabilitySchema(ctx context.Context, // See CaptureConsoleHistory // for details about using the console history operations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetConsoleHistory.go.html to see an example of how to use GetConsoleHistory API. func (client ComputeClient) GetConsoleHistory(ctx context.Context, request GetConsoleHistoryRequest) (response GetConsoleHistoryResponse, err error) { @@ -2700,7 +2701,7 @@ func (client ComputeClient) getConsoleHistory(ctx context.Context, request commo // See CaptureConsoleHistory // for details about using the console history operations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetConsoleHistoryContent.go.html to see an example of how to use GetConsoleHistoryContent API. func (client ComputeClient) GetConsoleHistoryContent(ctx context.Context, request GetConsoleHistoryContentRequest) (response GetConsoleHistoryContentResponse, err error) { @@ -2757,7 +2758,7 @@ func (client ComputeClient) getConsoleHistoryContent(ctx context.Context, reques // GetDedicatedVmHost Gets information about the specified dedicated virtual machine host. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetDedicatedVmHost.go.html to see an example of how to use GetDedicatedVmHost API. func (client ComputeClient) GetDedicatedVmHost(ctx context.Context, request GetDedicatedVmHostRequest) (response GetDedicatedVmHostResponse, err error) { @@ -2814,7 +2815,7 @@ func (client ComputeClient) getDedicatedVmHost(ctx context.Context, request comm // GetImage Gets the specified image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetImage.go.html to see an example of how to use GetImage API. // A default retry strategy applies to this operation GetImage() @@ -2872,7 +2873,7 @@ func (client ComputeClient) getImage(ctx context.Context, request common.OCIRequ // GetImageShapeCompatibilityEntry Retrieves an image shape compatibility entry. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetImageShapeCompatibilityEntry.go.html to see an example of how to use GetImageShapeCompatibilityEntry API. // A default retry strategy applies to this operation GetImageShapeCompatibilityEntry() @@ -2932,7 +2933,7 @@ func (client ComputeClient) getImageShapeCompatibilityEntry(ctx context.Context, // **Note:** To retrieve public and private IP addresses for an instance, use the ListVnicAttachments // operation to get the VNIC ID for the instance, and then call GetVnic with the VNIC ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetInstance.go.html to see an example of how to use GetInstance API. func (client ComputeClient) GetInstance(ctx context.Context, request GetInstanceRequest) (response GetInstanceResponse, err error) { @@ -2989,7 +2990,7 @@ func (client ComputeClient) getInstance(ctx context.Context, request common.OCIR // GetInstanceConsoleConnection Gets the specified instance console connection's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetInstanceConsoleConnection.go.html to see an example of how to use GetInstanceConsoleConnection API. func (client ComputeClient) GetInstanceConsoleConnection(ctx context.Context, request GetInstanceConsoleConnectionRequest) (response GetInstanceConsoleConnectionResponse, err error) { @@ -3047,7 +3048,7 @@ func (client ComputeClient) getInstanceConsoleConnection(ctx context.Context, re // GetInstanceMaintenanceReboot Gets the maximum possible date that a maintenance reboot can be extended. For more information, see // Infrastructure Maintenance (https://docs.cloud.oracle.com/iaas/Content/Compute/References/infrastructure-maintenance.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetInstanceMaintenanceReboot.go.html to see an example of how to use GetInstanceMaintenanceReboot API. func (client ComputeClient) GetInstanceMaintenanceReboot(ctx context.Context, request GetInstanceMaintenanceRebootRequest) (response GetInstanceMaintenanceRebootResponse, err error) { @@ -3104,7 +3105,7 @@ func (client ComputeClient) getInstanceMaintenanceReboot(ctx context.Context, re // GetMeasuredBootReport Gets the measured boot report for this shielded instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetMeasuredBootReport.go.html to see an example of how to use GetMeasuredBootReport API. func (client ComputeClient) GetMeasuredBootReport(ctx context.Context, request GetMeasuredBootReportRequest) (response GetMeasuredBootReportResponse, err error) { @@ -3161,7 +3162,7 @@ func (client ComputeClient) getMeasuredBootReport(ctx context.Context, request c // GetVnicAttachment Gets the information for the specified VNIC attachment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVnicAttachment.go.html to see an example of how to use GetVnicAttachment API. func (client ComputeClient) GetVnicAttachment(ctx context.Context, request GetVnicAttachmentRequest) (response GetVnicAttachmentResponse, err error) { @@ -3218,7 +3219,7 @@ func (client ComputeClient) getVnicAttachment(ctx context.Context, request commo // GetVolumeAttachment Gets information about the specified volume attachment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVolumeAttachment.go.html to see an example of how to use GetVolumeAttachment API. func (client ComputeClient) GetVolumeAttachment(ctx context.Context, request GetVolumeAttachmentRequest) (response GetVolumeAttachmentResponse, err error) { @@ -3276,7 +3277,7 @@ func (client ComputeClient) getVolumeAttachment(ctx context.Context, request com // GetWindowsInstanceInitialCredentials Gets the generated credentials for the instance. Only works for instances that require a password to log in, such as Windows. // For certain operating systems, users will be forced to change the initial credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetWindowsInstanceInitialCredentials.go.html to see an example of how to use GetWindowsInstanceInitialCredentials API. func (client ComputeClient) GetWindowsInstanceInitialCredentials(ctx context.Context, request GetWindowsInstanceInitialCredentialsRequest) (response GetWindowsInstanceInitialCredentialsResponse, err error) { @@ -3363,7 +3364,7 @@ func (client ComputeClient) getWindowsInstanceInitialCredentials(ctx context.Con // For more information about managing instance lifecycle states, see // Stopping and Starting an Instance (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/restartinginstance.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/InstanceAction.go.html to see an example of how to use InstanceAction API. func (client ComputeClient) InstanceAction(ctx context.Context, request InstanceActionRequest) (response InstanceActionResponse, err error) { @@ -3459,7 +3460,7 @@ func (client ComputeClient) instanceAction(ctx context.Context, request common.O // use the CreateComputeCapacityReport // operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/LaunchInstance.go.html to see an example of how to use LaunchInstance API. func (client ComputeClient) LaunchInstance(ctx context.Context, request LaunchInstanceRequest) (response LaunchInstanceResponse, err error) { @@ -3521,7 +3522,7 @@ func (client ComputeClient) launchInstance(ctx context.Context, request common.O // ListAppCatalogListingResourceVersions Gets all resource versions for a particular listing. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListAppCatalogListingResourceVersions.go.html to see an example of how to use ListAppCatalogListingResourceVersions API. // A default retry strategy applies to this operation ListAppCatalogListingResourceVersions() @@ -3579,7 +3580,7 @@ func (client ComputeClient) listAppCatalogListingResourceVersions(ctx context.Co // ListAppCatalogListings Lists the published listings. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListAppCatalogListings.go.html to see an example of how to use ListAppCatalogListings API. // A default retry strategy applies to this operation ListAppCatalogListings() @@ -3637,7 +3638,7 @@ func (client ComputeClient) listAppCatalogListings(ctx context.Context, request // ListAppCatalogSubscriptions Lists subscriptions for a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListAppCatalogSubscriptions.go.html to see an example of how to use ListAppCatalogSubscriptions API. // A default retry strategy applies to this operation ListAppCatalogSubscriptions() @@ -3696,7 +3697,7 @@ func (client ComputeClient) listAppCatalogSubscriptions(ctx context.Context, req // ListBootVolumeAttachments Lists the boot volume attachments in the specified compartment. You can filter the // list by specifying an instance OCID, boot volume OCID, or both. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListBootVolumeAttachments.go.html to see an example of how to use ListBootVolumeAttachments API. func (client ComputeClient) ListBootVolumeAttachments(ctx context.Context, request ListBootVolumeAttachmentsRequest) (response ListBootVolumeAttachmentsResponse, err error) { @@ -3753,7 +3754,7 @@ func (client ComputeClient) listBootVolumeAttachments(ctx context.Context, reque // ListComputeCapacityReservationInstanceShapes Lists the shapes that can be reserved within the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListComputeCapacityReservationInstanceShapes.go.html to see an example of how to use ListComputeCapacityReservationInstanceShapes API. func (client ComputeClient) ListComputeCapacityReservationInstanceShapes(ctx context.Context, request ListComputeCapacityReservationInstanceShapesRequest) (response ListComputeCapacityReservationInstanceShapesResponse, err error) { @@ -3810,7 +3811,7 @@ func (client ComputeClient) listComputeCapacityReservationInstanceShapes(ctx con // ListComputeCapacityReservationInstances Lists the instances launched under a capacity reservation. You can filter results by specifying criteria. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListComputeCapacityReservationInstances.go.html to see an example of how to use ListComputeCapacityReservationInstances API. func (client ComputeClient) ListComputeCapacityReservationInstances(ctx context.Context, request ListComputeCapacityReservationInstancesRequest) (response ListComputeCapacityReservationInstancesResponse, err error) { @@ -3869,7 +3870,7 @@ func (client ComputeClient) listComputeCapacityReservationInstances(ctx context. // You can limit the list by specifying a compute capacity reservation display name // (the list will include all the identically-named compute capacity reservations in the compartment). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListComputeCapacityReservations.go.html to see an example of how to use ListComputeCapacityReservations API. func (client ComputeClient) ListComputeCapacityReservations(ctx context.Context, request ListComputeCapacityReservationsRequest) (response ListComputeCapacityReservationsResponse, err error) { @@ -3927,7 +3928,7 @@ func (client ComputeClient) listComputeCapacityReservations(ctx context.Context, // ListComputeClusters Lists the compute clusters in the specified compartment. // A compute cluster (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/compute-clusters.htm) is a remote direct memory access (RDMA) network group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListComputeClusters.go.html to see an example of how to use ListComputeClusters API. func (client ComputeClient) ListComputeClusters(ctx context.Context, request ListComputeClustersRequest) (response ListComputeClustersResponse, err error) { @@ -3984,7 +3985,7 @@ func (client ComputeClient) listComputeClusters(ctx context.Context, request com // ListComputeGlobalImageCapabilitySchemaVersions Lists Compute Global Image Capability Schema versions in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListComputeGlobalImageCapabilitySchemaVersions.go.html to see an example of how to use ListComputeGlobalImageCapabilitySchemaVersions API. // A default retry strategy applies to this operation ListComputeGlobalImageCapabilitySchemaVersions() @@ -4042,7 +4043,7 @@ func (client ComputeClient) listComputeGlobalImageCapabilitySchemaVersions(ctx c // ListComputeGlobalImageCapabilitySchemas Lists Compute Global Image Capability Schema in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListComputeGlobalImageCapabilitySchemas.go.html to see an example of how to use ListComputeGlobalImageCapabilitySchemas API. // A default retry strategy applies to this operation ListComputeGlobalImageCapabilitySchemas() @@ -4100,7 +4101,7 @@ func (client ComputeClient) listComputeGlobalImageCapabilitySchemas(ctx context. // ListComputeImageCapabilitySchemas Lists Compute Image Capability Schema in the specified compartment. You can also query by a specific imageId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListComputeImageCapabilitySchemas.go.html to see an example of how to use ListComputeImageCapabilitySchemas API. // A default retry strategy applies to this operation ListComputeImageCapabilitySchemas() @@ -4158,7 +4159,7 @@ func (client ComputeClient) listComputeImageCapabilitySchemas(ctx context.Contex // ListConsoleHistories Lists the console history metadata for the specified compartment or instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListConsoleHistories.go.html to see an example of how to use ListConsoleHistories API. func (client ComputeClient) ListConsoleHistories(ctx context.Context, request ListConsoleHistoriesRequest) (response ListConsoleHistoriesResponse, err error) { @@ -4216,7 +4217,7 @@ func (client ComputeClient) listConsoleHistories(ctx context.Context, request co // ListDedicatedVmHostInstanceShapes Lists the shapes that can be used to launch a virtual machine instance on a dedicated virtual machine host within the specified compartment. // You can filter the list by compatibility with a specific dedicated virtual machine host shape. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDedicatedVmHostInstanceShapes.go.html to see an example of how to use ListDedicatedVmHostInstanceShapes API. func (client ComputeClient) ListDedicatedVmHostInstanceShapes(ctx context.Context, request ListDedicatedVmHostInstanceShapesRequest) (response ListDedicatedVmHostInstanceShapesResponse, err error) { @@ -4273,7 +4274,7 @@ func (client ComputeClient) listDedicatedVmHostInstanceShapes(ctx context.Contex // ListDedicatedVmHostInstances Returns the list of instances on the dedicated virtual machine hosts that match the specified criteria. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDedicatedVmHostInstances.go.html to see an example of how to use ListDedicatedVmHostInstances API. func (client ComputeClient) ListDedicatedVmHostInstances(ctx context.Context, request ListDedicatedVmHostInstancesRequest) (response ListDedicatedVmHostInstancesResponse, err error) { @@ -4330,7 +4331,7 @@ func (client ComputeClient) listDedicatedVmHostInstances(ctx context.Context, re // ListDedicatedVmHostShapes Lists the shapes that can be used to launch a dedicated virtual machine host within the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDedicatedVmHostShapes.go.html to see an example of how to use ListDedicatedVmHostShapes API. func (client ComputeClient) ListDedicatedVmHostShapes(ctx context.Context, request ListDedicatedVmHostShapesRequest) (response ListDedicatedVmHostShapesResponse, err error) { @@ -4389,7 +4390,7 @@ func (client ComputeClient) listDedicatedVmHostShapes(ctx context.Context, reque // You can limit the list by specifying a dedicated virtual machine host display name. The list will include all the identically-named // dedicated virtual machine hosts in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDedicatedVmHosts.go.html to see an example of how to use ListDedicatedVmHosts API. func (client ComputeClient) ListDedicatedVmHosts(ctx context.Context, request ListDedicatedVmHostsRequest) (response ListDedicatedVmHostsResponse, err error) { @@ -4446,7 +4447,7 @@ func (client ComputeClient) listDedicatedVmHosts(ctx context.Context, request co // ListImageShapeCompatibilityEntries Lists the compatible shapes for the specified image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListImageShapeCompatibilityEntries.go.html to see an example of how to use ListImageShapeCompatibilityEntries API. // A default retry strategy applies to this operation ListImageShapeCompatibilityEntries() @@ -4512,7 +4513,7 @@ func (client ComputeClient) listImageShapeCompatibilityEntries(ctx context.Conte // **Caution:** Platform images are refreshed regularly. When new images are released, older versions are replaced. // The image OCIDs remain available, but when the platform image is replaced, the image OCIDs are no longer returned as part of the platform image list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListImages.go.html to see an example of how to use ListImages API. // A default retry strategy applies to this operation ListImages() @@ -4571,7 +4572,7 @@ func (client ComputeClient) listImages(ctx context.Context, request common.OCIRe // ListInstanceConsoleConnections Lists the console connections for the specified compartment or instance. // For more information about instance console connections, see Troubleshooting Instances Using Instance Console Connections (https://docs.cloud.oracle.com/iaas/Content/Compute/References/serialconsole.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListInstanceConsoleConnections.go.html to see an example of how to use ListInstanceConsoleConnections API. func (client ComputeClient) ListInstanceConsoleConnections(ctx context.Context, request ListInstanceConsoleConnectionsRequest) (response ListInstanceConsoleConnectionsResponse, err error) { @@ -4628,7 +4629,7 @@ func (client ComputeClient) listInstanceConsoleConnections(ctx context.Context, // ListInstanceDevices Gets a list of all the devices for given instance. You can optionally filter results by device availability. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListInstanceDevices.go.html to see an example of how to use ListInstanceDevices API. func (client ComputeClient) ListInstanceDevices(ctx context.Context, request ListInstanceDevicesRequest) (response ListInstanceDevicesResponse, err error) { @@ -4689,7 +4690,7 @@ func (client ComputeClient) listInstanceDevices(ctx context.Context, request com // **Note:** To retrieve public and private IP addresses for an instance, use the ListVnicAttachments // operation to get the VNIC ID for the instance, and then call GetVnic with the VNIC ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListInstances.go.html to see an example of how to use ListInstances API. func (client ComputeClient) ListInstances(ctx context.Context, request ListInstancesRequest) (response ListInstancesResponse, err error) { @@ -4747,7 +4748,7 @@ func (client ComputeClient) listInstances(ctx context.Context, request common.OC // ListShapes Lists the shapes that can be used to launch an instance within the specified compartment. You can // filter the list by compatibility with a specific image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListShapes.go.html to see an example of how to use ListShapes API. func (client ComputeClient) ListShapes(ctx context.Context, request ListShapesRequest) (response ListShapesResponse, err error) { @@ -4806,7 +4807,7 @@ func (client ComputeClient) listShapes(ctx context.Context, request common.OCIRe // resides in the same compartment as the attached instance. The list can be // filtered by instance, VNIC, or availability domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVnicAttachments.go.html to see an example of how to use ListVnicAttachments API. func (client ComputeClient) ListVnicAttachments(ctx context.Context, request ListVnicAttachmentsRequest) (response ListVnicAttachmentsResponse, err error) { @@ -4882,7 +4883,7 @@ func (m *listvolumeattachment) UnmarshalPolymorphicJSON(data []byte) (interface{ // Currently, the only supported volume attachment type are IScsiVolumeAttachment and // ParavirtualizedVolumeAttachment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVolumeAttachments.go.html to see an example of how to use ListVolumeAttachments API. func (client ComputeClient) ListVolumeAttachments(ctx context.Context, request ListVolumeAttachmentsRequest) (response ListVolumeAttachmentsResponse, err error) { @@ -4939,7 +4940,7 @@ func (client ComputeClient) listVolumeAttachments(ctx context.Context, request c // RemoveImageShapeCompatibilityEntry Removes a shape from the compatible shapes list for the image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemoveImageShapeCompatibilityEntry.go.html to see an example of how to use RemoveImageShapeCompatibilityEntry API. func (client ComputeClient) RemoveImageShapeCompatibilityEntry(ctx context.Context, request RemoveImageShapeCompatibilityEntryRequest) (response RemoveImageShapeCompatibilityEntryResponse, err error) { @@ -5002,7 +5003,7 @@ func (client ComputeClient) removeImageShapeCompatibilityEntry(ctx context.Conte // until the instance is completely deleted. After the instance is deleted, the record remains visible in the list of instances // with the state TERMINATED for at least 12 hours, but no further action is needed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/TerminateInstance.go.html to see an example of how to use TerminateInstance API. func (client ComputeClient) TerminateInstance(ctx context.Context, request TerminateInstanceRequest) (response TerminateInstanceResponse, err error) { @@ -5061,7 +5062,7 @@ func (client ComputeClient) terminateInstance(ctx context.Context, request commo // Fields that are not provided in the request will not be updated. Capacity configurations that are not included will be deleted. // Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateComputeCapacityReservation.go.html to see an example of how to use UpdateComputeCapacityReservation API. func (client ComputeClient) UpdateComputeCapacityReservation(ctx context.Context, request UpdateComputeCapacityReservationRequest) (response UpdateComputeCapacityReservationResponse, err error) { @@ -5123,7 +5124,7 @@ func (client ComputeClient) updateComputeCapacityReservation(ctx context.Context // To delete instances from a compute cluster, use the TerminateInstance // operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateComputeCluster.go.html to see an example of how to use UpdateComputeCluster API. func (client ComputeClient) UpdateComputeCluster(ctx context.Context, request UpdateComputeClusterRequest) (response UpdateComputeClusterResponse, err error) { @@ -5185,7 +5186,7 @@ func (client ComputeClient) updateComputeCluster(ctx context.Context, request co // UpdateComputeImageCapabilitySchema Updates the specified Compute Image Capability Schema // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateComputeImageCapabilitySchema.go.html to see an example of how to use UpdateComputeImageCapabilitySchema API. func (client ComputeClient) UpdateComputeImageCapabilitySchema(ctx context.Context, request UpdateComputeImageCapabilitySchemaRequest) (response UpdateComputeImageCapabilitySchemaResponse, err error) { @@ -5242,7 +5243,7 @@ func (client ComputeClient) updateComputeImageCapabilitySchema(ctx context.Conte // UpdateConsoleHistory Updates the specified console history metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateConsoleHistory.go.html to see an example of how to use UpdateConsoleHistory API. func (client ComputeClient) UpdateConsoleHistory(ctx context.Context, request UpdateConsoleHistoryRequest) (response UpdateConsoleHistoryResponse, err error) { @@ -5300,7 +5301,7 @@ func (client ComputeClient) updateConsoleHistory(ctx context.Context, request co // UpdateDedicatedVmHost Updates the displayName, freeformTags, and definedTags attributes for the specified dedicated virtual machine host. // If an attribute value is not included, it will not be updated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateDedicatedVmHost.go.html to see an example of how to use UpdateDedicatedVmHost API. func (client ComputeClient) UpdateDedicatedVmHost(ctx context.Context, request UpdateDedicatedVmHostRequest) (response UpdateDedicatedVmHostResponse, err error) { @@ -5362,7 +5363,7 @@ func (client ComputeClient) updateDedicatedVmHost(ctx context.Context, request c // UpdateImage Updates the display name of the image. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateImage.go.html to see an example of how to use UpdateImage API. func (client ComputeClient) UpdateImage(ctx context.Context, request UpdateImageRequest) (response UpdateImageResponse, err error) { @@ -5428,7 +5429,7 @@ func (client ComputeClient) updateImage(ctx context.Context, request common.OCIR // up to a minute). // The OCID of the instance remains the same. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateInstance.go.html to see an example of how to use UpdateInstance API. func (client ComputeClient) UpdateInstance(ctx context.Context, request UpdateInstanceRequest) (response UpdateInstanceResponse, err error) { @@ -5490,7 +5491,7 @@ func (client ComputeClient) updateInstance(ctx context.Context, request common.O // UpdateInstanceConsoleConnection Updates the defined tags and free-form tags for the specified instance console connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateInstanceConsoleConnection.go.html to see an example of how to use UpdateInstanceConsoleConnection API. func (client ComputeClient) UpdateInstanceConsoleConnection(ctx context.Context, request UpdateInstanceConsoleConnectionRequest) (response UpdateInstanceConsoleConnectionResponse, err error) { @@ -5547,7 +5548,7 @@ func (client ComputeClient) updateInstanceConsoleConnection(ctx context.Context, // UpdateVolumeAttachment Updates information about the specified volume attachment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVolumeAttachment.go.html to see an example of how to use UpdateVolumeAttachment API. func (client ComputeClient) UpdateVolumeAttachment(ctx context.Context, request UpdateVolumeAttachmentRequest) (response UpdateVolumeAttachmentResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/core_computemanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/core_computemanagement_client.go index 04219c9a5e3..23929ad2f53 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/core_computemanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/core_computemanagement_client.go @@ -101,7 +101,7 @@ func (client *ComputeManagementClient) ConfigurationProvider() *common.Configura // that an instance must meet before you can attach it to a pool, see // Attaching an Instance to an Instance Pool (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/updatinginstancepool.htm#attach-instance). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AttachInstancePoolInstance.go.html to see an example of how to use AttachInstancePoolInstance API. func (client ComputeManagementClient) AttachInstancePoolInstance(ctx context.Context, request AttachInstancePoolInstanceRequest) (response AttachInstancePoolInstanceResponse, err error) { @@ -163,7 +163,7 @@ func (client ComputeManagementClient) attachInstancePoolInstance(ctx context.Con // AttachLoadBalancer Attach a load balancer to the instance pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AttachLoadBalancer.go.html to see an example of how to use AttachLoadBalancer API. func (client ComputeManagementClient) AttachLoadBalancer(ctx context.Context, request AttachLoadBalancerRequest) (response AttachLoadBalancerResponse, err error) { @@ -230,7 +230,7 @@ func (client ComputeManagementClient) attachLoadBalancer(ctx context.Context, re // When you move a cluster network to a different compartment, associated resources such as the instances // in the cluster network, boot volumes, and VNICs are not moved. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeClusterNetworkCompartment.go.html to see an example of how to use ChangeClusterNetworkCompartment API. func (client ComputeManagementClient) ChangeClusterNetworkCompartment(ctx context.Context, request ChangeClusterNetworkCompartmentRequest) (response ChangeClusterNetworkCompartmentResponse, err error) { @@ -302,7 +302,7 @@ func (client ComputeManagementClient) changeClusterNetworkCompartment(ctx contex // you should instead create a new instance configuration in the target compartment using // CreateInstanceConfiguration (https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/InstanceConfiguration/CreateInstanceConfiguration). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeInstanceConfigurationCompartment.go.html to see an example of how to use ChangeInstanceConfigurationCompartment API. func (client ComputeManagementClient) ChangeInstanceConfigurationCompartment(ctx context.Context, request ChangeInstanceConfigurationCompartmentRequest) (response ChangeInstanceConfigurationCompartmentResponse, err error) { @@ -368,7 +368,7 @@ func (client ComputeManagementClient) changeInstanceConfigurationCompartment(ctx // When you move an instance pool to a different compartment, associated resources such as the instances in // the pool, boot volumes, VNICs, and autoscaling configurations are not moved. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeInstancePoolCompartment.go.html to see an example of how to use ChangeInstancePoolCompartment API. func (client ComputeManagementClient) ChangeInstancePoolCompartment(ctx context.Context, request ChangeInstancePoolCompartmentRequest) (response ChangeInstancePoolCompartmentResponse, err error) { @@ -441,7 +441,7 @@ func (client ComputeManagementClient) changeInstancePoolCompartment(ctx context. // use the CreateComputeCapacityReport // operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateClusterNetwork.go.html to see an example of how to use CreateClusterNetwork API. func (client ComputeManagementClient) CreateClusterNetwork(ctx context.Context, request CreateClusterNetworkRequest) (response CreateClusterNetworkResponse, err error) { @@ -504,7 +504,7 @@ func (client ComputeManagementClient) createClusterNetwork(ctx context.Context, // CreateInstanceConfiguration Creates an instance configuration. An instance configuration is a template that defines the // settings to use when creating Compute instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateInstanceConfiguration.go.html to see an example of how to use CreateInstanceConfiguration API. func (client ComputeManagementClient) CreateInstanceConfiguration(ctx context.Context, request CreateInstanceConfigurationRequest) (response CreateInstanceConfigurationResponse, err error) { @@ -569,7 +569,7 @@ func (client ComputeManagementClient) createInstanceConfiguration(ctx context.Co // use the CreateComputeCapacityReport // operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateInstancePool.go.html to see an example of how to use CreateInstancePool API. func (client ComputeManagementClient) CreateInstancePool(ctx context.Context, request CreateInstancePoolRequest) (response CreateInstancePoolResponse, err error) { @@ -631,7 +631,7 @@ func (client ComputeManagementClient) createInstancePool(ctx context.Context, re // DeleteInstanceConfiguration Deletes an instance configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteInstanceConfiguration.go.html to see an example of how to use DeleteInstanceConfiguration API. func (client ComputeManagementClient) DeleteInstanceConfiguration(ctx context.Context, request DeleteInstanceConfigurationRequest) (response DeleteInstanceConfigurationResponse, err error) { @@ -688,7 +688,7 @@ func (client ComputeManagementClient) deleteInstanceConfiguration(ctx context.Co // DetachInstancePoolInstance Detaches an instance from an instance pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DetachInstancePoolInstance.go.html to see an example of how to use DetachInstancePoolInstance API. func (client ComputeManagementClient) DetachInstancePoolInstance(ctx context.Context, request DetachInstancePoolInstanceRequest) (response DetachInstancePoolInstanceResponse, err error) { @@ -750,7 +750,7 @@ func (client ComputeManagementClient) detachInstancePoolInstance(ctx context.Con // DetachLoadBalancer Detach a load balancer from the instance pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DetachLoadBalancer.go.html to see an example of how to use DetachLoadBalancer API. func (client ComputeManagementClient) DetachLoadBalancer(ctx context.Context, request DetachLoadBalancerRequest) (response DetachLoadBalancerResponse, err error) { @@ -812,7 +812,7 @@ func (client ComputeManagementClient) detachLoadBalancer(ctx context.Context, re // GetClusterNetwork Gets information about a cluster network with instance pools (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/managingclusternetworks.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetClusterNetwork.go.html to see an example of how to use GetClusterNetwork API. func (client ComputeManagementClient) GetClusterNetwork(ctx context.Context, request GetClusterNetworkRequest) (response GetClusterNetworkResponse, err error) { @@ -869,7 +869,7 @@ func (client ComputeManagementClient) getClusterNetwork(ctx context.Context, req // GetInstanceConfiguration Gets the specified instance configuration // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetInstanceConfiguration.go.html to see an example of how to use GetInstanceConfiguration API. func (client ComputeManagementClient) GetInstanceConfiguration(ctx context.Context, request GetInstanceConfigurationRequest) (response GetInstanceConfigurationResponse, err error) { @@ -926,7 +926,7 @@ func (client ComputeManagementClient) getInstanceConfiguration(ctx context.Conte // GetInstancePool Gets the specified instance pool // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetInstancePool.go.html to see an example of how to use GetInstancePool API. func (client ComputeManagementClient) GetInstancePool(ctx context.Context, request GetInstancePoolRequest) (response GetInstancePoolResponse, err error) { @@ -983,7 +983,7 @@ func (client ComputeManagementClient) getInstancePool(ctx context.Context, reque // GetInstancePoolInstance Gets information about an instance that belongs to an instance pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetInstancePoolInstance.go.html to see an example of how to use GetInstancePoolInstance API. func (client ComputeManagementClient) GetInstancePoolInstance(ctx context.Context, request GetInstancePoolInstanceRequest) (response GetInstancePoolInstanceResponse, err error) { @@ -1040,7 +1040,7 @@ func (client ComputeManagementClient) getInstancePoolInstance(ctx context.Contex // GetInstancePoolLoadBalancerAttachment Gets information about a load balancer that is attached to the specified instance pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetInstancePoolLoadBalancerAttachment.go.html to see an example of how to use GetInstancePoolLoadBalancerAttachment API. func (client ComputeManagementClient) GetInstancePoolLoadBalancerAttachment(ctx context.Context, request GetInstancePoolLoadBalancerAttachmentRequest) (response GetInstancePoolLoadBalancerAttachmentResponse, err error) { @@ -1105,7 +1105,7 @@ func (client ComputeManagementClient) getInstancePoolLoadBalancerAttachment(ctx // use the CreateComputeCapacityReport // operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/LaunchInstanceConfiguration.go.html to see an example of how to use LaunchInstanceConfiguration API. func (client ComputeManagementClient) LaunchInstanceConfiguration(ctx context.Context, request LaunchInstanceConfigurationRequest) (response LaunchInstanceConfigurationResponse, err error) { @@ -1167,7 +1167,7 @@ func (client ComputeManagementClient) launchInstanceConfiguration(ctx context.Co // ListClusterNetworkInstances Lists the instances in a cluster network with instance pools (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/managingclusternetworks.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListClusterNetworkInstances.go.html to see an example of how to use ListClusterNetworkInstances API. func (client ComputeManagementClient) ListClusterNetworkInstances(ctx context.Context, request ListClusterNetworkInstancesRequest) (response ListClusterNetworkInstancesResponse, err error) { @@ -1225,7 +1225,7 @@ func (client ComputeManagementClient) listClusterNetworkInstances(ctx context.Co // ListClusterNetworks Lists the cluster networks with instance pools (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/managingclusternetworks.htm) // in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListClusterNetworks.go.html to see an example of how to use ListClusterNetworks API. func (client ComputeManagementClient) ListClusterNetworks(ctx context.Context, request ListClusterNetworksRequest) (response ListClusterNetworksResponse, err error) { @@ -1282,7 +1282,7 @@ func (client ComputeManagementClient) listClusterNetworks(ctx context.Context, r // ListInstanceConfigurations Lists the instance configurations in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListInstanceConfigurations.go.html to see an example of how to use ListInstanceConfigurations API. func (client ComputeManagementClient) ListInstanceConfigurations(ctx context.Context, request ListInstanceConfigurationsRequest) (response ListInstanceConfigurationsResponse, err error) { @@ -1339,7 +1339,7 @@ func (client ComputeManagementClient) listInstanceConfigurations(ctx context.Con // ListInstancePoolInstances List the instances in the specified instance pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListInstancePoolInstances.go.html to see an example of how to use ListInstancePoolInstances API. func (client ComputeManagementClient) ListInstancePoolInstances(ctx context.Context, request ListInstancePoolInstancesRequest) (response ListInstancePoolInstancesResponse, err error) { @@ -1396,7 +1396,7 @@ func (client ComputeManagementClient) listInstancePoolInstances(ctx context.Cont // ListInstancePools Lists the instance pools in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListInstancePools.go.html to see an example of how to use ListInstancePools API. func (client ComputeManagementClient) ListInstancePools(ctx context.Context, request ListInstancePoolsRequest) (response ListInstancePoolsResponse, err error) { @@ -1454,7 +1454,7 @@ func (client ComputeManagementClient) listInstancePools(ctx context.Context, req // ResetInstancePool Performs the reset (immediate power off and power on) action on the specified instance pool, // which performs the action on all the instances in the pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ResetInstancePool.go.html to see an example of how to use ResetInstancePool API. func (client ComputeManagementClient) ResetInstancePool(ctx context.Context, request ResetInstancePoolRequest) (response ResetInstancePoolResponse, err error) { @@ -1519,7 +1519,7 @@ func (client ComputeManagementClient) resetInstancePool(ctx context.Context, req // Softreset gracefully reboots the instances by sending a shutdown command to the operating systems. // After waiting 15 minutes for the OS to shut down, the instances are powered off and then powered back on. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/SoftresetInstancePool.go.html to see an example of how to use SoftresetInstancePool API. func (client ComputeManagementClient) SoftresetInstancePool(ctx context.Context, request SoftresetInstancePoolRequest) (response SoftresetInstancePoolResponse, err error) { @@ -1584,7 +1584,7 @@ func (client ComputeManagementClient) softresetInstancePool(ctx context.Context, // Softstop gracefully reboots the instances by sending a shutdown command to the operating systems. // After waiting 15 minutes for the OS to shutdown, the instances are powered off and then powered back on. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/SoftstopInstancePool.go.html to see an example of how to use SoftstopInstancePool API. func (client ComputeManagementClient) SoftstopInstancePool(ctx context.Context, request SoftstopInstancePoolRequest) (response SoftstopInstancePoolResponse, err error) { @@ -1647,7 +1647,7 @@ func (client ComputeManagementClient) softstopInstancePool(ctx context.Context, // StartInstancePool Performs the start (power on) action on the specified instance pool, // which performs the action on all the instances in the pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/StartInstancePool.go.html to see an example of how to use StartInstancePool API. func (client ComputeManagementClient) StartInstancePool(ctx context.Context, request StartInstancePoolRequest) (response StartInstancePoolResponse, err error) { @@ -1710,7 +1710,7 @@ func (client ComputeManagementClient) startInstancePool(ctx context.Context, req // StopInstancePool Performs the stop (immediate power off) action on the specified instance pool, // which performs the action on all the instances in the pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/StopInstancePool.go.html to see an example of how to use StopInstancePool API. func (client ComputeManagementClient) StopInstancePool(ctx context.Context, request StopInstancePoolRequest) (response StopInstancePoolResponse, err error) { @@ -1774,7 +1774,7 @@ func (client ComputeManagementClient) stopInstancePool(ctx context.Context, requ // When you delete a cluster network, all of its resources are permanently deleted, // including associated instances and instance pools. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/TerminateClusterNetwork.go.html to see an example of how to use TerminateClusterNetwork API. func (client ComputeManagementClient) TerminateClusterNetwork(ctx context.Context, request TerminateClusterNetworkRequest) (response TerminateClusterNetworkResponse, err error) { @@ -1836,7 +1836,7 @@ func (client ComputeManagementClient) terminateClusterNetwork(ctx context.Contex // asynchronously after the pool is deleted. You can also manually delete the autoscaling configuration using // the `DeleteAutoScalingConfiguration` operation in the Autoscaling API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/TerminateInstancePool.go.html to see an example of how to use TerminateInstancePool API. func (client ComputeManagementClient) TerminateInstancePool(ctx context.Context, request TerminateInstancePoolRequest) (response TerminateInstancePoolResponse, err error) { @@ -1894,7 +1894,7 @@ func (client ComputeManagementClient) terminateInstancePool(ctx context.Context, // UpdateClusterNetwork Updates a cluster network with instance pools (https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/managingclusternetworks.htm). // The OCID of the cluster network remains the same. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateClusterNetwork.go.html to see an example of how to use UpdateClusterNetwork API. func (client ComputeManagementClient) UpdateClusterNetwork(ctx context.Context, request UpdateClusterNetworkRequest) (response UpdateClusterNetworkResponse, err error) { @@ -1956,7 +1956,7 @@ func (client ComputeManagementClient) updateClusterNetwork(ctx context.Context, // UpdateInstanceConfiguration Updates the free-form tags, defined tags, and display name of an instance configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateInstanceConfiguration.go.html to see an example of how to use UpdateInstanceConfiguration API. func (client ComputeManagementClient) UpdateInstanceConfiguration(ctx context.Context, request UpdateInstanceConfigurationRequest) (response UpdateInstanceConfigurationResponse, err error) { @@ -2019,7 +2019,7 @@ func (client ComputeManagementClient) updateInstanceConfiguration(ctx context.Co // UpdateInstancePool Update the specified instance pool. // The OCID of the instance pool remains the same. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateInstancePool.go.html to see an example of how to use UpdateInstancePool API. func (client ComputeManagementClient) UpdateInstancePool(ctx context.Context, request UpdateInstancePoolRequest) (response UpdateInstancePoolResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/core_virtualnetwork_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/core_virtualnetwork_client.go index 3510649e506..7186f694fdd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/core_virtualnetwork_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/core_virtualnetwork_client.go @@ -99,7 +99,7 @@ func (client *VirtualNetworkClient) ConfigurationProvider() *common.Configuratio // AddDrgRouteDistributionStatements Adds one or more route distribution statements to the specified route distribution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AddDrgRouteDistributionStatements.go.html to see an example of how to use AddDrgRouteDistributionStatements API. func (client VirtualNetworkClient) AddDrgRouteDistributionStatements(ctx context.Context, request AddDrgRouteDistributionStatementsRequest) (response AddDrgRouteDistributionStatementsResponse, err error) { @@ -156,7 +156,7 @@ func (client VirtualNetworkClient) addDrgRouteDistributionStatements(ctx context // AddDrgRouteRules Adds one or more static route rules to the specified DRG route table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AddDrgRouteRules.go.html to see an example of how to use AddDrgRouteRules API. func (client VirtualNetworkClient) AddDrgRouteRules(ctx context.Context, request AddDrgRouteRulesRequest) (response AddDrgRouteRulesResponse, err error) { @@ -218,7 +218,7 @@ func (client VirtualNetworkClient) addDrgRouteRules(ctx context.Context, request // AddIpv6SubnetCidr Add an IPv6 prefix to a subnet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AddIpv6SubnetCidr.go.html to see an example of how to use AddIpv6SubnetCidr API. func (client VirtualNetworkClient) AddIpv6SubnetCidr(ctx context.Context, request AddIpv6SubnetCidrRequest) (response AddIpv6SubnetCidrResponse, err error) { @@ -281,7 +281,7 @@ func (client VirtualNetworkClient) addIpv6SubnetCidr(ctx context.Context, reques // AddIpv6VcnCidr Add an IPv6 prefix to a VCN. The VCN size is always /56 and assigned by Oracle. // Once added the IPv6 prefix cannot be removed or modified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AddIpv6VcnCidr.go.html to see an example of how to use AddIpv6VcnCidr API. func (client VirtualNetworkClient) AddIpv6VcnCidr(ctx context.Context, request AddIpv6VcnCidrRequest) (response AddIpv6VcnCidrResponse, err error) { @@ -343,7 +343,7 @@ func (client VirtualNetworkClient) addIpv6VcnCidr(ctx context.Context, request c // AddNetworkSecurityGroupSecurityRules Adds one or more security rules to the specified network security group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AddNetworkSecurityGroupSecurityRules.go.html to see an example of how to use AddNetworkSecurityGroupSecurityRules API. func (client VirtualNetworkClient) AddNetworkSecurityGroupSecurityRules(ctx context.Context, request AddNetworkSecurityGroupSecurityRulesRequest) (response AddNetworkSecurityGroupSecurityRulesResponse, err error) { @@ -401,7 +401,7 @@ func (client VirtualNetworkClient) addNetworkSecurityGroupSecurityRules(ctx cont // AddPublicIpPoolCapacity Adds some or all of a CIDR block to a public IP pool. // The CIDR block (or subrange) must not overlap with any other CIDR block already added to this or any other public IP pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AddPublicIpPoolCapacity.go.html to see an example of how to use AddPublicIpPoolCapacity API. func (client VirtualNetworkClient) AddPublicIpPoolCapacity(ctx context.Context, request AddPublicIpPoolCapacityRequest) (response AddPublicIpPoolCapacityResponse, err error) { @@ -467,7 +467,7 @@ func (client VirtualNetworkClient) addPublicIpPoolCapacity(ctx context.Context, // - Must not exceed the limit of CIDR blocks allowed per VCN. // **Note:** Adding a CIDR block places your VCN in an updating state until the changes are complete. You cannot create or update the VCN's subnets, VLANs, LPGs, or route tables during this operation. The time to completion can take a few minutes. You can use the `GetWorkRequest` operation to check the status of the update. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AddVcnCidr.go.html to see an example of how to use AddVcnCidr API. func (client VirtualNetworkClient) AddVcnCidr(ctx context.Context, request AddVcnCidrRequest) (response AddVcnCidrResponse, err error) { @@ -530,7 +530,7 @@ func (client VirtualNetworkClient) addVcnCidr(ctx context.Context, request commo // AdvertiseByoipRange Begins BGP route advertisements for the BYOIP CIDR block you imported to the Oracle Cloud. // The `ByoipRange` resource must be in the PROVISIONED state before the BYOIP CIDR block routes can be advertised with BGP. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AdvertiseByoipRange.go.html to see an example of how to use AdvertiseByoipRange API. func (client VirtualNetworkClient) AdvertiseByoipRange(ctx context.Context, request AdvertiseByoipRangeRequest) (response AdvertiseByoipRangeResponse, err error) { @@ -595,7 +595,7 @@ func (client VirtualNetworkClient) advertiseByoipRange(ctx context.Context, requ // the entire existing list of enabled `Service` objects with the list that you provide in the // `Update` call. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/AttachServiceId.go.html to see an example of how to use AttachServiceId API. func (client VirtualNetworkClient) AttachServiceId(ctx context.Context, request AttachServiceIdRequest) (response AttachServiceIdResponse, err error) { @@ -655,7 +655,7 @@ func (client VirtualNetworkClient) attachServiceId(ctx context.Context, request // to add prefixes to the virtual circuit. Oracle must verify the customer's ownership // of each prefix before traffic for that prefix will flow across the virtual circuit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/BulkAddVirtualCircuitPublicPrefixes.go.html to see an example of how to use BulkAddVirtualCircuitPublicPrefixes API. // A default retry strategy applies to this operation BulkAddVirtualCircuitPublicPrefixes() @@ -711,7 +711,7 @@ func (client VirtualNetworkClient) bulkAddVirtualCircuitPublicPrefixes(ctx conte // to remove prefixes from the virtual circuit. When the virtual circuit's state switches // back to PROVISIONED, Oracle stops advertising the specified prefixes across the connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/BulkDeleteVirtualCircuitPublicPrefixes.go.html to see an example of how to use BulkDeleteVirtualCircuitPublicPrefixes API. // A default retry strategy applies to this operation BulkDeleteVirtualCircuitPublicPrefixes() @@ -766,7 +766,7 @@ func (client VirtualNetworkClient) bulkDeleteVirtualCircuitPublicPrefixes(ctx co // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeByoipRangeCompartment.go.html to see an example of how to use ChangeByoipRangeCompartment API. func (client VirtualNetworkClient) ChangeByoipRangeCompartment(ctx context.Context, request ChangeByoipRangeCompartmentRequest) (response ChangeByoipRangeCompartmentResponse, err error) { @@ -830,7 +830,7 @@ func (client VirtualNetworkClient) changeByoipRangeCompartment(ctx context.Conte // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeCaptureFilterCompartment.go.html to see an example of how to use ChangeCaptureFilterCompartment API. func (client VirtualNetworkClient) ChangeCaptureFilterCompartment(ctx context.Context, request ChangeCaptureFilterCompartmentRequest) (response ChangeCaptureFilterCompartmentResponse, err error) { @@ -894,7 +894,7 @@ func (client VirtualNetworkClient) changeCaptureFilterCompartment(ctx context.Co // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeCpeCompartment.go.html to see an example of how to use ChangeCpeCompartment API. // A default retry strategy applies to this operation ChangeCpeCompartment() @@ -959,7 +959,7 @@ func (client VirtualNetworkClient) changeCpeCompartment(ctx context.Context, req // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeCrossConnectCompartment.go.html to see an example of how to use ChangeCrossConnectCompartment API. // A default retry strategy applies to this operation ChangeCrossConnectCompartment() @@ -1024,7 +1024,7 @@ func (client VirtualNetworkClient) changeCrossConnectCompartment(ctx context.Con // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeCrossConnectGroupCompartment.go.html to see an example of how to use ChangeCrossConnectGroupCompartment API. // A default retry strategy applies to this operation ChangeCrossConnectGroupCompartment() @@ -1089,7 +1089,7 @@ func (client VirtualNetworkClient) changeCrossConnectGroupCompartment(ctx contex // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeDhcpOptionsCompartment.go.html to see an example of how to use ChangeDhcpOptionsCompartment API. func (client VirtualNetworkClient) ChangeDhcpOptionsCompartment(ctx context.Context, request ChangeDhcpOptionsCompartmentRequest) (response ChangeDhcpOptionsCompartmentResponse, err error) { @@ -1153,7 +1153,7 @@ func (client VirtualNetworkClient) changeDhcpOptionsCompartment(ctx context.Cont // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeDrgCompartment.go.html to see an example of how to use ChangeDrgCompartment API. func (client VirtualNetworkClient) ChangeDrgCompartment(ctx context.Context, request ChangeDrgCompartmentRequest) (response ChangeDrgCompartmentResponse, err error) { @@ -1217,7 +1217,7 @@ func (client VirtualNetworkClient) changeDrgCompartment(ctx context.Context, req // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeIPSecConnectionCompartment.go.html to see an example of how to use ChangeIPSecConnectionCompartment API. // A default retry strategy applies to this operation ChangeIPSecConnectionCompartment() @@ -1282,7 +1282,7 @@ func (client VirtualNetworkClient) changeIPSecConnectionCompartment(ctx context. // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeInternetGatewayCompartment.go.html to see an example of how to use ChangeInternetGatewayCompartment API. func (client VirtualNetworkClient) ChangeInternetGatewayCompartment(ctx context.Context, request ChangeInternetGatewayCompartmentRequest) (response ChangeInternetGatewayCompartmentResponse, err error) { @@ -1346,7 +1346,7 @@ func (client VirtualNetworkClient) changeInternetGatewayCompartment(ctx context. // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeLocalPeeringGatewayCompartment.go.html to see an example of how to use ChangeLocalPeeringGatewayCompartment API. func (client VirtualNetworkClient) ChangeLocalPeeringGatewayCompartment(ctx context.Context, request ChangeLocalPeeringGatewayCompartmentRequest) (response ChangeLocalPeeringGatewayCompartmentResponse, err error) { @@ -1410,7 +1410,7 @@ func (client VirtualNetworkClient) changeLocalPeeringGatewayCompartment(ctx cont // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeNatGatewayCompartment.go.html to see an example of how to use ChangeNatGatewayCompartment API. func (client VirtualNetworkClient) ChangeNatGatewayCompartment(ctx context.Context, request ChangeNatGatewayCompartmentRequest) (response ChangeNatGatewayCompartmentResponse, err error) { @@ -1473,7 +1473,7 @@ func (client VirtualNetworkClient) changeNatGatewayCompartment(ctx context.Conte // ChangeNetworkSecurityGroupCompartment Moves a network security group into a different compartment within the same tenancy. For // information about moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeNetworkSecurityGroupCompartment.go.html to see an example of how to use ChangeNetworkSecurityGroupCompartment API. func (client VirtualNetworkClient) ChangeNetworkSecurityGroupCompartment(ctx context.Context, request ChangeNetworkSecurityGroupCompartmentRequest) (response ChangeNetworkSecurityGroupCompartmentResponse, err error) { @@ -1539,7 +1539,7 @@ func (client VirtualNetworkClient) changeNetworkSecurityGroupCompartment(ctx con // This operation applies only to reserved public IPs. Ephemeral public IPs always belong to the // same compartment as their VNIC and move accordingly. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangePublicIpCompartment.go.html to see an example of how to use ChangePublicIpCompartment API. func (client VirtualNetworkClient) ChangePublicIpCompartment(ctx context.Context, request ChangePublicIpCompartmentRequest) (response ChangePublicIpCompartmentResponse, err error) { @@ -1603,7 +1603,7 @@ func (client VirtualNetworkClient) changePublicIpCompartment(ctx context.Context // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangePublicIpPoolCompartment.go.html to see an example of how to use ChangePublicIpPoolCompartment API. func (client VirtualNetworkClient) ChangePublicIpPoolCompartment(ctx context.Context, request ChangePublicIpPoolCompartmentRequest) (response ChangePublicIpPoolCompartmentResponse, err error) { @@ -1667,7 +1667,7 @@ func (client VirtualNetworkClient) changePublicIpPoolCompartment(ctx context.Con // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeRemotePeeringConnectionCompartment.go.html to see an example of how to use ChangeRemotePeeringConnectionCompartment API. // A default retry strategy applies to this operation ChangeRemotePeeringConnectionCompartment() @@ -1732,7 +1732,7 @@ func (client VirtualNetworkClient) changeRemotePeeringConnectionCompartment(ctx // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeRouteTableCompartment.go.html to see an example of how to use ChangeRouteTableCompartment API. func (client VirtualNetworkClient) ChangeRouteTableCompartment(ctx context.Context, request ChangeRouteTableCompartmentRequest) (response ChangeRouteTableCompartmentResponse, err error) { @@ -1796,7 +1796,7 @@ func (client VirtualNetworkClient) changeRouteTableCompartment(ctx context.Conte // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeSecurityListCompartment.go.html to see an example of how to use ChangeSecurityListCompartment API. func (client VirtualNetworkClient) ChangeSecurityListCompartment(ctx context.Context, request ChangeSecurityListCompartmentRequest) (response ChangeSecurityListCompartmentResponse, err error) { @@ -1860,7 +1860,7 @@ func (client VirtualNetworkClient) changeSecurityListCompartment(ctx context.Con // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeServiceGatewayCompartment.go.html to see an example of how to use ChangeServiceGatewayCompartment API. func (client VirtualNetworkClient) ChangeServiceGatewayCompartment(ctx context.Context, request ChangeServiceGatewayCompartmentRequest) (response ChangeServiceGatewayCompartmentResponse, err error) { @@ -1924,7 +1924,7 @@ func (client VirtualNetworkClient) changeServiceGatewayCompartment(ctx context.C // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeSubnetCompartment.go.html to see an example of how to use ChangeSubnetCompartment API. func (client VirtualNetworkClient) ChangeSubnetCompartment(ctx context.Context, request ChangeSubnetCompartmentRequest) (response ChangeSubnetCompartmentResponse, err error) { @@ -1988,7 +1988,7 @@ func (client VirtualNetworkClient) changeSubnetCompartment(ctx context.Context, // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeVcnCompartment.go.html to see an example of how to use ChangeVcnCompartment API. func (client VirtualNetworkClient) ChangeVcnCompartment(ctx context.Context, request ChangeVcnCompartmentRequest) (response ChangeVcnCompartmentResponse, err error) { @@ -2052,7 +2052,7 @@ func (client VirtualNetworkClient) changeVcnCompartment(ctx context.Context, req // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeVirtualCircuitCompartment.go.html to see an example of how to use ChangeVirtualCircuitCompartment API. // A default retry strategy applies to this operation ChangeVirtualCircuitCompartment() @@ -2117,7 +2117,7 @@ func (client VirtualNetworkClient) changeVirtualCircuitCompartment(ctx context.C // For information about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeVlanCompartment.go.html to see an example of how to use ChangeVlanCompartment API. func (client VirtualNetworkClient) ChangeVlanCompartment(ctx context.Context, request ChangeVlanCompartmentRequest) (response ChangeVlanCompartmentResponse, err error) { @@ -2181,7 +2181,7 @@ func (client VirtualNetworkClient) changeVlanCompartment(ctx context.Context, re // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ChangeVtapCompartment.go.html to see an example of how to use ChangeVtapCompartment API. func (client VirtualNetworkClient) ChangeVtapCompartment(ctx context.Context, request ChangeVtapCompartmentRequest) (response ChangeVtapCompartmentResponse, err error) { @@ -2249,7 +2249,7 @@ func (client VirtualNetworkClient) changeVtapCompartment(ctx context.Context, re // operation will fail. For more information, see // VCN Peering (https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/VCNpeering.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ConnectLocalPeeringGateways.go.html to see an example of how to use ConnectLocalPeeringGateways API. func (client VirtualNetworkClient) ConnectLocalPeeringGateways(ctx context.Context, request ConnectLocalPeeringGatewaysRequest) (response ConnectLocalPeeringGatewaysResponse, err error) { @@ -2312,7 +2312,7 @@ func (client VirtualNetworkClient) connectLocalPeeringGateways(ctx context.Conte // operation will fail. For more information, see // VCN Peering (https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/VCNpeering.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ConnectRemotePeeringConnections.go.html to see an example of how to use ConnectRemotePeeringConnections API. // A default retry strategy applies to this operation ConnectRemotePeeringConnections() @@ -2370,7 +2370,7 @@ func (client VirtualNetworkClient) connectRemotePeeringConnections(ctx context.C // CreateByoipRange Creates a subrange of the BYOIP CIDR block. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateByoipRange.go.html to see an example of how to use CreateByoipRange API. func (client VirtualNetworkClient) CreateByoipRange(ctx context.Context, request CreateByoipRangeRequest) (response CreateByoipRangeResponse, err error) { @@ -2438,7 +2438,7 @@ func (client VirtualNetworkClient) createByoipRange(ctx context.Context, request // You may optionally specify a *display name* for the VTAP, otherwise a default is provided. // It does not have to be unique, and you can change it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateCaptureFilter.go.html to see an example of how to use CreateCaptureFilter API. func (client VirtualNetworkClient) CreateCaptureFilter(ctx context.Context, request CreateCaptureFilterRequest) (response CreateCaptureFilterResponse, err error) { @@ -2511,7 +2511,7 @@ func (client VirtualNetworkClient) createCaptureFilter(ctx context.Context, requ // You may optionally specify a *display name* for the CPE, otherwise a default is provided. It does not have to // be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateCpe.go.html to see an example of how to use CreateCpe API. // A default retry strategy applies to this operation CreateCpe() @@ -2589,7 +2589,7 @@ func (client VirtualNetworkClient) createCpe(ctx context.Context, request common // You may optionally specify a *display name* for the cross-connect. // It does not have to be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateCrossConnect.go.html to see an example of how to use CreateCrossConnect API. // A default retry strategy applies to this operation CreateCrossConnect() @@ -2664,7 +2664,7 @@ func (client VirtualNetworkClient) createCrossConnect(ctx context.Context, reque // You may optionally specify a *display name* for the cross-connect group. // It does not have to be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateCrossConnectGroup.go.html to see an example of how to use CreateCrossConnectGroup API. // A default retry strategy applies to this operation CreateCrossConnectGroup() @@ -2736,7 +2736,7 @@ func (client VirtualNetworkClient) createCrossConnectGroup(ctx context.Context, // You may optionally specify a *display name* for the set of DHCP options, otherwise a default is provided. // It does not have to be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateDhcpOptions.go.html to see an example of how to use CreateDhcpOptions API. func (client VirtualNetworkClient) CreateDhcpOptions(ctx context.Context, request CreateDhcpOptionsRequest) (response CreateDhcpOptionsResponse, err error) { @@ -2807,7 +2807,7 @@ func (client VirtualNetworkClient) createDhcpOptions(ctx context.Context, reques // You may optionally specify a *display name* for the DRG, otherwise a default is provided. // It does not have to be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateDrg.go.html to see an example of how to use CreateDrg API. func (client VirtualNetworkClient) CreateDrg(ctx context.Context, request CreateDrgRequest) (response CreateDrgResponse, err error) { @@ -2877,7 +2877,7 @@ func (client VirtualNetworkClient) createDrg(ctx context.Context, request common // For more information about compartments and access control, see // Overview of the IAM Service (https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateDrgAttachment.go.html to see an example of how to use CreateDrgAttachment API. func (client VirtualNetworkClient) CreateDrgAttachment(ctx context.Context, request CreateDrgAttachmentRequest) (response CreateDrgAttachmentResponse, err error) { @@ -2942,7 +2942,7 @@ func (client VirtualNetworkClient) createDrgAttachment(ctx context.Context, requ // Assign the route distribution as an export distribution to a DRG attachment // using the `UpdateDrgAttachment` or `CreateDrgAttachment` operations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateDrgRouteDistribution.go.html to see an example of how to use CreateDrgRouteDistribution API. func (client VirtualNetworkClient) CreateDrgRouteDistribution(ctx context.Context, request CreateDrgRouteDistributionRequest) (response CreateDrgRouteDistributionResponse, err error) { @@ -3005,7 +3005,7 @@ func (client VirtualNetworkClient) createDrgRouteDistribution(ctx context.Contex // CreateDrgRouteTable Creates a new DRG route table for the specified DRG. Assign the DRG route table to a DRG attachment // using the `UpdateDrgAttachment` or `CreateDrgAttachment` operations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateDrgRouteTable.go.html to see an example of how to use CreateDrgRouteTable API. func (client VirtualNetworkClient) CreateDrgRouteTable(ctx context.Context, request CreateDrgRouteTableRequest) (response CreateDrgRouteTableResponse, err error) { @@ -3082,13 +3082,14 @@ func (client VirtualNetworkClient) createDrgRouteTable(ctx context.Context, requ // It does not have to be unique, and you can change it. Avoid entering confidential information. // After creating the IPSec connection, you need to configure your on-premises router // with tunnel-specific information. For tunnel status and the required configuration information, see: -// * IPSecConnectionTunnel -// * IPSecConnectionTunnelSharedSecret +// - IPSecConnectionTunnel +// - IPSecConnectionTunnelSharedSecret +// // For each tunnel, you need the IP address of Oracle's VPN headend and the shared secret // (that is, the pre-shared key). For more information, see // CPE Configuration (https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/configuringCPE.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateIPSecConnection.go.html to see an example of how to use CreateIPSecConnection API. // A default retry strategy applies to this operation CreateIPSecConnection() @@ -3166,7 +3167,7 @@ func (client VirtualNetworkClient) createIPSecConnection(ctx context.Context, re // use UpdateInternetGateway to easily disable/enable // the gateway without changing the route rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateInternetGateway.go.html to see an example of how to use CreateInternetGateway API. func (client VirtualNetworkClient) CreateInternetGateway(ctx context.Context, request CreateInternetGatewayRequest) (response CreateInternetGatewayResponse, err error) { @@ -3228,7 +3229,7 @@ func (client VirtualNetworkClient) createInternetGateway(ctx context.Context, re // CreateIpv6 Creates an IPv6 for the specified VNIC. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateIpv6.go.html to see an example of how to use CreateIpv6 API. func (client VirtualNetworkClient) CreateIpv6(ctx context.Context, request CreateIpv6Request) (response CreateIpv6Response, err error) { @@ -3290,7 +3291,7 @@ func (client VirtualNetworkClient) createIpv6(ctx context.Context, request commo // CreateLocalPeeringGateway Creates a new local peering gateway (LPG) for the specified VCN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateLocalPeeringGateway.go.html to see an example of how to use CreateLocalPeeringGateway API. func (client VirtualNetworkClient) CreateLocalPeeringGateway(ctx context.Context, request CreateLocalPeeringGatewayRequest) (response CreateLocalPeeringGatewayResponse, err error) { @@ -3353,7 +3354,7 @@ func (client VirtualNetworkClient) createLocalPeeringGateway(ctx context.Context // CreateNatGateway Creates a new NAT gateway for the specified VCN. You must also set up a route rule with the // NAT gateway as the rule's target. See RouteTable. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateNatGateway.go.html to see an example of how to use CreateNatGateway API. func (client VirtualNetworkClient) CreateNatGateway(ctx context.Context, request CreateNatGatewayRequest) (response CreateNatGatewayResponse, err error) { @@ -3415,7 +3416,7 @@ func (client VirtualNetworkClient) createNatGateway(ctx context.Context, request // CreateNetworkSecurityGroup Creates a new network security group for the specified VCN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateNetworkSecurityGroup.go.html to see an example of how to use CreateNetworkSecurityGroup API. func (client VirtualNetworkClient) CreateNetworkSecurityGroup(ctx context.Context, request CreateNetworkSecurityGroupRequest) (response CreateNetworkSecurityGroupResponse, err error) { @@ -3479,7 +3480,7 @@ func (client VirtualNetworkClient) createNetworkSecurityGroup(ctx context.Contex // For more information about secondary private IPs, see // IP Addresses (https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingIPaddresses.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreatePrivateIp.go.html to see an example of how to use CreatePrivateIp API. func (client VirtualNetworkClient) CreatePrivateIp(ctx context.Context, request CreatePrivateIpRequest) (response CreatePrivateIpResponse, err error) { @@ -3557,7 +3558,7 @@ func (client VirtualNetworkClient) createPrivateIp(ctx context.Context, request // asynchronous. Poll the public IP's `lifecycleState` to determine if the assignment // succeeded. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreatePublicIp.go.html to see an example of how to use CreatePublicIp API. func (client VirtualNetworkClient) CreatePublicIp(ctx context.Context, request CreatePublicIpRequest) (response CreatePublicIpResponse, err error) { @@ -3619,7 +3620,7 @@ func (client VirtualNetworkClient) createPublicIp(ctx context.Context, request c // CreatePublicIpPool Creates a public IP pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreatePublicIpPool.go.html to see an example of how to use CreatePublicIpPool API. func (client VirtualNetworkClient) CreatePublicIpPool(ctx context.Context, request CreatePublicIpPoolRequest) (response CreatePublicIpPoolResponse, err error) { @@ -3681,7 +3682,7 @@ func (client VirtualNetworkClient) createPublicIpPool(ctx context.Context, reque // CreateRemotePeeringConnection Creates a new remote peering connection (RPC) for the specified DRG. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateRemotePeeringConnection.go.html to see an example of how to use CreateRemotePeeringConnection API. // A default retry strategy applies to this operation CreateRemotePeeringConnection() @@ -3756,7 +3757,7 @@ func (client VirtualNetworkClient) createRemotePeeringConnection(ctx context.Con // You may optionally specify a *display name* for the route table, otherwise a default is provided. // It does not have to be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateRouteTable.go.html to see an example of how to use CreateRouteTable API. func (client VirtualNetworkClient) CreateRouteTable(ctx context.Context, request CreateRouteTableRequest) (response CreateRouteTableResponse, err error) { @@ -3829,7 +3830,7 @@ func (client VirtualNetworkClient) createRouteTable(ctx context.Context, request // You may optionally specify a *display name* for the security list, otherwise a default is provided. // It does not have to be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateSecurityList.go.html to see an example of how to use CreateSecurityList API. func (client VirtualNetworkClient) CreateSecurityList(ctx context.Context, request CreateSecurityListRequest) (response CreateSecurityListResponse, err error) { @@ -3897,7 +3898,7 @@ func (client VirtualNetworkClient) createSecurityList(ctx context.Context, reque // You may optionally specify a *display name* for the service gateway, otherwise a default is provided. // It does not have to be unique, and you can change it. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateServiceGateway.go.html to see an example of how to use CreateServiceGateway API. func (client VirtualNetworkClient) CreateServiceGateway(ctx context.Context, request CreateServiceGatewayRequest) (response CreateServiceGatewayResponse, err error) { @@ -3983,7 +3984,7 @@ func (client VirtualNetworkClient) createServiceGateway(ctx context.Context, req // VCN Resolver to resolve hostnames for instances in the subnet. For more information, see // DNS in Your Virtual Cloud Network (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateSubnet.go.html to see an example of how to use CreateSubnet API. func (client VirtualNetworkClient) CreateSubnet(ctx context.Context, request CreateSubnetRequest) (response CreateSubnetResponse, err error) { @@ -4069,7 +4070,7 @@ func (client VirtualNetworkClient) createSubnet(ctx context.Context, request com // or FastConnect. For more information, see // Overview of the Networking Service (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVcn.go.html to see an example of how to use CreateVcn API. func (client VirtualNetworkClient) CreateVcn(ctx context.Context, request CreateVcnRequest) (response CreateVcnResponse, err error) { @@ -4148,7 +4149,7 @@ func (client VirtualNetworkClient) createVcn(ctx context.Context, request common // traffic will not flow. For more information, see // Route Tables (https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVirtualCircuit.go.html to see an example of how to use CreateVirtualCircuit API. // A default retry strategy applies to this operation CreateVirtualCircuit() @@ -4211,7 +4212,7 @@ func (client VirtualNetworkClient) createVirtualCircuit(ctx context.Context, req // CreateVlan Creates a VLAN in the specified VCN and the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVlan.go.html to see an example of how to use CreateVlan API. func (client VirtualNetworkClient) CreateVlan(ctx context.Context, request CreateVlanRequest) (response CreateVlanResponse, err error) { @@ -4279,7 +4280,7 @@ func (client VirtualNetworkClient) createVlan(ctx context.Context, request commo // You may optionally specify a *display name* for the VTAP, otherwise a default is provided. // It does not have to be unique, and you can change it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/CreateVtap.go.html to see an example of how to use CreateVtap API. func (client VirtualNetworkClient) CreateVtap(ctx context.Context, request CreateVtapRequest) (response CreateVtapResponse, err error) { @@ -4345,7 +4346,7 @@ func (client VirtualNetworkClient) createVtap(ctx context.Context, request commo // You must specify the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // If the `ByoipRange` resource is currently in the PROVISIONED or ACTIVE state, it will be de-provisioned and then deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteByoipRange.go.html to see an example of how to use DeleteByoipRange API. func (client VirtualNetworkClient) DeleteByoipRange(ctx context.Context, request DeleteByoipRangeRequest) (response DeleteByoipRangeResponse, err error) { @@ -4403,7 +4404,7 @@ func (client VirtualNetworkClient) deleteByoipRange(ctx context.Context, request // DeleteCaptureFilter Deletes the specified VTAP capture filter. This is an asynchronous operation. The VTAP capture filter's `lifecycleState` will // change to TERMINATING temporarily until the VTAP capture filter is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteCaptureFilter.go.html to see an example of how to use DeleteCaptureFilter API. func (client VirtualNetworkClient) DeleteCaptureFilter(ctx context.Context, request DeleteCaptureFilterRequest) (response DeleteCaptureFilterResponse, err error) { @@ -4462,7 +4463,7 @@ func (client VirtualNetworkClient) deleteCaptureFilter(ctx context.Context, requ // operation. The CPE's `lifecycleState` will change to TERMINATING temporarily until the CPE is completely // removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteCpe.go.html to see an example of how to use DeleteCpe API. // A default retry strategy applies to this operation DeleteCpe() @@ -4521,7 +4522,7 @@ func (client VirtualNetworkClient) deleteCpe(ctx context.Context, request common // DeleteCrossConnect Deletes the specified cross-connect. It must not be mapped to a // VirtualCircuit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteCrossConnect.go.html to see an example of how to use DeleteCrossConnect API. // A default retry strategy applies to this operation DeleteCrossConnect() @@ -4581,7 +4582,7 @@ func (client VirtualNetworkClient) deleteCrossConnect(ctx context.Context, reque // cross-connects, and it cannot be mapped to a // VirtualCircuit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteCrossConnectGroup.go.html to see an example of how to use DeleteCrossConnectGroup API. // A default retry strategy applies to this operation DeleteCrossConnectGroup() @@ -4642,7 +4643,7 @@ func (client VirtualNetworkClient) deleteCrossConnectGroup(ctx context.Context, // This is an asynchronous operation. The state of the set of options will switch to TERMINATING temporarily // until the set is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteDhcpOptions.go.html to see an example of how to use DeleteDhcpOptions API. func (client VirtualNetworkClient) DeleteDhcpOptions(ctx context.Context, request DeleteDhcpOptionsRequest) (response DeleteDhcpOptionsResponse, err error) { @@ -4702,7 +4703,7 @@ func (client VirtualNetworkClient) deleteDhcpOptions(ctx context.Context, reques // operation. The DRG's `lifecycleState` will change to TERMINATING temporarily until the DRG is completely // removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteDrg.go.html to see an example of how to use DeleteDrg API. func (client VirtualNetworkClient) DeleteDrg(ctx context.Context, request DeleteDrgRequest) (response DeleteDrgResponse, err error) { @@ -4761,7 +4762,7 @@ func (client VirtualNetworkClient) deleteDrg(ctx context.Context, request common // operation. The attachment's `lifecycleState` will temporarily change to DETACHING until the attachment // is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteDrgAttachment.go.html to see an example of how to use DeleteDrgAttachment API. func (client VirtualNetworkClient) DeleteDrgAttachment(ctx context.Context, request DeleteDrgAttachmentRequest) (response DeleteDrgAttachmentResponse, err error) { @@ -4819,7 +4820,7 @@ func (client VirtualNetworkClient) deleteDrgAttachment(ctx context.Context, requ // DeleteDrgRouteDistribution Deletes the specified route distribution. You can't delete a route distribution currently in use by a DRG attachment or DRG route table. // Remove the DRG route distribution from a DRG attachment or DRG route table by using the "RemoveExportDrgRouteDistribution" or "RemoveImportDrgRouteDistribution' operations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteDrgRouteDistribution.go.html to see an example of how to use DeleteDrgRouteDistribution API. func (client VirtualNetworkClient) DeleteDrgRouteDistribution(ctx context.Context, request DeleteDrgRouteDistributionRequest) (response DeleteDrgRouteDistributionResponse, err error) { @@ -4876,7 +4877,7 @@ func (client VirtualNetworkClient) deleteDrgRouteDistribution(ctx context.Contex // DeleteDrgRouteTable Deletes the specified DRG route table. There must not be any DRG attachments assigned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteDrgRouteTable.go.html to see an example of how to use DeleteDrgRouteTable API. func (client VirtualNetworkClient) DeleteDrgRouteTable(ctx context.Context, request DeleteDrgRouteTableRequest) (response DeleteDrgRouteTableResponse, err error) { @@ -4939,7 +4940,7 @@ func (client VirtualNetworkClient) deleteDrgRouteTable(ctx context.Context, requ // This is an asynchronous operation. The connection's `lifecycleState` will change to TERMINATING temporarily // until the connection is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteIPSecConnection.go.html to see an example of how to use DeleteIPSecConnection API. // A default retry strategy applies to this operation DeleteIPSecConnection() @@ -5000,7 +5001,7 @@ func (client VirtualNetworkClient) deleteIPSecConnection(ctx context.Context, re // This is an asynchronous operation. The gateway's `lifecycleState` will change to TERMINATING temporarily // until the gateway is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteInternetGateway.go.html to see an example of how to use DeleteInternetGateway API. func (client VirtualNetworkClient) DeleteInternetGateway(ctx context.Context, request DeleteInternetGatewayRequest) (response DeleteInternetGatewayResponse, err error) { @@ -5058,7 +5059,7 @@ func (client VirtualNetworkClient) deleteInternetGateway(ctx context.Context, re // DeleteIpv6 Unassigns and deletes the specified IPv6. You must specify the object's OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // The IPv6 address is returned to the subnet's pool of available addresses. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteIpv6.go.html to see an example of how to use DeleteIpv6 API. func (client VirtualNetworkClient) DeleteIpv6(ctx context.Context, request DeleteIpv6Request) (response DeleteIpv6Response, err error) { @@ -5117,7 +5118,7 @@ func (client VirtualNetworkClient) deleteIpv6(ctx context.Context, request commo // This is an asynchronous operation; the local peering gateway's `lifecycleState` changes to TERMINATING temporarily // until the local peering gateway is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteLocalPeeringGateway.go.html to see an example of how to use DeleteLocalPeeringGateway API. func (client VirtualNetworkClient) DeleteLocalPeeringGateway(ctx context.Context, request DeleteLocalPeeringGatewayRequest) (response DeleteLocalPeeringGatewayResponse, err error) { @@ -5177,7 +5178,7 @@ func (client VirtualNetworkClient) deleteLocalPeeringGateway(ctx context.Context // This is an asynchronous operation. The NAT gateway's `lifecycleState` will change to // TERMINATING temporarily until the NAT gateway is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteNatGateway.go.html to see an example of how to use DeleteNatGateway API. func (client VirtualNetworkClient) DeleteNatGateway(ctx context.Context, request DeleteNatGatewayRequest) (response DeleteNatGatewayResponse, err error) { @@ -5239,7 +5240,7 @@ func (client VirtualNetworkClient) deleteNatGateway(ctx context.Context, request // contains both the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VNIC and the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VNIC's parent resource (for example, // the Compute instance that the VNIC is attached to). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteNetworkSecurityGroup.go.html to see an example of how to use DeleteNetworkSecurityGroup API. func (client VirtualNetworkClient) DeleteNetworkSecurityGroup(ctx context.Context, request DeleteNetworkSecurityGroupRequest) (response DeleteNetworkSecurityGroupResponse, err error) { @@ -5304,7 +5305,7 @@ func (client VirtualNetworkClient) deleteNetworkSecurityGroup(ctx context.Contex // unassigning it from the VNIC causes that route rule to blackhole and the traffic // will be dropped. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeletePrivateIp.go.html to see an example of how to use DeletePrivateIp API. func (client VirtualNetworkClient) DeletePrivateIp(ctx context.Context, request DeletePrivateIpRequest) (response DeletePrivateIpResponse, err error) { @@ -5372,7 +5373,7 @@ func (client VirtualNetworkClient) deletePrivateIp(ctx context.Context, request // of reserved public IPs, instead use // UpdatePublicIp. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeletePublicIp.go.html to see an example of how to use DeletePublicIp API. func (client VirtualNetworkClient) DeletePublicIp(ctx context.Context, request DeletePublicIpRequest) (response DeletePublicIpResponse, err error) { @@ -5431,7 +5432,7 @@ func (client VirtualNetworkClient) deletePublicIp(ctx context.Context, request c // To delete a public IP pool it must not have any active IP address allocations. // You must specify the object's OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) when deleting an IP pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeletePublicIpPool.go.html to see an example of how to use DeletePublicIpPool API. func (client VirtualNetworkClient) DeletePublicIpPool(ctx context.Context, request DeletePublicIpPoolRequest) (response DeletePublicIpPoolResponse, err error) { @@ -5490,7 +5491,7 @@ func (client VirtualNetworkClient) deletePublicIpPool(ctx context.Context, reque // This is an asynchronous operation; the RPC's `lifecycleState` changes to TERMINATING temporarily // until the RPC is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteRemotePeeringConnection.go.html to see an example of how to use DeleteRemotePeeringConnection API. // A default retry strategy applies to this operation DeleteRemotePeeringConnection() @@ -5551,7 +5552,7 @@ func (client VirtualNetworkClient) deleteRemotePeeringConnection(ctx context.Con // This is an asynchronous operation. The route table's `lifecycleState` will change to TERMINATING temporarily // until the route table is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteRouteTable.go.html to see an example of how to use DeleteRouteTable API. func (client VirtualNetworkClient) DeleteRouteTable(ctx context.Context, request DeleteRouteTableRequest) (response DeleteRouteTableResponse, err error) { @@ -5611,7 +5612,7 @@ func (client VirtualNetworkClient) deleteRouteTable(ctx context.Context, request // This is an asynchronous operation. The security list's `lifecycleState` will change to TERMINATING temporarily // until the security list is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteSecurityList.go.html to see an example of how to use DeleteSecurityList API. func (client VirtualNetworkClient) DeleteSecurityList(ctx context.Context, request DeleteSecurityListRequest) (response DeleteSecurityListResponse, err error) { @@ -5669,7 +5670,7 @@ func (client VirtualNetworkClient) deleteSecurityList(ctx context.Context, reque // DeleteServiceGateway Deletes the specified service gateway. There must not be a route table that lists the service // gateway as a target. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteServiceGateway.go.html to see an example of how to use DeleteServiceGateway API. func (client VirtualNetworkClient) DeleteServiceGateway(ctx context.Context, request DeleteServiceGatewayRequest) (response DeleteServiceGatewayResponse, err error) { @@ -5728,7 +5729,7 @@ func (client VirtualNetworkClient) deleteServiceGateway(ctx context.Context, req // operation. The subnet's `lifecycleState` will change to TERMINATING temporarily. If there are any // instances in the subnet, the state will instead change back to AVAILABLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteSubnet.go.html to see an example of how to use DeleteSubnet API. func (client VirtualNetworkClient) DeleteSubnet(ctx context.Context, request DeleteSubnetRequest) (response DeleteSubnetResponse, err error) { @@ -5789,7 +5790,7 @@ func (client VirtualNetworkClient) deleteSubnet(ctx context.Context, request com // removed. A completely removed VCN does not appear in the results of a `ListVcns` operation and can't be used in a // `GetVcn` operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVcn.go.html to see an example of how to use DeleteVcn API. func (client VirtualNetworkClient) DeleteVcn(ctx context.Context, request DeleteVcnRequest) (response DeleteVcnResponse, err error) { @@ -5849,7 +5850,7 @@ func (client VirtualNetworkClient) deleteVcn(ctx context.Context, request common // make sure to also terminate the connection with // the provider, or else the provider may continue to bill you. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVirtualCircuit.go.html to see an example of how to use DeleteVirtualCircuit API. // A default retry strategy applies to this operation DeleteVirtualCircuit() @@ -5907,7 +5908,7 @@ func (client VirtualNetworkClient) deleteVirtualCircuit(ctx context.Context, req // DeleteVlan Deletes the specified VLAN, but only if there are no VNICs in the VLAN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVlan.go.html to see an example of how to use DeleteVlan API. func (client VirtualNetworkClient) DeleteVlan(ctx context.Context, request DeleteVlanRequest) (response DeleteVlanResponse, err error) { @@ -5965,7 +5966,7 @@ func (client VirtualNetworkClient) deleteVlan(ctx context.Context, request commo // DeleteVtap Deletes the specified VTAP. This is an asynchronous operation. The VTAP's `lifecycleState` will change to // TERMINATING temporarily until the VTAP is completely removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DeleteVtap.go.html to see an example of how to use DeleteVtap API. func (client VirtualNetworkClient) DeleteVtap(ctx context.Context, request DeleteVtapRequest) (response DeleteVtapResponse, err error) { @@ -6032,7 +6033,7 @@ func (client VirtualNetworkClient) deleteVtap(ctx context.Context, request commo // `Update` call. `UpdateServiceGateway` also lets you block all traffic through the service // gateway without having to remove each of the individual `Service` objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/DetachServiceId.go.html to see an example of how to use DetachServiceId API. func (client VirtualNetworkClient) DetachServiceId(ctx context.Context, request DetachServiceIdRequest) (response DetachServiceIdResponse, err error) { @@ -6089,7 +6090,7 @@ func (client VirtualNetworkClient) detachServiceId(ctx context.Context, request // GetAllDrgAttachments Returns a complete list of DRG attachments that belong to a particular DRG. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetAllDrgAttachments.go.html to see an example of how to use GetAllDrgAttachments API. func (client VirtualNetworkClient) GetAllDrgAttachments(ctx context.Context, request GetAllDrgAttachmentsRequest) (response GetAllDrgAttachmentsResponse, err error) { @@ -6146,7 +6147,7 @@ func (client VirtualNetworkClient) getAllDrgAttachments(ctx context.Context, req // GetAllowedIkeIPSecParameters The parameters allowed for IKE IPSec tunnels. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetAllowedIkeIPSecParameters.go.html to see an example of how to use GetAllowedIkeIPSecParameters API. // A default retry strategy applies to this operation GetAllowedIkeIPSecParameters() @@ -6204,7 +6205,7 @@ func (client VirtualNetworkClient) getAllowedIkeIPSecParameters(ctx context.Cont // GetByoipRange Gets the `ByoipRange` resource. You must specify the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetByoipRange.go.html to see an example of how to use GetByoipRange API. func (client VirtualNetworkClient) GetByoipRange(ctx context.Context, request GetByoipRangeRequest) (response GetByoipRangeResponse, err error) { @@ -6261,7 +6262,7 @@ func (client VirtualNetworkClient) getByoipRange(ctx context.Context, request co // GetCaptureFilter Gets information about the specified VTAP capture filter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetCaptureFilter.go.html to see an example of how to use GetCaptureFilter API. func (client VirtualNetworkClient) GetCaptureFilter(ctx context.Context, request GetCaptureFilterRequest) (response GetCaptureFilterResponse, err error) { @@ -6318,7 +6319,7 @@ func (client VirtualNetworkClient) getCaptureFilter(ctx context.Context, request // GetCpe Gets the specified CPE's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetCpe.go.html to see an example of how to use GetCpe API. // A default retry strategy applies to this operation GetCpe() @@ -6385,12 +6386,12 @@ func (client VirtualNetworkClient) getCpe(ctx context.Context, request common.OC // The operation returns configuration information for *all* of the // IPSecConnection objects that use the specified CPE. // Here are similar operations: -// * GetIpsecCpeDeviceConfigContent -// returns CPE configuration content for all IPSec tunnels in a single IPSec connection. -// * GetTunnelCpeDeviceConfigContent -// returns CPE configuration content for a specific IPSec tunnel in an IPSec connection. +// - GetIpsecCpeDeviceConfigContent +// returns CPE configuration content for all IPSec tunnels in a single IPSec connection. +// - GetTunnelCpeDeviceConfigContent +// returns CPE configuration content for a specific IPSec tunnel in an IPSec connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetCpeDeviceConfigContent.go.html to see an example of how to use GetCpeDeviceConfigContent API. // A default retry strategy applies to this operation GetCpeDeviceConfigContent() @@ -6450,11 +6451,11 @@ func (client VirtualNetworkClient) getCpeDeviceConfigContent(ctx context.Context // (see UpdateTunnelCpeDeviceConfig). // The service merges the answers with a template of other information for the CPE device type. The following // operations return the merged content: -// * GetCpeDeviceConfigContent -// * GetIpsecCpeDeviceConfigContent -// * GetTunnelCpeDeviceConfigContent +// - GetCpeDeviceConfigContent +// - GetIpsecCpeDeviceConfigContent +// - GetTunnelCpeDeviceConfigContent // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetCpeDeviceShape.go.html to see an example of how to use GetCpeDeviceShape API. // A default retry strategy applies to this operation GetCpeDeviceShape() @@ -6512,7 +6513,7 @@ func (client VirtualNetworkClient) getCpeDeviceShape(ctx context.Context, reques // GetCrossConnect Gets the specified cross-connect's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetCrossConnect.go.html to see an example of how to use GetCrossConnect API. // A default retry strategy applies to this operation GetCrossConnect() @@ -6570,7 +6571,7 @@ func (client VirtualNetworkClient) getCrossConnect(ctx context.Context, request // GetCrossConnectGroup Gets the specified cross-connect group's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetCrossConnectGroup.go.html to see an example of how to use GetCrossConnectGroup API. // A default retry strategy applies to this operation GetCrossConnectGroup() @@ -6628,7 +6629,7 @@ func (client VirtualNetworkClient) getCrossConnectGroup(ctx context.Context, req // GetCrossConnectLetterOfAuthority Gets the Letter of Authority for the specified cross-connect. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetCrossConnectLetterOfAuthority.go.html to see an example of how to use GetCrossConnectLetterOfAuthority API. // A default retry strategy applies to this operation GetCrossConnectLetterOfAuthority() @@ -6686,7 +6687,7 @@ func (client VirtualNetworkClient) getCrossConnectLetterOfAuthority(ctx context. // GetCrossConnectStatus Gets the status of the specified cross-connect. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetCrossConnectStatus.go.html to see an example of how to use GetCrossConnectStatus API. // A default retry strategy applies to this operation GetCrossConnectStatus() @@ -6744,7 +6745,7 @@ func (client VirtualNetworkClient) getCrossConnectStatus(ctx context.Context, re // GetDhcpOptions Gets the specified set of DHCP options. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetDhcpOptions.go.html to see an example of how to use GetDhcpOptions API. func (client VirtualNetworkClient) GetDhcpOptions(ctx context.Context, request GetDhcpOptionsRequest) (response GetDhcpOptionsResponse, err error) { @@ -6801,7 +6802,7 @@ func (client VirtualNetworkClient) getDhcpOptions(ctx context.Context, request c // GetDrg Gets the specified DRG's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetDrg.go.html to see an example of how to use GetDrg API. func (client VirtualNetworkClient) GetDrg(ctx context.Context, request GetDrgRequest) (response GetDrgResponse, err error) { @@ -6858,7 +6859,7 @@ func (client VirtualNetworkClient) getDrg(ctx context.Context, request common.OC // GetDrgAttachment Gets the `DrgAttachment` resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetDrgAttachment.go.html to see an example of how to use GetDrgAttachment API. func (client VirtualNetworkClient) GetDrgAttachment(ctx context.Context, request GetDrgAttachmentRequest) (response GetDrgAttachmentResponse, err error) { @@ -6916,7 +6917,7 @@ func (client VirtualNetworkClient) getDrgAttachment(ctx context.Context, request // GetDrgRedundancyStatus Gets the redundancy status for the specified DRG. For more information, see // Redundancy Remedies (https://docs.cloud.oracle.com/iaas/Content/Network/Troubleshoot/drgredundancy.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetDrgRedundancyStatus.go.html to see an example of how to use GetDrgRedundancyStatus API. // A default retry strategy applies to this operation GetDrgRedundancyStatus() @@ -6974,7 +6975,7 @@ func (client VirtualNetworkClient) getDrgRedundancyStatus(ctx context.Context, r // GetDrgRouteDistribution Gets the specified route distribution's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetDrgRouteDistribution.go.html to see an example of how to use GetDrgRouteDistribution API. func (client VirtualNetworkClient) GetDrgRouteDistribution(ctx context.Context, request GetDrgRouteDistributionRequest) (response GetDrgRouteDistributionResponse, err error) { @@ -7031,7 +7032,7 @@ func (client VirtualNetworkClient) getDrgRouteDistribution(ctx context.Context, // GetDrgRouteTable Gets the specified DRG route table's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetDrgRouteTable.go.html to see an example of how to use GetDrgRouteTable API. func (client VirtualNetworkClient) GetDrgRouteTable(ctx context.Context, request GetDrgRouteTableRequest) (response GetDrgRouteTableResponse, err error) { @@ -7089,7 +7090,7 @@ func (client VirtualNetworkClient) getDrgRouteTable(ctx context.Context, request // GetFastConnectProviderService Gets the specified provider service. // For more information, see FastConnect Overview (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetFastConnectProviderService.go.html to see an example of how to use GetFastConnectProviderService API. // A default retry strategy applies to this operation GetFastConnectProviderService() @@ -7148,7 +7149,7 @@ func (client VirtualNetworkClient) getFastConnectProviderService(ctx context.Con // GetFastConnectProviderServiceKey Gets the specified provider service key's information. Use this operation to validate a // provider service key. An invalid key returns a 404 error. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetFastConnectProviderServiceKey.go.html to see an example of how to use GetFastConnectProviderServiceKey API. // A default retry strategy applies to this operation GetFastConnectProviderServiceKey() @@ -7208,7 +7209,7 @@ func (client VirtualNetworkClient) getFastConnectProviderServiceKey(ctx context. // on-premises router. If you want the status of the connection (whether it's up or down), use // GetIPSecConnectionTunnel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetIPSecConnection.go.html to see an example of how to use GetIPSecConnection API. // A default retry strategy applies to this operation GetIPSecConnection() @@ -7268,7 +7269,7 @@ func (client VirtualNetworkClient) getIPSecConnection(ctx context.Context, reque // * GetIPSecConnectionTunnel // * GetIPSecConnectionTunnelSharedSecret // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetIPSecConnectionDeviceConfig.go.html to see an example of how to use GetIPSecConnectionDeviceConfig API. // A default retry strategy applies to this operation GetIPSecConnectionDeviceConfig() @@ -7327,7 +7328,7 @@ func (client VirtualNetworkClient) getIPSecConnectionDeviceConfig(ctx context.Co // GetIPSecConnectionDeviceStatus Deprecated. To get the tunnel status, instead use // GetIPSecConnectionTunnel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetIPSecConnectionDeviceStatus.go.html to see an example of how to use GetIPSecConnectionDeviceStatus API. // A default retry strategy applies to this operation GetIPSecConnectionDeviceStatus() @@ -7387,7 +7388,7 @@ func (client VirtualNetworkClient) getIPSecConnectionDeviceStatus(ctx context.Co // shared secret (pre-shared key). To retrieve that, use // GetIPSecConnectionTunnelSharedSecret. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetIPSecConnectionTunnel.go.html to see an example of how to use GetIPSecConnectionTunnel API. // A default retry strategy applies to this operation GetIPSecConnectionTunnel() @@ -7445,7 +7446,7 @@ func (client VirtualNetworkClient) getIPSecConnectionTunnel(ctx context.Context, // GetIPSecConnectionTunnelError Gets the identified error for the specified IPSec tunnel ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetIPSecConnectionTunnelError.go.html to see an example of how to use GetIPSecConnectionTunnelError API. // A default retry strategy applies to this operation GetIPSecConnectionTunnelError() @@ -7504,7 +7505,7 @@ func (client VirtualNetworkClient) getIPSecConnectionTunnelError(ctx context.Con // GetIPSecConnectionTunnelSharedSecret Gets the specified tunnel's shared secret (pre-shared key). To get other information // about the tunnel, use GetIPSecConnectionTunnel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetIPSecConnectionTunnelSharedSecret.go.html to see an example of how to use GetIPSecConnectionTunnelSharedSecret API. // A default retry strategy applies to this operation GetIPSecConnectionTunnelSharedSecret() @@ -7562,7 +7563,7 @@ func (client VirtualNetworkClient) getIPSecConnectionTunnelSharedSecret(ctx cont // GetInternetGateway Gets the specified internet gateway's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetInternetGateway.go.html to see an example of how to use GetInternetGateway API. func (client VirtualNetworkClient) GetInternetGateway(ctx context.Context, request GetInternetGatewayRequest) (response GetInternetGatewayResponse, err error) { @@ -7629,12 +7630,12 @@ func (client VirtualNetworkClient) getInternetGateway(ctx context.Context, reque // The operation returns configuration information for all tunnels in the single specified // IPSecConnection object. Here are other similar // operations: -// * GetTunnelCpeDeviceConfigContent -// returns CPE configuration content for a specific tunnel within an IPSec connection. -// * GetCpeDeviceConfigContent -// returns CPE configuration content for *all* IPSec connections that use a specific CPE. +// - GetTunnelCpeDeviceConfigContent +// returns CPE configuration content for a specific tunnel within an IPSec connection. +// - GetCpeDeviceConfigContent +// returns CPE configuration content for *all* IPSec connections that use a specific CPE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetIpsecCpeDeviceConfigContent.go.html to see an example of how to use GetIpsecCpeDeviceConfigContent API. // A default retry strategy applies to this operation GetIpsecCpeDeviceConfigContent() @@ -7694,7 +7695,7 @@ func (client VirtualNetworkClient) getIpsecCpeDeviceConfigContent(ctx context.Co // ListIpv6s // with the IPv6 address (for example, 2001:0db8:0123:1111:98fe:dcba:9876:4321) and subnet OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetIpv6.go.html to see an example of how to use GetIpv6 API. func (client VirtualNetworkClient) GetIpv6(ctx context.Context, request GetIpv6Request) (response GetIpv6Response, err error) { @@ -7751,7 +7752,7 @@ func (client VirtualNetworkClient) getIpv6(ctx context.Context, request common.O // GetLocalPeeringGateway Gets the specified local peering gateway's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetLocalPeeringGateway.go.html to see an example of how to use GetLocalPeeringGateway API. func (client VirtualNetworkClient) GetLocalPeeringGateway(ctx context.Context, request GetLocalPeeringGatewayRequest) (response GetLocalPeeringGatewayResponse, err error) { @@ -7808,7 +7809,7 @@ func (client VirtualNetworkClient) getLocalPeeringGateway(ctx context.Context, r // GetNatGateway Gets the specified NAT gateway's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetNatGateway.go.html to see an example of how to use GetNatGateway API. func (client VirtualNetworkClient) GetNatGateway(ctx context.Context, request GetNatGatewayRequest) (response GetNatGatewayResponse, err error) { @@ -7869,7 +7870,7 @@ func (client VirtualNetworkClient) getNatGateway(ctx context.Context, request co // To list the security rules in an NSG, see // ListNetworkSecurityGroupSecurityRules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetNetworkSecurityGroup.go.html to see an example of how to use GetNetworkSecurityGroup API. func (client VirtualNetworkClient) GetNetworkSecurityGroup(ctx context.Context, request GetNetworkSecurityGroupRequest) (response GetNetworkSecurityGroupResponse, err error) { @@ -7926,7 +7927,7 @@ func (client VirtualNetworkClient) getNetworkSecurityGroup(ctx context.Context, // GetNetworkingTopology Gets a virtual networking topology for the current region. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetNetworkingTopology.go.html to see an example of how to use GetNetworkingTopology API. func (client VirtualNetworkClient) GetNetworkingTopology(ctx context.Context, request GetNetworkingTopologyRequest) (response GetNetworkingTopologyResponse, err error) { @@ -7986,7 +7987,7 @@ func (client VirtualNetworkClient) getNetworkingTopology(ctx context.Context, re // ListPrivateIps // with the private IP address (for example, 10.0.3.3) and subnet OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetPrivateIp.go.html to see an example of how to use GetPrivateIp API. func (client VirtualNetworkClient) GetPrivateIp(ctx context.Context, request GetPrivateIpRequest) (response GetPrivateIpResponse, err error) { @@ -8050,7 +8051,7 @@ func (client VirtualNetworkClient) getPrivateIp(ctx context.Context, request com // moved to a different private IP, the service returns the public IP object with // `lifecycleState` = ASSIGNING and `assignedEntityId` = OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target private IP. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetPublicIp.go.html to see an example of how to use GetPublicIp API. func (client VirtualNetworkClient) GetPublicIp(ctx context.Context, request GetPublicIpRequest) (response GetPublicIpResponse, err error) { @@ -8110,7 +8111,7 @@ func (client VirtualNetworkClient) getPublicIp(ctx context.Context, request comm // moved to a different private IP, the service returns the public IP object with // `lifecycleState` = ASSIGNING and `assignedEntityId` = OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target private IP. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetPublicIpByIpAddress.go.html to see an example of how to use GetPublicIpByIpAddress API. func (client VirtualNetworkClient) GetPublicIpByIpAddress(ctx context.Context, request GetPublicIpByIpAddressRequest) (response GetPublicIpByIpAddressResponse, err error) { @@ -8176,7 +8177,7 @@ func (client VirtualNetworkClient) getPublicIpByIpAddress(ctx context.Context, r // service returns the public IP object with `lifecycleState` = ASSIGNING and // `assignedEntityId` = OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target private IP. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetPublicIpByPrivateIpId.go.html to see an example of how to use GetPublicIpByPrivateIpId API. func (client VirtualNetworkClient) GetPublicIpByPrivateIpId(ctx context.Context, request GetPublicIpByPrivateIpIdRequest) (response GetPublicIpByPrivateIpIdResponse, err error) { @@ -8233,7 +8234,7 @@ func (client VirtualNetworkClient) getPublicIpByPrivateIpId(ctx context.Context, // GetPublicIpPool Gets the specified `PublicIpPool` object. You must specify the object's OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetPublicIpPool.go.html to see an example of how to use GetPublicIpPool API. func (client VirtualNetworkClient) GetPublicIpPool(ctx context.Context, request GetPublicIpPoolRequest) (response GetPublicIpPoolResponse, err error) { @@ -8290,7 +8291,7 @@ func (client VirtualNetworkClient) getPublicIpPool(ctx context.Context, request // GetRemotePeeringConnection Get the specified remote peering connection's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetRemotePeeringConnection.go.html to see an example of how to use GetRemotePeeringConnection API. // A default retry strategy applies to this operation GetRemotePeeringConnection() @@ -8348,7 +8349,7 @@ func (client VirtualNetworkClient) getRemotePeeringConnection(ctx context.Contex // GetRouteTable Gets the specified route table's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetRouteTable.go.html to see an example of how to use GetRouteTable API. func (client VirtualNetworkClient) GetRouteTable(ctx context.Context, request GetRouteTableRequest) (response GetRouteTableResponse, err error) { @@ -8405,7 +8406,7 @@ func (client VirtualNetworkClient) getRouteTable(ctx context.Context, request co // GetSecurityList Gets the specified security list's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetSecurityList.go.html to see an example of how to use GetSecurityList API. func (client VirtualNetworkClient) GetSecurityList(ctx context.Context, request GetSecurityListRequest) (response GetSecurityListResponse, err error) { @@ -8462,7 +8463,7 @@ func (client VirtualNetworkClient) getSecurityList(ctx context.Context, request // GetService Gets the specified Service object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetService.go.html to see an example of how to use GetService API. func (client VirtualNetworkClient) GetService(ctx context.Context, request GetServiceRequest) (response GetServiceResponse, err error) { @@ -8519,7 +8520,7 @@ func (client VirtualNetworkClient) getService(ctx context.Context, request commo // GetServiceGateway Gets the specified service gateway's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetServiceGateway.go.html to see an example of how to use GetServiceGateway API. func (client VirtualNetworkClient) GetServiceGateway(ctx context.Context, request GetServiceGatewayRequest) (response GetServiceGatewayResponse, err error) { @@ -8576,7 +8577,7 @@ func (client VirtualNetworkClient) getServiceGateway(ctx context.Context, reques // GetSubnet Gets the specified subnet's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetSubnet.go.html to see an example of how to use GetSubnet API. func (client VirtualNetworkClient) GetSubnet(ctx context.Context, request GetSubnetRequest) (response GetSubnetResponse, err error) { @@ -8633,7 +8634,7 @@ func (client VirtualNetworkClient) getSubnet(ctx context.Context, request common // GetSubnetTopology Gets a topology for a given subnet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetSubnetTopology.go.html to see an example of how to use GetSubnetTopology API. func (client VirtualNetworkClient) GetSubnetTopology(ctx context.Context, request GetSubnetTopologyRequest) (response GetSubnetTopologyResponse, err error) { @@ -8694,7 +8695,7 @@ func (client VirtualNetworkClient) getSubnetTopology(ctx context.Context, reques // information specific to the CPE device type), use // GetTunnelCpeDeviceConfigContent. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetTunnelCpeDeviceConfig.go.html to see an example of how to use GetTunnelCpeDeviceConfig API. // A default retry strategy applies to this operation GetTunnelCpeDeviceConfig() @@ -8761,12 +8762,12 @@ func (client VirtualNetworkClient) getTunnelCpeDeviceConfig(ctx context.Context, // merged with a template of other information specific to the CPE device type. // The operation returns configuration information for only the specified IPSec tunnel. // Here are other similar operations: -// * GetIpsecCpeDeviceConfigContent -// returns CPE configuration content for all tunnels in a single IPSec connection. -// * GetCpeDeviceConfigContent -// returns CPE configuration content for *all* IPSec connections that use a specific CPE. +// - GetIpsecCpeDeviceConfigContent +// returns CPE configuration content for all tunnels in a single IPSec connection. +// - GetCpeDeviceConfigContent +// returns CPE configuration content for *all* IPSec connections that use a specific CPE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetTunnelCpeDeviceConfigContent.go.html to see an example of how to use GetTunnelCpeDeviceConfigContent API. // A default retry strategy applies to this operation GetTunnelCpeDeviceConfigContent() @@ -8823,7 +8824,7 @@ func (client VirtualNetworkClient) getTunnelCpeDeviceConfigContent(ctx context.C // GetUpgradeStatus Returns the DRG upgrade status. The status can be not updated, in progress, or updated. Also indicates how much of the upgrade is completed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetUpgradeStatus.go.html to see an example of how to use GetUpgradeStatus API. func (client VirtualNetworkClient) GetUpgradeStatus(ctx context.Context, request GetUpgradeStatusRequest) (response GetUpgradeStatusResponse, err error) { @@ -8880,7 +8881,7 @@ func (client VirtualNetworkClient) getUpgradeStatus(ctx context.Context, request // GetVcn Gets the specified VCN's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVcn.go.html to see an example of how to use GetVcn API. func (client VirtualNetworkClient) GetVcn(ctx context.Context, request GetVcnRequest) (response GetVcnResponse, err error) { @@ -8937,7 +8938,7 @@ func (client VirtualNetworkClient) getVcn(ctx context.Context, request common.OC // GetVcnDnsResolverAssociation Get the associated DNS resolver information with a vcn // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVcnDnsResolverAssociation.go.html to see an example of how to use GetVcnDnsResolverAssociation API. func (client VirtualNetworkClient) GetVcnDnsResolverAssociation(ctx context.Context, request GetVcnDnsResolverAssociationRequest) (response GetVcnDnsResolverAssociationResponse, err error) { @@ -8994,7 +8995,7 @@ func (client VirtualNetworkClient) getVcnDnsResolverAssociation(ctx context.Cont // GetVcnTopology Gets a virtual network topology for a given VCN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVcnTopology.go.html to see an example of how to use GetVcnTopology API. func (client VirtualNetworkClient) GetVcnTopology(ctx context.Context, request GetVcnTopologyRequest) (response GetVcnTopologyResponse, err error) { @@ -9051,7 +9052,7 @@ func (client VirtualNetworkClient) getVcnTopology(ctx context.Context, request c // GetVirtualCircuit Gets the specified virtual circuit's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVirtualCircuit.go.html to see an example of how to use GetVirtualCircuit API. // A default retry strategy applies to this operation GetVirtualCircuit() @@ -9109,7 +9110,7 @@ func (client VirtualNetworkClient) getVirtualCircuit(ctx context.Context, reques // GetVlan Gets the specified VLAN's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVlan.go.html to see an example of how to use GetVlan API. func (client VirtualNetworkClient) GetVlan(ctx context.Context, request GetVlanRequest) (response GetVlanResponse, err error) { @@ -9169,7 +9170,7 @@ func (client VirtualNetworkClient) getVlan(ctx context.Context, request common.O // ListVnicAttachments // operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVnic.go.html to see an example of how to use GetVnic API. func (client VirtualNetworkClient) GetVnic(ctx context.Context, request GetVnicRequest) (response GetVnicResponse, err error) { @@ -9226,7 +9227,7 @@ func (client VirtualNetworkClient) getVnic(ctx context.Context, request common.O // GetVtap Gets the specified `Vtap` resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/GetVtap.go.html to see an example of how to use GetVtap API. func (client VirtualNetworkClient) GetVtap(ctx context.Context, request GetVtapRequest) (response GetVtapResponse, err error) { @@ -9284,7 +9285,7 @@ func (client VirtualNetworkClient) getVtap(ctx context.Context, request common.O // ListAllowedPeerRegionsForRemotePeering Lists the regions that support remote VCN peering (which is peering across regions). // For more information, see VCN Peering (https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/VCNpeering.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListAllowedPeerRegionsForRemotePeering.go.html to see an example of how to use ListAllowedPeerRegionsForRemotePeering API. // A default retry strategy applies to this operation ListAllowedPeerRegionsForRemotePeering() @@ -9343,7 +9344,7 @@ func (client VirtualNetworkClient) listAllowedPeerRegionsForRemotePeering(ctx co // ListByoipAllocatedRanges Lists the subranges of a BYOIP CIDR block currently allocated to an IP pool. // Each `ByoipAllocatedRange` object also lists the IP pool where it is allocated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListByoipAllocatedRanges.go.html to see an example of how to use ListByoipAllocatedRanges API. func (client VirtualNetworkClient) ListByoipAllocatedRanges(ctx context.Context, request ListByoipAllocatedRangesRequest) (response ListByoipAllocatedRangesResponse, err error) { @@ -9401,7 +9402,7 @@ func (client VirtualNetworkClient) listByoipAllocatedRanges(ctx context.Context, // ListByoipRanges Lists the `ByoipRange` resources in the specified compartment. // You can filter the list using query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListByoipRanges.go.html to see an example of how to use ListByoipRanges API. func (client VirtualNetworkClient) ListByoipRanges(ctx context.Context, request ListByoipRangesRequest) (response ListByoipRangesResponse, err error) { @@ -9458,7 +9459,7 @@ func (client VirtualNetworkClient) listByoipRanges(ctx context.Context, request // ListCaptureFilters Lists the capture filters in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListCaptureFilters.go.html to see an example of how to use ListCaptureFilters API. func (client VirtualNetworkClient) ListCaptureFilters(ctx context.Context, request ListCaptureFiltersRequest) (response ListCaptureFiltersResponse, err error) { @@ -9520,11 +9521,11 @@ func (client VirtualNetworkClient) listCaptureFilters(ctx context.Context, reque // ensure that the Cpe object's `cpeDeviceShapeId` attribute is set // to the CPE device type's OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) (returned by this operation). // For information about generating CPE configuration content, see these operations: -// * GetCpeDeviceConfigContent -// * GetIpsecCpeDeviceConfigContent -// * GetTunnelCpeDeviceConfigContent +// - GetCpeDeviceConfigContent +// - GetIpsecCpeDeviceConfigContent +// - GetTunnelCpeDeviceConfigContent // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListCpeDeviceShapes.go.html to see an example of how to use ListCpeDeviceShapes API. // A default retry strategy applies to this operation ListCpeDeviceShapes() @@ -9582,7 +9583,7 @@ func (client VirtualNetworkClient) listCpeDeviceShapes(ctx context.Context, requ // ListCpes Lists the customer-premises equipment objects (CPEs) in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListCpes.go.html to see an example of how to use ListCpes API. // A default retry strategy applies to this operation ListCpes() @@ -9640,7 +9641,7 @@ func (client VirtualNetworkClient) listCpes(ctx context.Context, request common. // ListCrossConnectGroups Lists the cross-connect groups in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListCrossConnectGroups.go.html to see an example of how to use ListCrossConnectGroups API. // A default retry strategy applies to this operation ListCrossConnectGroups() @@ -9699,7 +9700,7 @@ func (client VirtualNetworkClient) listCrossConnectGroups(ctx context.Context, r // ListCrossConnectLocations Lists the available FastConnect locations for cross-connect installation. You need // this information so you can specify your desired location when you create a cross-connect. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListCrossConnectLocations.go.html to see an example of how to use ListCrossConnectLocations API. // A default retry strategy applies to this operation ListCrossConnectLocations() @@ -9758,7 +9759,7 @@ func (client VirtualNetworkClient) listCrossConnectLocations(ctx context.Context // ListCrossConnectMappings Lists the Cross Connect mapping Details for the specified // virtual circuit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListCrossConnectMappings.go.html to see an example of how to use ListCrossConnectMappings API. // A default retry strategy applies to this operation ListCrossConnectMappings() @@ -9817,7 +9818,7 @@ func (client VirtualNetworkClient) listCrossConnectMappings(ctx context.Context, // ListCrossConnects Lists the cross-connects in the specified compartment. You can filter the list // by specifying the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a cross-connect group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListCrossConnects.go.html to see an example of how to use ListCrossConnects API. // A default retry strategy applies to this operation ListCrossConnects() @@ -9877,7 +9878,7 @@ func (client VirtualNetworkClient) listCrossConnects(ctx context.Context, reques // so you can specify your desired port speed (that is, shape) when you create a // cross-connect. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListCrossconnectPortSpeedShapes.go.html to see an example of how to use ListCrossconnectPortSpeedShapes API. // A default retry strategy applies to this operation ListCrossconnectPortSpeedShapes() @@ -9938,7 +9939,7 @@ func (client VirtualNetworkClient) listCrossconnectPortSpeedShapes(ctx context.C // The response includes the default set of options that automatically comes with each VCN, // plus any other sets you've created. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDhcpOptions.go.html to see an example of how to use ListDhcpOptions API. func (client VirtualNetworkClient) ListDhcpOptions(ctx context.Context, request ListDhcpOptionsRequest) (response ListDhcpOptionsResponse, err error) { @@ -9999,7 +10000,7 @@ func (client VirtualNetworkClient) listDhcpOptions(ctx context.Context, request // The LIST API lists DRG attachments by attachment type. It will default to list VCN attachments, // but you may request to list ALL attachments of ALL types. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDrgAttachments.go.html to see an example of how to use ListDrgAttachments API. func (client VirtualNetworkClient) ListDrgAttachments(ctx context.Context, request ListDrgAttachmentsRequest) (response ListDrgAttachmentsResponse, err error) { @@ -10056,7 +10057,7 @@ func (client VirtualNetworkClient) listDrgAttachments(ctx context.Context, reque // ListDrgRouteDistributionStatements Lists the statements for the specified route distribution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDrgRouteDistributionStatements.go.html to see an example of how to use ListDrgRouteDistributionStatements API. func (client VirtualNetworkClient) ListDrgRouteDistributionStatements(ctx context.Context, request ListDrgRouteDistributionStatementsRequest) (response ListDrgRouteDistributionStatementsResponse, err error) { @@ -10115,7 +10116,7 @@ func (client VirtualNetworkClient) listDrgRouteDistributionStatements(ctx contex // To retrieve the statements in a distribution, use the // ListDrgRouteDistributionStatements operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDrgRouteDistributions.go.html to see an example of how to use ListDrgRouteDistributions API. func (client VirtualNetworkClient) ListDrgRouteDistributions(ctx context.Context, request ListDrgRouteDistributionsRequest) (response ListDrgRouteDistributionsResponse, err error) { @@ -10172,7 +10173,7 @@ func (client VirtualNetworkClient) listDrgRouteDistributions(ctx context.Context // ListDrgRouteRules Lists the route rules in the specified DRG route table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDrgRouteRules.go.html to see an example of how to use ListDrgRouteRules API. func (client VirtualNetworkClient) ListDrgRouteRules(ctx context.Context, request ListDrgRouteRulesRequest) (response ListDrgRouteRulesResponse, err error) { @@ -10230,7 +10231,7 @@ func (client VirtualNetworkClient) listDrgRouteRules(ctx context.Context, reques // ListDrgRouteTables Lists the DRG route tables for the specified DRG. // Use the `ListDrgRouteRules` operation to retrieve the route rules in a table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDrgRouteTables.go.html to see an example of how to use ListDrgRouteTables API. func (client VirtualNetworkClient) ListDrgRouteTables(ctx context.Context, request ListDrgRouteTablesRequest) (response ListDrgRouteTablesResponse, err error) { @@ -10287,7 +10288,7 @@ func (client VirtualNetworkClient) listDrgRouteTables(ctx context.Context, reque // ListDrgs Lists the DRGs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListDrgs.go.html to see an example of how to use ListDrgs API. func (client VirtualNetworkClient) ListDrgs(ctx context.Context, request ListDrgsRequest) (response ListDrgsResponse, err error) { @@ -10348,7 +10349,7 @@ func (client VirtualNetworkClient) listDrgs(ctx context.Context, request common. // For the compartment ID, provide the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of your tenancy (the root compartment). // For more information, see FastConnect Overview (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListFastConnectProviderServices.go.html to see an example of how to use ListFastConnectProviderServices API. // A default retry strategy applies to this operation ListFastConnectProviderServices() @@ -10408,7 +10409,7 @@ func (client VirtualNetworkClient) listFastConnectProviderServices(ctx context.C // You need this information so you can specify your desired bandwidth level (shape) when you create a virtual circuit. // For more information about virtual circuits, see FastConnect Overview (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListFastConnectProviderVirtualCircuitBandwidthShapes.go.html to see an example of how to use ListFastConnectProviderVirtualCircuitBandwidthShapes API. // A default retry strategy applies to this operation ListFastConnectProviderVirtualCircuitBandwidthShapes() @@ -10466,7 +10467,7 @@ func (client VirtualNetworkClient) listFastConnectProviderVirtualCircuitBandwidt // ListIPSecConnectionTunnelRoutes The routes advertised to the on-premises network and the routes received from the on-premises network. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListIPSecConnectionTunnelRoutes.go.html to see an example of how to use ListIPSecConnectionTunnelRoutes API. // A default retry strategy applies to this operation ListIPSecConnectionTunnelRoutes() @@ -10524,7 +10525,7 @@ func (client VirtualNetworkClient) listIPSecConnectionTunnelRoutes(ctx context.C // ListIPSecConnectionTunnelSecurityAssociations Lists the tunnel security associations information for the specified IPSec tunnel ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListIPSecConnectionTunnelSecurityAssociations.go.html to see an example of how to use ListIPSecConnectionTunnelSecurityAssociations API. // A default retry strategy applies to this operation ListIPSecConnectionTunnelSecurityAssociations() @@ -10582,7 +10583,7 @@ func (client VirtualNetworkClient) listIPSecConnectionTunnelSecurityAssociations // ListIPSecConnectionTunnels Lists the tunnel information for the specified IPSec connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListIPSecConnectionTunnels.go.html to see an example of how to use ListIPSecConnectionTunnels API. // A default retry strategy applies to this operation ListIPSecConnectionTunnels() @@ -10641,7 +10642,7 @@ func (client VirtualNetworkClient) listIPSecConnectionTunnels(ctx context.Contex // ListIPSecConnections Lists the IPSec connections for the specified compartment. You can filter the // results by DRG or CPE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListIPSecConnections.go.html to see an example of how to use ListIPSecConnections API. // A default retry strategy applies to this operation ListIPSecConnections() @@ -10700,7 +10701,7 @@ func (client VirtualNetworkClient) listIPSecConnections(ctx context.Context, req // ListInternetGateways Lists the internet gateways in the specified VCN and the specified compartment. // If the VCN ID is not provided, then the list includes the internet gateways from all VCNs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListInternetGateways.go.html to see an example of how to use ListInternetGateways API. func (client VirtualNetworkClient) ListInternetGateways(ctx context.Context, request ListInternetGatewaysRequest) (response ListInternetGatewaysResponse, err error) { @@ -10757,13 +10758,13 @@ func (client VirtualNetworkClient) listInternetGateways(ctx context.Context, req // ListIpv6s Lists the Ipv6 objects based // on one of these filters: -// * Subnet OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). -// * VNIC OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). -// * Both IPv6 address and subnet OCID: This lets you get an `Ipv6` object based on its private -// IPv6 address (for example, 2001:0db8:0123:1111:abcd:ef01:2345:6789) and not its OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). For comparison, -// GetIpv6 requires the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). +// - Subnet OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). +// - VNIC OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). +// - Both IPv6 address and subnet OCID: This lets you get an `Ipv6` object based on its private +// IPv6 address (for example, 2001:0db8:0123:1111:abcd:ef01:2345:6789) and not its OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). For comparison, +// GetIpv6 requires the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListIpv6s.go.html to see an example of how to use ListIpv6s API. func (client VirtualNetworkClient) ListIpv6s(ctx context.Context, request ListIpv6sRequest) (response ListIpv6sResponse, err error) { @@ -10821,7 +10822,7 @@ func (client VirtualNetworkClient) listIpv6s(ctx context.Context, request common // ListLocalPeeringGateways Lists the local peering gateways (LPGs) for the specified VCN and specified compartment. // If the VCN ID is not provided, then the list includes the LPGs from all VCNs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListLocalPeeringGateways.go.html to see an example of how to use ListLocalPeeringGateways API. func (client VirtualNetworkClient) ListLocalPeeringGateways(ctx context.Context, request ListLocalPeeringGatewaysRequest) (response ListLocalPeeringGatewaysResponse, err error) { @@ -10879,7 +10880,7 @@ func (client VirtualNetworkClient) listLocalPeeringGateways(ctx context.Context, // ListNatGateways Lists the NAT gateways in the specified compartment. You may optionally specify a VCN OCID // to filter the results by VCN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListNatGateways.go.html to see an example of how to use ListNatGateways API. func (client VirtualNetworkClient) ListNatGateways(ctx context.Context, request ListNatGatewaysRequest) (response ListNatGatewaysResponse, err error) { @@ -10936,7 +10937,7 @@ func (client VirtualNetworkClient) listNatGateways(ctx context.Context, request // ListNetworkSecurityGroupSecurityRules Lists the security rules in the specified network security group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListNetworkSecurityGroupSecurityRules.go.html to see an example of how to use ListNetworkSecurityGroupSecurityRules API. func (client VirtualNetworkClient) ListNetworkSecurityGroupSecurityRules(ctx context.Context, request ListNetworkSecurityGroupSecurityRulesRequest) (response ListNetworkSecurityGroupSecurityRulesResponse, err error) { @@ -10993,7 +10994,7 @@ func (client VirtualNetworkClient) listNetworkSecurityGroupSecurityRules(ctx con // ListNetworkSecurityGroupVnics Lists the VNICs in the specified network security group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListNetworkSecurityGroupVnics.go.html to see an example of how to use ListNetworkSecurityGroupVnics API. func (client VirtualNetworkClient) ListNetworkSecurityGroupVnics(ctx context.Context, request ListNetworkSecurityGroupVnicsRequest) (response ListNetworkSecurityGroupVnicsResponse, err error) { @@ -11051,7 +11052,7 @@ func (client VirtualNetworkClient) listNetworkSecurityGroupVnics(ctx context.Con // ListNetworkSecurityGroups Lists either the network security groups in the specified compartment, or those associated with the specified VLAN. // You must specify either a `vlanId` or a `compartmentId`, but not both. If you specify a `vlanId`, all other parameters are ignored. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListNetworkSecurityGroups.go.html to see an example of how to use ListNetworkSecurityGroups API. func (client VirtualNetworkClient) ListNetworkSecurityGroups(ctx context.Context, request ListNetworkSecurityGroupsRequest) (response ListNetworkSecurityGroupsResponse, err error) { @@ -11111,16 +11112,17 @@ func (client VirtualNetworkClient) listNetworkSecurityGroups(ctx context.Context // - Subnet OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // - VNIC OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // - Both private IP address and subnet OCID: This lets -// you get a `privateIP` object based on its private IP -// address (for example, 10.0.3.3) and not its OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). For comparison, -// GetPrivateIp -// requires the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). +// you get a `privateIP` object based on its private IP +// address (for example, 10.0.3.3) and not its OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). For comparison, +// GetPrivateIp +// requires the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). +// // If you're listing all the private IPs associated with a given subnet // or VNIC, the response includes both primary and secondary private IPs. // If you are an Oracle Cloud VMware Solution customer and have VLANs // in your VCN, you can filter the list by VLAN OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). See Vlan. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListPrivateIps.go.html to see an example of how to use ListPrivateIps API. func (client VirtualNetworkClient) ListPrivateIps(ctx context.Context, request ListPrivateIpsRequest) (response ListPrivateIpsResponse, err error) { @@ -11178,7 +11180,7 @@ func (client VirtualNetworkClient) listPrivateIps(ctx context.Context, request c // ListPublicIpPools Lists the public IP pools in the specified compartment. // You can filter the list using query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListPublicIpPools.go.html to see an example of how to use ListPublicIpPools API. func (client VirtualNetworkClient) ListPublicIpPools(ctx context.Context, request ListPublicIpPoolsRequest) (response ListPublicIpPoolsResponse, err error) { @@ -11236,21 +11238,24 @@ func (client VirtualNetworkClient) listPublicIpPools(ctx context.Context, reques // ListPublicIps Lists the PublicIp objects // in the specified compartment. You can filter the list by using query parameters. // To list your reserved public IPs: -// * Set `scope` = `REGION` (required) -// * Leave the `availabilityDomain` parameter empty -// * Set `lifetime` = `RESERVED` +// - Set `scope` = `REGION` (required) +// - Leave the `availabilityDomain` parameter empty +// - Set `lifetime` = `RESERVED` +// // To list the ephemeral public IPs assigned to a regional entity such as a NAT gateway: -// * Set `scope` = `REGION` (required) -// * Leave the `availabilityDomain` parameter empty -// * Set `lifetime` = `EPHEMERAL` +// - Set `scope` = `REGION` (required) +// - Leave the `availabilityDomain` parameter empty +// - Set `lifetime` = `EPHEMERAL` +// // To list the ephemeral public IPs assigned to private IPs: -// * Set `scope` = `AVAILABILITY_DOMAIN` (required) -// * Set the `availabilityDomain` parameter to the desired availability domain (required) -// * Set `lifetime` = `EPHEMERAL` +// - Set `scope` = `AVAILABILITY_DOMAIN` (required) +// - Set the `availabilityDomain` parameter to the desired availability domain (required) +// - Set `lifetime` = `EPHEMERAL` +// // **Note:** An ephemeral public IP assigned to a private IP // is always in the same availability domain and compartment as the private IP. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListPublicIps.go.html to see an example of how to use ListPublicIps API. func (client VirtualNetworkClient) ListPublicIps(ctx context.Context, request ListPublicIpsRequest) (response ListPublicIpsResponse, err error) { @@ -11308,7 +11313,7 @@ func (client VirtualNetworkClient) listPublicIps(ctx context.Context, request co // ListRemotePeeringConnections Lists the remote peering connections (RPCs) for the specified DRG and compartment // (the RPC's compartment). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListRemotePeeringConnections.go.html to see an example of how to use ListRemotePeeringConnections API. // A default retry strategy applies to this operation ListRemotePeeringConnections() @@ -11369,7 +11374,7 @@ func (client VirtualNetworkClient) listRemotePeeringConnections(ctx context.Cont // The response includes the default route table that automatically comes with // each VCN in the specified compartment, plus any route tables you've created. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListRouteTables.go.html to see an example of how to use ListRouteTables API. func (client VirtualNetworkClient) ListRouteTables(ctx context.Context, request ListRouteTablesRequest) (response ListRouteTablesResponse, err error) { @@ -11427,7 +11432,7 @@ func (client VirtualNetworkClient) listRouteTables(ctx context.Context, request // ListSecurityLists Lists the security lists in the specified VCN and compartment. // If the VCN ID is not provided, then the list includes the security lists from all VCNs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListSecurityLists.go.html to see an example of how to use ListSecurityLists API. func (client VirtualNetworkClient) ListSecurityLists(ctx context.Context, request ListSecurityListsRequest) (response ListSecurityListsResponse, err error) { @@ -11485,7 +11490,7 @@ func (client VirtualNetworkClient) listSecurityLists(ctx context.Context, reques // ListServiceGateways Lists the service gateways in the specified compartment. You may optionally specify a VCN OCID // to filter the results by VCN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListServiceGateways.go.html to see an example of how to use ListServiceGateways API. func (client VirtualNetworkClient) ListServiceGateways(ctx context.Context, request ListServiceGatewaysRequest) (response ListServiceGatewaysResponse, err error) { @@ -11543,7 +11548,7 @@ func (client VirtualNetworkClient) listServiceGateways(ctx context.Context, requ // ListServices Lists the available Service objects that you can enable for a // service gateway in this region. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListServices.go.html to see an example of how to use ListServices API. func (client VirtualNetworkClient) ListServices(ctx context.Context, request ListServicesRequest) (response ListServicesResponse, err error) { @@ -11601,7 +11606,7 @@ func (client VirtualNetworkClient) listServices(ctx context.Context, request com // ListSubnets Lists the subnets in the specified VCN and the specified compartment. // If the VCN ID is not provided, then the list includes the subnets from all VCNs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListSubnets.go.html to see an example of how to use ListSubnets API. func (client VirtualNetworkClient) ListSubnets(ctx context.Context, request ListSubnetsRequest) (response ListSubnetsResponse, err error) { @@ -11658,7 +11663,7 @@ func (client VirtualNetworkClient) listSubnets(ctx context.Context, request comm // ListVcns Lists the virtual cloud networks (VCNs) in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVcns.go.html to see an example of how to use ListVcns API. func (client VirtualNetworkClient) ListVcns(ctx context.Context, request ListVcnsRequest) (response ListVcnsResponse, err error) { @@ -11715,7 +11720,7 @@ func (client VirtualNetworkClient) listVcns(ctx context.Context, request common. // ListVirtualCircuitAssociatedTunnels Gets the specified virtual circuit's associatedTunnelsInfo. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVirtualCircuitAssociatedTunnels.go.html to see an example of how to use ListVirtualCircuitAssociatedTunnels API. // A default retry strategy applies to this operation ListVirtualCircuitAssociatedTunnels() @@ -11773,7 +11778,7 @@ func (client VirtualNetworkClient) listVirtualCircuitAssociatedTunnels(ctx conte // ListVirtualCircuitBandwidthShapes The deprecated operation lists available bandwidth levels for virtual circuits. For the compartment ID, provide the OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of your tenancy (the root compartment). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVirtualCircuitBandwidthShapes.go.html to see an example of how to use ListVirtualCircuitBandwidthShapes API. // A default retry strategy applies to this operation ListVirtualCircuitBandwidthShapes() @@ -11832,7 +11837,7 @@ func (client VirtualNetworkClient) listVirtualCircuitBandwidthShapes(ctx context // ListVirtualCircuitPublicPrefixes Lists the public IP prefixes and their details for the specified // public virtual circuit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVirtualCircuitPublicPrefixes.go.html to see an example of how to use ListVirtualCircuitPublicPrefixes API. // A default retry strategy applies to this operation ListVirtualCircuitPublicPrefixes() @@ -11890,7 +11895,7 @@ func (client VirtualNetworkClient) listVirtualCircuitPublicPrefixes(ctx context. // ListVirtualCircuits Lists the virtual circuits in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVirtualCircuits.go.html to see an example of how to use ListVirtualCircuits API. // A default retry strategy applies to this operation ListVirtualCircuits() @@ -11948,7 +11953,7 @@ func (client VirtualNetworkClient) listVirtualCircuits(ctx context.Context, requ // ListVlans Lists the VLANs in the specified VCN and the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVlans.go.html to see an example of how to use ListVlans API. func (client VirtualNetworkClient) ListVlans(ctx context.Context, request ListVlansRequest) (response ListVlansResponse, err error) { @@ -12005,7 +12010,7 @@ func (client VirtualNetworkClient) listVlans(ctx context.Context, request common // ListVtaps Lists the virtual test access points (VTAPs) in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ListVtaps.go.html to see an example of how to use ListVtaps API. func (client VirtualNetworkClient) ListVtaps(ctx context.Context, request ListVtapsRequest) (response ListVtapsResponse, err error) { @@ -12068,7 +12073,7 @@ func (client VirtualNetworkClient) listVtaps(ctx context.Context, request common // - No IP address in an existing subnet should be outside of the new CIDR block range. // **Note:** Modifying a CIDR block places your VCN in an updating state until the changes are complete. You cannot create or update the VCN's subnets, VLANs, LPGs, or route tables during this operation. The time to completion can vary depending on the size of your network. Updating a small network could take about a minute, and updating a large network could take up to an hour. You can use the `GetWorkRequest` operation to check the status of the update. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ModifyVcnCidr.go.html to see an example of how to use ModifyVcnCidr API. func (client VirtualNetworkClient) ModifyVcnCidr(ctx context.Context, request ModifyVcnCidrRequest) (response ModifyVcnCidrResponse, err error) { @@ -12130,7 +12135,7 @@ func (client VirtualNetworkClient) modifyVcnCidr(ctx context.Context, request co // RemoveDrgRouteDistributionStatements Removes one or more route distribution statements from the specified route distribution's map. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemoveDrgRouteDistributionStatements.go.html to see an example of how to use RemoveDrgRouteDistributionStatements API. func (client VirtualNetworkClient) RemoveDrgRouteDistributionStatements(ctx context.Context, request RemoveDrgRouteDistributionStatementsRequest) (response RemoveDrgRouteDistributionStatementsResponse, err error) { @@ -12187,7 +12192,7 @@ func (client VirtualNetworkClient) removeDrgRouteDistributionStatements(ctx cont // RemoveDrgRouteRules Removes one or more route rules from the specified DRG route table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemoveDrgRouteRules.go.html to see an example of how to use RemoveDrgRouteRules API. func (client VirtualNetworkClient) RemoveDrgRouteRules(ctx context.Context, request RemoveDrgRouteRulesRequest) (response RemoveDrgRouteRulesResponse, err error) { @@ -12244,7 +12249,7 @@ func (client VirtualNetworkClient) removeDrgRouteRules(ctx context.Context, requ // RemoveExportDrgRouteDistribution Removes the export route distribution from the DRG attachment so no routes are advertised to it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemoveExportDrgRouteDistribution.go.html to see an example of how to use RemoveExportDrgRouteDistribution API. func (client VirtualNetworkClient) RemoveExportDrgRouteDistribution(ctx context.Context, request RemoveExportDrgRouteDistributionRequest) (response RemoveExportDrgRouteDistributionResponse, err error) { @@ -12302,7 +12307,7 @@ func (client VirtualNetworkClient) removeExportDrgRouteDistribution(ctx context. // RemoveImportDrgRouteDistribution Removes the import route distribution from the DRG route table so no routes are imported // into it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemoveImportDrgRouteDistribution.go.html to see an example of how to use RemoveImportDrgRouteDistribution API. func (client VirtualNetworkClient) RemoveImportDrgRouteDistribution(ctx context.Context, request RemoveImportDrgRouteDistributionRequest) (response RemoveImportDrgRouteDistributionResponse, err error) { @@ -12359,7 +12364,7 @@ func (client VirtualNetworkClient) removeImportDrgRouteDistribution(ctx context. // RemoveIpv6SubnetCidr Remove an IPv6 prefix from a subnet. At least one IPv6 CIDR should remain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemoveIpv6SubnetCidr.go.html to see an example of how to use RemoveIpv6SubnetCidr API. func (client VirtualNetworkClient) RemoveIpv6SubnetCidr(ctx context.Context, request RemoveIpv6SubnetCidrRequest) (response RemoveIpv6SubnetCidrResponse, err error) { @@ -12421,7 +12426,7 @@ func (client VirtualNetworkClient) removeIpv6SubnetCidr(ctx context.Context, req // RemoveIpv6VcnCidr Removing an existing IPv6 prefix from a VCN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemoveIpv6VcnCidr.go.html to see an example of how to use RemoveIpv6VcnCidr API. func (client VirtualNetworkClient) RemoveIpv6VcnCidr(ctx context.Context, request RemoveIpv6VcnCidrRequest) (response RemoveIpv6VcnCidrResponse, err error) { @@ -12483,7 +12488,7 @@ func (client VirtualNetworkClient) removeIpv6VcnCidr(ctx context.Context, reques // RemoveNetworkSecurityGroupSecurityRules Removes one or more security rules from the specified network security group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemoveNetworkSecurityGroupSecurityRules.go.html to see an example of how to use RemoveNetworkSecurityGroupSecurityRules API. func (client VirtualNetworkClient) RemoveNetworkSecurityGroupSecurityRules(ctx context.Context, request RemoveNetworkSecurityGroupSecurityRulesRequest) (response RemoveNetworkSecurityGroupSecurityRulesResponse, err error) { @@ -12540,7 +12545,7 @@ func (client VirtualNetworkClient) removeNetworkSecurityGroupSecurityRules(ctx c // RemovePublicIpPoolCapacity Removes a CIDR block from the referenced public IP pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemovePublicIpPoolCapacity.go.html to see an example of how to use RemovePublicIpPoolCapacity API. func (client VirtualNetworkClient) RemovePublicIpPoolCapacity(ctx context.Context, request RemovePublicIpPoolCapacityRequest) (response RemovePublicIpPoolCapacityResponse, err error) { @@ -12605,7 +12610,7 @@ func (client VirtualNetworkClient) removePublicIpPoolCapacity(ctx context.Contex // - You cannot remove a CIDR block if an IP address in its range is in use. // - Removing a CIDR block places your VCN in an updating state until the changes are complete. You cannot create or update the VCN's subnets, VLANs, LPGs, or route tables during this operation. The time to completion can take a few minutes. You can use the `GetWorkRequest` operation to check the status of the update. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/RemoveVcnCidr.go.html to see an example of how to use RemoveVcnCidr API. func (client VirtualNetworkClient) RemoveVcnCidr(ctx context.Context, request RemoveVcnCidrRequest) (response RemoveVcnCidrResponse, err error) { @@ -12667,7 +12672,7 @@ func (client VirtualNetworkClient) removeVcnCidr(ctx context.Context, request co // UpdateByoipRange Updates the tags or display name associated to the specified BYOIP CIDR block. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateByoipRange.go.html to see an example of how to use UpdateByoipRange API. func (client VirtualNetworkClient) UpdateByoipRange(ctx context.Context, request UpdateByoipRangeRequest) (response UpdateByoipRangeResponse, err error) { @@ -12724,7 +12729,7 @@ func (client VirtualNetworkClient) updateByoipRange(ctx context.Context, request // UpdateCaptureFilter Updates the specified VTAP capture filter's display name or tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateCaptureFilter.go.html to see an example of how to use UpdateCaptureFilter API. func (client VirtualNetworkClient) UpdateCaptureFilter(ctx context.Context, request UpdateCaptureFilterRequest) (response UpdateCaptureFilterResponse, err error) { @@ -12782,7 +12787,7 @@ func (client VirtualNetworkClient) updateCaptureFilter(ctx context.Context, requ // UpdateCpe Updates the specified CPE's display name or tags. // Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateCpe.go.html to see an example of how to use UpdateCpe API. // A default retry strategy applies to this operation UpdateCpe() @@ -12840,7 +12845,7 @@ func (client VirtualNetworkClient) updateCpe(ctx context.Context, request common // UpdateCrossConnect Updates the specified cross-connect. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateCrossConnect.go.html to see an example of how to use UpdateCrossConnect API. // A default retry strategy applies to this operation UpdateCrossConnect() @@ -12899,7 +12904,7 @@ func (client VirtualNetworkClient) updateCrossConnect(ctx context.Context, reque // UpdateCrossConnectGroup Updates the specified cross-connect group's display name. // Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateCrossConnectGroup.go.html to see an example of how to use UpdateCrossConnectGroup API. // A default retry strategy applies to this operation UpdateCrossConnectGroup() @@ -12959,7 +12964,7 @@ func (client VirtualNetworkClient) updateCrossConnectGroup(ctx context.Context, // themselves. Avoid entering confidential information. // Note that the `options` object you provide replaces the entire existing set of options. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateDhcpOptions.go.html to see an example of how to use UpdateDhcpOptions API. func (client VirtualNetworkClient) UpdateDhcpOptions(ctx context.Context, request UpdateDhcpOptionsRequest) (response UpdateDhcpOptionsResponse, err error) { @@ -13016,7 +13021,7 @@ func (client VirtualNetworkClient) updateDhcpOptions(ctx context.Context, reques // UpdateDrg Updates the specified DRG's display name or tags. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateDrg.go.html to see an example of how to use UpdateDrg API. func (client VirtualNetworkClient) UpdateDrg(ctx context.Context, request UpdateDrgRequest) (response UpdateDrgResponse, err error) { @@ -13074,7 +13079,7 @@ func (client VirtualNetworkClient) updateDrg(ctx context.Context, request common // UpdateDrgAttachment Updates the display name and routing information for the specified `DrgAttachment`. // Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateDrgAttachment.go.html to see an example of how to use UpdateDrgAttachment API. func (client VirtualNetworkClient) UpdateDrgAttachment(ctx context.Context, request UpdateDrgAttachmentRequest) (response UpdateDrgAttachmentResponse, err error) { @@ -13131,7 +13136,7 @@ func (client VirtualNetworkClient) updateDrgAttachment(ctx context.Context, requ // UpdateDrgRouteDistribution Updates the specified route distribution // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateDrgRouteDistribution.go.html to see an example of how to use UpdateDrgRouteDistribution API. func (client VirtualNetworkClient) UpdateDrgRouteDistribution(ctx context.Context, request UpdateDrgRouteDistributionRequest) (response UpdateDrgRouteDistributionResponse, err error) { @@ -13188,7 +13193,7 @@ func (client VirtualNetworkClient) updateDrgRouteDistribution(ctx context.Contex // UpdateDrgRouteDistributionStatements Updates one or more route distribution statements in the specified route distribution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateDrgRouteDistributionStatements.go.html to see an example of how to use UpdateDrgRouteDistributionStatements API. func (client VirtualNetworkClient) UpdateDrgRouteDistributionStatements(ctx context.Context, request UpdateDrgRouteDistributionStatementsRequest) (response UpdateDrgRouteDistributionStatementsResponse, err error) { @@ -13245,7 +13250,7 @@ func (client VirtualNetworkClient) updateDrgRouteDistributionStatements(ctx cont // UpdateDrgRouteRules Updates one or more route rules in the specified DRG route table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateDrgRouteRules.go.html to see an example of how to use UpdateDrgRouteRules API. func (client VirtualNetworkClient) UpdateDrgRouteRules(ctx context.Context, request UpdateDrgRouteRulesRequest) (response UpdateDrgRouteRulesResponse, err error) { @@ -13302,7 +13307,7 @@ func (client VirtualNetworkClient) updateDrgRouteRules(ctx context.Context, requ // UpdateDrgRouteTable Updates the specified DRG route table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateDrgRouteTable.go.html to see an example of how to use UpdateDrgRouteTable API. func (client VirtualNetworkClient) UpdateDrgRouteTable(ctx context.Context, request UpdateDrgRouteTableRequest) (response UpdateDrgRouteTableResponse, err error) { @@ -13361,7 +13366,7 @@ func (client VirtualNetworkClient) updateDrgRouteTable(ctx context.Context, requ // To update an individual IPSec tunnel's attributes, use // UpdateIPSecConnectionTunnel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateIPSecConnection.go.html to see an example of how to use UpdateIPSecConnection API. // A default retry strategy applies to this operation UpdateIPSecConnection() @@ -13419,15 +13424,15 @@ func (client VirtualNetworkClient) updateIPSecConnection(ctx context.Context, re // UpdateIPSecConnectionTunnel Updates the specified tunnel. This operation lets you change tunnel attributes such as the // routing type (BGP dynamic routing or static routing). Here are some important notes: -// * If you change the tunnel's routing type or BGP session configuration, the tunnel will go +// - If you change the tunnel's routing type or BGP session configuration, the tunnel will go // down while it's reprovisioned. -// * If you want to switch the tunnel's `routing` from `STATIC` to `BGP`, make sure the tunnel's +// - If you want to switch the tunnel's `routing` from `STATIC` to `BGP`, make sure the tunnel's // BGP session configuration attributes have been set (BgpSessionInfo). -// * If you want to switch the tunnel's `routing` from `BGP` to `STATIC`, make sure the +// - If you want to switch the tunnel's `routing` from `BGP` to `STATIC`, make sure the // IPSecConnection already has at least one valid CIDR // static route. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateIPSecConnectionTunnel.go.html to see an example of how to use UpdateIPSecConnectionTunnel API. // A default retry strategy applies to this operation UpdateIPSecConnectionTunnel() @@ -13486,7 +13491,7 @@ func (client VirtualNetworkClient) updateIPSecConnectionTunnel(ctx context.Conte // UpdateIPSecConnectionTunnelSharedSecret Updates the shared secret (pre-shared key) for the specified tunnel. // **Important:** If you change the shared secret, the tunnel will go down while it's reprovisioned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateIPSecConnectionTunnelSharedSecret.go.html to see an example of how to use UpdateIPSecConnectionTunnelSharedSecret API. // A default retry strategy applies to this operation UpdateIPSecConnectionTunnelSharedSecret() @@ -13547,7 +13552,7 @@ func (client VirtualNetworkClient) updateIPSecConnectionTunnelSharedSecret(ctx c // If the gateway is disabled, that means no traffic will flow to/from the internet even if there's // a route rule that enables that traffic. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateInternetGateway.go.html to see an example of how to use UpdateInternetGateway API. func (client VirtualNetworkClient) UpdateInternetGateway(ctx context.Context, request UpdateInternetGatewayRequest) (response UpdateInternetGatewayResponse, err error) { @@ -13604,12 +13609,12 @@ func (client VirtualNetworkClient) updateInternetGateway(ctx context.Context, re // UpdateIpv6 Updates the specified IPv6. You must specify the object's OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // Use this operation if you want to: -// * Move an IPv6 to a different VNIC in the same subnet. -// * Enable/disable internet access for an IPv6. -// * Change the display name for an IPv6. -// * Update resource tags for an IPv6. +// - Move an IPv6 to a different VNIC in the same subnet. +// - Enable/disable internet access for an IPv6. +// - Change the display name for an IPv6. +// - Update resource tags for an IPv6. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateIpv6.go.html to see an example of how to use UpdateIpv6 API. func (client VirtualNetworkClient) UpdateIpv6(ctx context.Context, request UpdateIpv6Request) (response UpdateIpv6Response, err error) { @@ -13666,7 +13671,7 @@ func (client VirtualNetworkClient) updateIpv6(ctx context.Context, request commo // UpdateLocalPeeringGateway Updates the specified local peering gateway (LPG). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateLocalPeeringGateway.go.html to see an example of how to use UpdateLocalPeeringGateway API. func (client VirtualNetworkClient) UpdateLocalPeeringGateway(ctx context.Context, request UpdateLocalPeeringGatewayRequest) (response UpdateLocalPeeringGatewayResponse, err error) { @@ -13723,7 +13728,7 @@ func (client VirtualNetworkClient) updateLocalPeeringGateway(ctx context.Context // UpdateNatGateway Updates the specified NAT gateway. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateNatGateway.go.html to see an example of how to use UpdateNatGateway API. func (client VirtualNetworkClient) UpdateNatGateway(ctx context.Context, request UpdateNatGatewayRequest) (response UpdateNatGatewayResponse, err error) { @@ -13790,7 +13795,7 @@ func (client VirtualNetworkClient) updateNatGateway(ctx context.Context, request // To edit the contents of existing security rules in the group, use // UpdateNetworkSecurityGroupSecurityRules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateNetworkSecurityGroup.go.html to see an example of how to use UpdateNetworkSecurityGroup API. func (client VirtualNetworkClient) UpdateNetworkSecurityGroup(ctx context.Context, request UpdateNetworkSecurityGroupRequest) (response UpdateNetworkSecurityGroupResponse, err error) { @@ -13847,7 +13852,7 @@ func (client VirtualNetworkClient) updateNetworkSecurityGroup(ctx context.Contex // UpdateNetworkSecurityGroupSecurityRules Updates one or more security rules in the specified network security group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateNetworkSecurityGroupSecurityRules.go.html to see an example of how to use UpdateNetworkSecurityGroupSecurityRules API. func (client VirtualNetworkClient) UpdateNetworkSecurityGroupSecurityRules(ctx context.Context, request UpdateNetworkSecurityGroupSecurityRulesRequest) (response UpdateNetworkSecurityGroupSecurityRulesResponse, err error) { @@ -13907,11 +13912,12 @@ func (client VirtualNetworkClient) updateNetworkSecurityGroupSecurityRules(ctx c // - Move a secondary private IP to a different VNIC in the same subnet. // - Change the display name for a secondary private IP. // - Change the hostname for a secondary private IP. +// // This operation cannot be used with primary private IPs. // To update the hostname for the primary IP on a VNIC, use // UpdateVnic. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdatePrivateIp.go.html to see an example of how to use UpdatePrivateIp API. func (client VirtualNetworkClient) UpdatePrivateIp(ctx context.Context, request UpdatePrivateIpRequest) (response UpdatePrivateIpResponse, err error) { @@ -13999,7 +14005,7 @@ func (client VirtualNetworkClient) updatePrivateIp(ctx context.Context, request // returned. For information about the public IP limits, see // Public IP Addresses (https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingpublicIPs.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdatePublicIp.go.html to see an example of how to use UpdatePublicIp API. func (client VirtualNetworkClient) UpdatePublicIp(ctx context.Context, request UpdatePublicIpRequest) (response UpdatePublicIpResponse, err error) { @@ -14056,7 +14062,7 @@ func (client VirtualNetworkClient) updatePublicIp(ctx context.Context, request c // UpdatePublicIpPool Updates the specified public IP pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdatePublicIpPool.go.html to see an example of how to use UpdatePublicIpPool API. func (client VirtualNetworkClient) UpdatePublicIpPool(ctx context.Context, request UpdatePublicIpPoolRequest) (response UpdatePublicIpPoolResponse, err error) { @@ -14113,7 +14119,7 @@ func (client VirtualNetworkClient) updatePublicIpPool(ctx context.Context, reque // UpdateRemotePeeringConnection Updates the specified remote peering connection (RPC). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateRemotePeeringConnection.go.html to see an example of how to use UpdateRemotePeeringConnection API. // A default retry strategy applies to this operation UpdateRemotePeeringConnection() @@ -14173,7 +14179,7 @@ func (client VirtualNetworkClient) updateRemotePeeringConnection(ctx context.Con // Avoid entering confidential information. // Note that the `routeRules` object you provide replaces the entire existing set of rules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateRouteTable.go.html to see an example of how to use UpdateRouteTable API. func (client VirtualNetworkClient) UpdateRouteTable(ctx context.Context, request UpdateRouteTableRequest) (response UpdateRouteTableResponse, err error) { @@ -14233,7 +14239,7 @@ func (client VirtualNetworkClient) updateRouteTable(ctx context.Context, request // Note that the `egressSecurityRules` or `ingressSecurityRules` objects you provide replace the entire // existing objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateSecurityList.go.html to see an example of how to use UpdateSecurityList API. func (client VirtualNetworkClient) UpdateSecurityList(ctx context.Context, request UpdateSecurityListRequest) (response UpdateSecurityListResponse, err error) { @@ -14291,7 +14297,7 @@ func (client VirtualNetworkClient) updateSecurityList(ctx context.Context, reque // UpdateServiceGateway Updates the specified service gateway. The information you provide overwrites the existing // attributes of the gateway. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateServiceGateway.go.html to see an example of how to use UpdateServiceGateway API. func (client VirtualNetworkClient) UpdateServiceGateway(ctx context.Context, request UpdateServiceGatewayRequest) (response UpdateServiceGatewayResponse, err error) { @@ -14348,7 +14354,7 @@ func (client VirtualNetworkClient) updateServiceGateway(ctx context.Context, req // UpdateSubnet Updates the specified subnet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateSubnet.go.html to see an example of how to use UpdateSubnet API. func (client VirtualNetworkClient) UpdateSubnet(ctx context.Context, request UpdateSubnetRequest) (response UpdateSubnetResponse, err error) { @@ -14407,7 +14413,7 @@ func (client VirtualNetworkClient) updateSubnet(ctx context.Context, request com // The answers correlate to the questions that are specific to the CPE device type (see the // `parameters` attribute of CpeDeviceShapeDetail). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateTunnelCpeDeviceConfig.go.html to see an example of how to use UpdateTunnelCpeDeviceConfig API. // A default retry strategy applies to this operation UpdateTunnelCpeDeviceConfig() @@ -14470,7 +14476,7 @@ func (client VirtualNetworkClient) updateTunnelCpeDeviceConfig(ctx context.Conte // UpdateVcn Updates the specified VCN. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVcn.go.html to see an example of how to use UpdateVcn API. func (client VirtualNetworkClient) UpdateVcn(ctx context.Context, request UpdateVcnRequest) (response UpdateVcnResponse, err error) { @@ -14548,7 +14554,7 @@ func (client VirtualNetworkClient) updateVcn(ctx context.Context, request common // Oracle must verify the customer's ownership of each added prefix before // traffic for that prefix will flow across the virtual circuit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVirtualCircuit.go.html to see an example of how to use UpdateVirtualCircuit API. // A default retry strategy applies to this operation UpdateVirtualCircuit() @@ -14607,7 +14613,7 @@ func (client VirtualNetworkClient) updateVirtualCircuit(ctx context.Context, req // UpdateVlan Updates the specified VLAN. Note that this operation might require changes to all // the VNICs in the VLAN, which can take a while. The VLAN will be in the UPDATING state until the changes are complete. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVlan.go.html to see an example of how to use UpdateVlan API. func (client VirtualNetworkClient) UpdateVlan(ctx context.Context, request UpdateVlanRequest) (response UpdateVlanResponse, err error) { @@ -14664,7 +14670,7 @@ func (client VirtualNetworkClient) updateVlan(ctx context.Context, request commo // UpdateVnic Updates the specified VNIC. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVnic.go.html to see an example of how to use UpdateVnic API. func (client VirtualNetworkClient) UpdateVnic(ctx context.Context, request UpdateVnicRequest) (response UpdateVnicResponse, err error) { @@ -14721,7 +14727,7 @@ func (client VirtualNetworkClient) updateVnic(ctx context.Context, request commo // UpdateVtap Updates the specified VTAP's display name or tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpdateVtap.go.html to see an example of how to use UpdateVtap API. func (client VirtualNetworkClient) UpdateVtap(ctx context.Context, request UpdateVtapRequest) (response UpdateVtapResponse, err error) { @@ -14779,7 +14785,7 @@ func (client VirtualNetworkClient) updateVtap(ctx context.Context, request commo // UpgradeDrg Upgrades the DRG. After upgrade, you can control routing inside your DRG // via DRG attachments, route distributions, and DRG route tables. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/UpgradeDrg.go.html to see an example of how to use UpgradeDrg API. func (client VirtualNetworkClient) UpgradeDrg(ctx context.Context, request UpgradeDrgRequest) (response UpgradeDrgResponse, err error) { @@ -14842,7 +14848,7 @@ func (client VirtualNetworkClient) upgradeDrg(ctx context.Context, request commo // ValidateByoipRange Submits the BYOIP CIDR block you are importing for validation. Do not submit to Oracle for validation if you have not already // modified the information for the BYOIP CIDR block with your Regional Internet Registry. See To import a CIDR block (https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/BYOIP.htm#import_cidr) for details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/ValidateByoipRange.go.html to see an example of how to use ValidateByoipRange API. func (client VirtualNetworkClient) ValidateByoipRange(ctx context.Context, request ValidateByoipRangeRequest) (response ValidateByoipRangeResponse, err error) { @@ -14899,7 +14905,7 @@ func (client VirtualNetworkClient) validateByoipRange(ctx context.Context, reque // WithdrawByoipRange Withdraws BGP route advertisement for the BYOIP CIDR block. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/core/WithdrawByoipRange.go.html to see an example of how to use WithdrawByoipRange API. func (client VirtualNetworkClient) WithdrawByoipRange(ctx context.Context, request WithdrawByoipRangeRequest) (response WithdrawByoipRangeResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/create_instance_configuration_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/create_instance_configuration_details.go index 9686ca2f563..a7ad77e12ee 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/create_instance_configuration_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/create_instance_configuration_details.go @@ -46,22 +46,22 @@ type CreateInstanceConfigurationDetails struct { FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateInstanceConfigurationDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateInstanceConfigurationDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateInstanceConfigurationDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateInstanceConfigurationDetails) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/create_instance_configuration_from_instance_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/create_instance_configuration_from_instance_details.go index 4471fa44c0a..fa3fc298fcf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/create_instance_configuration_from_instance_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/create_instance_configuration_from_instance_details.go @@ -48,22 +48,22 @@ type CreateInstanceConfigurationFromInstanceDetails struct { FreeformTags map[string]string `mandatory:"false" json:"freeformTags"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateInstanceConfigurationFromInstanceDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateInstanceConfigurationFromInstanceDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateInstanceConfigurationFromInstanceDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateInstanceConfigurationFromInstanceDetails) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/emulated_volume_attachment.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/emulated_volume_attachment.go index 7509762f142..c8e18dea5af 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/emulated_volume_attachment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/emulated_volume_attachment.go @@ -75,72 +75,72 @@ type EmulatedVolumeAttachment struct { IscsiLoginState VolumeAttachmentIscsiLoginStateEnum `mandatory:"false" json:"iscsiLoginState,omitempty"` } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m EmulatedVolumeAttachment) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m EmulatedVolumeAttachment) GetCompartmentId() *string { return m.CompartmentId } -//GetDevice returns Device +// GetDevice returns Device func (m EmulatedVolumeAttachment) GetDevice() *string { return m.Device } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m EmulatedVolumeAttachment) GetDisplayName() *string { return m.DisplayName } -//GetId returns Id +// GetId returns Id func (m EmulatedVolumeAttachment) GetId() *string { return m.Id } -//GetInstanceId returns InstanceId +// GetInstanceId returns InstanceId func (m EmulatedVolumeAttachment) GetInstanceId() *string { return m.InstanceId } -//GetIsReadOnly returns IsReadOnly +// GetIsReadOnly returns IsReadOnly func (m EmulatedVolumeAttachment) GetIsReadOnly() *bool { return m.IsReadOnly } -//GetIsShareable returns IsShareable +// GetIsShareable returns IsShareable func (m EmulatedVolumeAttachment) GetIsShareable() *bool { return m.IsShareable } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m EmulatedVolumeAttachment) GetLifecycleState() VolumeAttachmentLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m EmulatedVolumeAttachment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetVolumeId returns VolumeId +// GetVolumeId returns VolumeId func (m EmulatedVolumeAttachment) GetVolumeId() *string { return m.VolumeId } -//GetIsPvEncryptionInTransitEnabled returns IsPvEncryptionInTransitEnabled +// GetIsPvEncryptionInTransitEnabled returns IsPvEncryptionInTransitEnabled func (m EmulatedVolumeAttachment) GetIsPvEncryptionInTransitEnabled() *bool { return m.IsPvEncryptionInTransitEnabled } -//GetIsMultipath returns IsMultipath +// GetIsMultipath returns IsMultipath func (m EmulatedVolumeAttachment) GetIsMultipath() *bool { return m.IsMultipath } -//GetIscsiLoginState returns IscsiLoginState +// GetIscsiLoginState returns IscsiLoginState func (m EmulatedVolumeAttachment) GetIscsiLoginState() VolumeAttachmentIscsiLoginStateEnum { return m.IscsiLoginState } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/enum_integer_image_capability_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/enum_integer_image_capability_descriptor.go index 09046414c66..8072e212f3f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/enum_integer_image_capability_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/enum_integer_image_capability_descriptor.go @@ -34,7 +34,7 @@ type EnumIntegerImageCapabilityDescriptor struct { Source ImageCapabilitySchemaDescriptorSourceEnum `mandatory:"true" json:"source"` } -//GetSource returns Source +// GetSource returns Source func (m EnumIntegerImageCapabilityDescriptor) GetSource() ImageCapabilitySchemaDescriptorSourceEnum { return m.Source } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/enum_string_image_capability_schema_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/enum_string_image_capability_schema_descriptor.go index ef74a0ed4ed..ed6ec505969 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/enum_string_image_capability_schema_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/enum_string_image_capability_schema_descriptor.go @@ -34,7 +34,7 @@ type EnumStringImageCapabilitySchemaDescriptor struct { Source ImageCapabilitySchemaDescriptorSourceEnum `mandatory:"true" json:"source"` } -//GetSource returns Source +// GetSource returns Source func (m EnumStringImageCapabilitySchemaDescriptor) GetSource() ImageCapabilitySchemaDescriptorSourceEnum { return m.Source } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/export_image_via_object_storage_tuple_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/export_image_via_object_storage_tuple_details.go index 08ee65fcd7d..66595f703fb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/export_image_via_object_storage_tuple_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/export_image_via_object_storage_tuple_details.go @@ -45,7 +45,7 @@ type ExportImageViaObjectStorageTupleDetails struct { ExportFormat ExportImageDetailsExportFormatEnum `mandatory:"false" json:"exportFormat,omitempty"` } -//GetExportFormat returns ExportFormat +// GetExportFormat returns ExportFormat func (m ExportImageViaObjectStorageTupleDetails) GetExportFormat() ExportImageDetailsExportFormatEnum { return m.ExportFormat } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/export_image_via_object_storage_uri_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/export_image_via_object_storage_uri_details.go index 2e8956a2b16..63c3c87078b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/export_image_via_object_storage_uri_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/export_image_via_object_storage_uri_details.go @@ -42,7 +42,7 @@ type ExportImageViaObjectStorageUriDetails struct { ExportFormat ExportImageDetailsExportFormatEnum `mandatory:"false" json:"exportFormat,omitempty"` } -//GetExportFormat returns ExportFormat +// GetExportFormat returns ExportFormat func (m ExportImageViaObjectStorageUriDetails) GetExportFormat() ExportImageDetailsExportFormatEnum { return m.ExportFormat } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/generic_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/generic_bm_launch_instance_platform_config.go index e6c023c0725..2611d7e98cf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/generic_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/generic_bm_launch_instance_platform_config.go @@ -71,22 +71,22 @@ type GenericBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket GenericBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m GenericBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m GenericBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m GenericBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m GenericBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/generic_bm_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/generic_bm_platform_config.go index 65e954a8096..ec09424bdc8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/generic_bm_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/generic_bm_platform_config.go @@ -71,22 +71,22 @@ type GenericBmPlatformConfig struct { NumaNodesPerSocket GenericBmPlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m GenericBmPlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m GenericBmPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m GenericBmPlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m GenericBmPlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/i_scsi_volume_attachment.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/i_scsi_volume_attachment.go index 8594488684a..ace8eb3d56b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/i_scsi_volume_attachment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/i_scsi_volume_attachment.go @@ -108,72 +108,72 @@ type IScsiVolumeAttachment struct { EncryptionInTransitType EncryptionInTransitTypeEnum `mandatory:"false" json:"encryptionInTransitType,omitempty"` } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m IScsiVolumeAttachment) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m IScsiVolumeAttachment) GetCompartmentId() *string { return m.CompartmentId } -//GetDevice returns Device +// GetDevice returns Device func (m IScsiVolumeAttachment) GetDevice() *string { return m.Device } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m IScsiVolumeAttachment) GetDisplayName() *string { return m.DisplayName } -//GetId returns Id +// GetId returns Id func (m IScsiVolumeAttachment) GetId() *string { return m.Id } -//GetInstanceId returns InstanceId +// GetInstanceId returns InstanceId func (m IScsiVolumeAttachment) GetInstanceId() *string { return m.InstanceId } -//GetIsReadOnly returns IsReadOnly +// GetIsReadOnly returns IsReadOnly func (m IScsiVolumeAttachment) GetIsReadOnly() *bool { return m.IsReadOnly } -//GetIsShareable returns IsShareable +// GetIsShareable returns IsShareable func (m IScsiVolumeAttachment) GetIsShareable() *bool { return m.IsShareable } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m IScsiVolumeAttachment) GetLifecycleState() VolumeAttachmentLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m IScsiVolumeAttachment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetVolumeId returns VolumeId +// GetVolumeId returns VolumeId func (m IScsiVolumeAttachment) GetVolumeId() *string { return m.VolumeId } -//GetIsPvEncryptionInTransitEnabled returns IsPvEncryptionInTransitEnabled +// GetIsPvEncryptionInTransitEnabled returns IsPvEncryptionInTransitEnabled func (m IScsiVolumeAttachment) GetIsPvEncryptionInTransitEnabled() *bool { return m.IsPvEncryptionInTransitEnabled } -//GetIsMultipath returns IsMultipath +// GetIsMultipath returns IsMultipath func (m IScsiVolumeAttachment) GetIsMultipath() *bool { return m.IsMultipath } -//GetIscsiLoginState returns IscsiLoginState +// GetIscsiLoginState returns IscsiLoginState func (m IScsiVolumeAttachment) GetIscsiLoginState() VolumeAttachmentIscsiLoginStateEnum { return m.IscsiLoginState } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/image_source_via_object_storage_tuple_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/image_source_via_object_storage_tuple_details.go index 1eb6f753065..bd8d35901dd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/image_source_via_object_storage_tuple_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/image_source_via_object_storage_tuple_details.go @@ -43,17 +43,17 @@ type ImageSourceViaObjectStorageTupleDetails struct { SourceImageType ImageSourceDetailsSourceImageTypeEnum `mandatory:"false" json:"sourceImageType,omitempty"` } -//GetOperatingSystem returns OperatingSystem +// GetOperatingSystem returns OperatingSystem func (m ImageSourceViaObjectStorageTupleDetails) GetOperatingSystem() *string { return m.OperatingSystem } -//GetOperatingSystemVersion returns OperatingSystemVersion +// GetOperatingSystemVersion returns OperatingSystemVersion func (m ImageSourceViaObjectStorageTupleDetails) GetOperatingSystemVersion() *string { return m.OperatingSystemVersion } -//GetSourceImageType returns SourceImageType +// GetSourceImageType returns SourceImageType func (m ImageSourceViaObjectStorageTupleDetails) GetSourceImageType() ImageSourceDetailsSourceImageTypeEnum { return m.SourceImageType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/image_source_via_object_storage_uri_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/image_source_via_object_storage_uri_details.go index 2a1354c42a4..1399d96847c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/image_source_via_object_storage_uri_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/image_source_via_object_storage_uri_details.go @@ -37,17 +37,17 @@ type ImageSourceViaObjectStorageUriDetails struct { SourceImageType ImageSourceDetailsSourceImageTypeEnum `mandatory:"false" json:"sourceImageType,omitempty"` } -//GetOperatingSystem returns OperatingSystem +// GetOperatingSystem returns OperatingSystem func (m ImageSourceViaObjectStorageUriDetails) GetOperatingSystem() *string { return m.OperatingSystem } -//GetOperatingSystemVersion returns OperatingSystemVersion +// GetOperatingSystemVersion returns OperatingSystemVersion func (m ImageSourceViaObjectStorageUriDetails) GetOperatingSystemVersion() *string { return m.OperatingSystemVersion } -//GetSourceImageType returns SourceImageType +// GetSourceImageType returns SourceImageType func (m ImageSourceViaObjectStorageUriDetails) GetSourceImageType() ImageSourceDetailsSourceImageTypeEnum { return m.SourceImageType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.go index 4a5a8c289c2..a8929f8c03f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.go @@ -64,22 +64,22 @@ type InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig struct { NumaNodesPerSocket InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_milan_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_milan_bm_launch_instance_platform_config.go index 1ae553c1d73..c09305e0a78 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_milan_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_milan_bm_launch_instance_platform_config.go @@ -72,22 +72,22 @@ type InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.go index 6ee20b349d7..d2d522d7322 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.go @@ -64,22 +64,22 @@ type InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig struct { NumaNodesPerSocket InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_rome_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_rome_bm_launch_instance_platform_config.go index d58454726b7..df82c1007b2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_rome_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_rome_bm_launch_instance_platform_config.go @@ -72,22 +72,22 @@ type InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_vm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_vm_launch_instance_platform_config.go index 0b4c3e205d4..5f5bd998e74 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_vm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_amd_vm_launch_instance_platform_config.go @@ -38,22 +38,22 @@ type InstanceConfigurationAmdVmLaunchInstancePlatformConfig struct { IsMemoryEncryptionEnabled *bool `mandatory:"false" json:"isMemoryEncryptionEnabled"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m InstanceConfigurationAmdVmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m InstanceConfigurationAmdVmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m InstanceConfigurationAmdVmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m InstanceConfigurationAmdVmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_generic_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_generic_bm_launch_instance_platform_config.go index fee1e028e18..add104d5a64 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_generic_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_generic_bm_launch_instance_platform_config.go @@ -71,22 +71,22 @@ type InstanceConfigurationGenericBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket InstanceConfigurationGenericBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m InstanceConfigurationGenericBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m InstanceConfigurationGenericBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m InstanceConfigurationGenericBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m InstanceConfigurationGenericBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_icelake_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_icelake_bm_launch_instance_platform_config.go index 5fab63ed86c..07fcdd87c54 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_icelake_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_icelake_bm_launch_instance_platform_config.go @@ -64,22 +64,22 @@ type InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_skylake_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_skylake_bm_launch_instance_platform_config.go index d74b0644e7a..c6cd6888833 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_skylake_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_skylake_bm_launch_instance_platform_config.go @@ -64,22 +64,22 @@ type InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_vm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_vm_launch_instance_platform_config.go index 1790df1640d..c05abc44fff 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_vm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_intel_vm_launch_instance_platform_config.go @@ -38,22 +38,22 @@ type InstanceConfigurationIntelVmLaunchInstancePlatformConfig struct { IsMemoryEncryptionEnabled *bool `mandatory:"false" json:"isMemoryEncryptionEnabled"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m InstanceConfigurationIntelVmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m InstanceConfigurationIntelVmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m InstanceConfigurationIntelVmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m InstanceConfigurationIntelVmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_iscsi_attach_volume_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_iscsi_attach_volume_details.go index c895ab9eef2..3a903d603ad 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_iscsi_attach_volume_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_iscsi_attach_volume_details.go @@ -45,22 +45,22 @@ type InstanceConfigurationIscsiAttachVolumeDetails struct { UseChap *bool `mandatory:"false" json:"useChap"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m InstanceConfigurationIscsiAttachVolumeDetails) GetDisplayName() *string { return m.DisplayName } -//GetIsReadOnly returns IsReadOnly +// GetIsReadOnly returns IsReadOnly func (m InstanceConfigurationIscsiAttachVolumeDetails) GetIsReadOnly() *bool { return m.IsReadOnly } -//GetDevice returns Device +// GetDevice returns Device func (m InstanceConfigurationIscsiAttachVolumeDetails) GetDevice() *string { return m.Device } -//GetIsShareable returns IsShareable +// GetIsShareable returns IsShareable func (m InstanceConfigurationIscsiAttachVolumeDetails) GetIsShareable() *bool { return m.IsShareable } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_paravirtualized_attach_volume_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_paravirtualized_attach_volume_details.go index 331eb9dc97d..699c4fee8d6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_paravirtualized_attach_volume_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/instance_configuration_paravirtualized_attach_volume_details.go @@ -45,22 +45,22 @@ type InstanceConfigurationParavirtualizedAttachVolumeDetails struct { IsPvEncryptionInTransitEnabled *bool `mandatory:"false" json:"isPvEncryptionInTransitEnabled"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m InstanceConfigurationParavirtualizedAttachVolumeDetails) GetDisplayName() *string { return m.DisplayName } -//GetIsReadOnly returns IsReadOnly +// GetIsReadOnly returns IsReadOnly func (m InstanceConfigurationParavirtualizedAttachVolumeDetails) GetIsReadOnly() *bool { return m.IsReadOnly } -//GetDevice returns Device +// GetDevice returns Device func (m InstanceConfigurationParavirtualizedAttachVolumeDetails) GetDevice() *string { return m.Device } -//GetIsShareable returns IsShareable +// GetIsShareable returns IsShareable func (m InstanceConfigurationParavirtualizedAttachVolumeDetails) GetIsShareable() *bool { return m.IsShareable } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_icelake_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_icelake_bm_launch_instance_platform_config.go index 2b85872d02b..68afa5c5a4e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_icelake_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_icelake_bm_launch_instance_platform_config.go @@ -64,22 +64,22 @@ type IntelIcelakeBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket IntelIcelakeBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m IntelIcelakeBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m IntelIcelakeBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m IntelIcelakeBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m IntelIcelakeBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_icelake_bm_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_icelake_bm_platform_config.go index 61c58cebe27..ff9aad1e22c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_icelake_bm_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_icelake_bm_platform_config.go @@ -64,22 +64,22 @@ type IntelIcelakeBmPlatformConfig struct { NumaNodesPerSocket IntelIcelakeBmPlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m IntelIcelakeBmPlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m IntelIcelakeBmPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m IntelIcelakeBmPlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m IntelIcelakeBmPlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_skylake_bm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_skylake_bm_launch_instance_platform_config.go index b5ff9cd4be2..3085ea516a4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_skylake_bm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_skylake_bm_launch_instance_platform_config.go @@ -64,22 +64,22 @@ type IntelSkylakeBmLaunchInstancePlatformConfig struct { NumaNodesPerSocket IntelSkylakeBmLaunchInstancePlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m IntelSkylakeBmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m IntelSkylakeBmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m IntelSkylakeBmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m IntelSkylakeBmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_skylake_bm_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_skylake_bm_platform_config.go index 0096de1f8bd..203a553da02 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_skylake_bm_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_skylake_bm_platform_config.go @@ -64,22 +64,22 @@ type IntelSkylakeBmPlatformConfig struct { NumaNodesPerSocket IntelSkylakeBmPlatformConfigNumaNodesPerSocketEnum `mandatory:"false" json:"numaNodesPerSocket,omitempty"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m IntelSkylakeBmPlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m IntelSkylakeBmPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m IntelSkylakeBmPlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m IntelSkylakeBmPlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_vm_launch_instance_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_vm_launch_instance_platform_config.go index 88db02b9e57..bb67eaf7a9a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_vm_launch_instance_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_vm_launch_instance_platform_config.go @@ -38,22 +38,22 @@ type IntelVmLaunchInstancePlatformConfig struct { IsMemoryEncryptionEnabled *bool `mandatory:"false" json:"isMemoryEncryptionEnabled"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m IntelVmLaunchInstancePlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m IntelVmLaunchInstancePlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m IntelVmLaunchInstancePlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m IntelVmLaunchInstancePlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_vm_platform_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_vm_platform_config.go index 31e452065ec..f80035c0e05 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_vm_platform_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/intel_vm_platform_config.go @@ -38,22 +38,22 @@ type IntelVmPlatformConfig struct { IsMemoryEncryptionEnabled *bool `mandatory:"false" json:"isMemoryEncryptionEnabled"` } -//GetIsSecureBootEnabled returns IsSecureBootEnabled +// GetIsSecureBootEnabled returns IsSecureBootEnabled func (m IntelVmPlatformConfig) GetIsSecureBootEnabled() *bool { return m.IsSecureBootEnabled } -//GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled +// GetIsTrustedPlatformModuleEnabled returns IsTrustedPlatformModuleEnabled func (m IntelVmPlatformConfig) GetIsTrustedPlatformModuleEnabled() *bool { return m.IsTrustedPlatformModuleEnabled } -//GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled +// GetIsMeasuredBootEnabled returns IsMeasuredBootEnabled func (m IntelVmPlatformConfig) GetIsMeasuredBootEnabled() *bool { return m.IsMeasuredBootEnabled } -//GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled +// GetIsMemoryEncryptionEnabled returns IsMemoryEncryptionEnabled func (m IntelVmPlatformConfig) GetIsMemoryEncryptionEnabled() *bool { return m.IsMemoryEncryptionEnabled } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/ip_sec_connection_device_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/ip_sec_connection_device_config.go index 16c99636d20..ca5759bac7a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/ip_sec_connection_device_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/ip_sec_connection_device_config.go @@ -22,8 +22,8 @@ import ( ) // IpSecConnectionDeviceConfig Deprecated. For tunnel information, instead see: -// * IPSecConnectionTunnel -// * IPSecConnectionTunnelSharedSecret +// - IPSecConnectionTunnel +// - IPSecConnectionTunnelSharedSecret type IpSecConnectionDeviceConfig struct { // The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the IPSec connection. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/ipsec_tunnel_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/ipsec_tunnel_drg_attachment_network_details.go index f3be471efeb..6279c404d2a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/ipsec_tunnel_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/ipsec_tunnel_drg_attachment_network_details.go @@ -35,7 +35,7 @@ type IpsecTunnelDrgAttachmentNetworkDetails struct { TransportAttachmentId *string `mandatory:"false" json:"transportAttachmentId"` } -//GetId returns Id +// GetId returns Id func (m IpsecTunnelDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/loop_back_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/loop_back_drg_attachment_network_details.go index 3f35227ac95..f42cebfe1ed 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/loop_back_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/loop_back_drg_attachment_network_details.go @@ -32,7 +32,7 @@ type LoopBackDrgAttachmentNetworkDetails struct { Ids []string `mandatory:"false" json:"ids"` } -//GetId returns Id +// GetId returns Id func (m LoopBackDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/network_security_group.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/network_security_group.go index 50182e72d5a..cd91b8916fb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/network_security_group.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/network_security_group.go @@ -25,9 +25,10 @@ import ( // Vnic in a VCN. Compare NSGs with SecurityList, // which provide virtual firewall rules to all the VNICs in a *subnet*. // A network security group consists of two items: -// * The set of Vnic that all have the same security rule needs (for +// - The set of Vnic that all have the same security rule needs (for // example, a group of Compute instances all running the same application) -// * A set of NSG SecurityRule that apply to the VNICs in the group +// - A set of NSG SecurityRule that apply to the VNICs in the group +// // After creating an NSG, you can add VNICs and security rules to it. For example, when you create // an instance, you can specify one or more NSGs to add the instance to (see // CreateVnicDetails). Or you can add an existing @@ -43,9 +44,10 @@ import ( // **Important:** Oracle Cloud Infrastructure Compute service images automatically include firewall rules (for example, // Linux iptables, Windows firewall). If there are issues with some type of access to an instance, // make sure all of the following are set correctly: -// * Any security rules in any NSGs the instance's VNIC belongs to -// * Any SecurityList associated with the instance's subnet -// * The instance's OS firewall rules +// - Any security rules in any NSGs the instance's VNIC belongs to +// - Any SecurityList associated with the instance's subnet +// - The instance's OS firewall rules +// // To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, // talk to an administrator. If you're an administrator who needs to write policies to give users access, see // Getting Started with Policies (https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm). diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/networking_topology.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/networking_topology.go index d22c7474819..66ec91fe66c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/networking_topology.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/networking_topology.go @@ -42,22 +42,22 @@ type NetworkingTopology struct { TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"` } -//GetEntities returns Entities +// GetEntities returns Entities func (m NetworkingTopology) GetEntities() []interface{} { return m.Entities } -//GetRelationships returns Relationships +// GetRelationships returns Relationships func (m NetworkingTopology) GetRelationships() []TopologyEntityRelationship { return m.Relationships } -//GetLimitedEntities returns LimitedEntities +// GetLimitedEntities returns LimitedEntities func (m NetworkingTopology) GetLimitedEntities() []string { return m.LimitedEntities } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m NetworkingTopology) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/paravirtualized_volume_attachment.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/paravirtualized_volume_attachment.go index 5136083ef80..20ec86e0788 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/paravirtualized_volume_attachment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/paravirtualized_volume_attachment.go @@ -75,72 +75,72 @@ type ParavirtualizedVolumeAttachment struct { IscsiLoginState VolumeAttachmentIscsiLoginStateEnum `mandatory:"false" json:"iscsiLoginState,omitempty"` } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m ParavirtualizedVolumeAttachment) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ParavirtualizedVolumeAttachment) GetCompartmentId() *string { return m.CompartmentId } -//GetDevice returns Device +// GetDevice returns Device func (m ParavirtualizedVolumeAttachment) GetDevice() *string { return m.Device } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ParavirtualizedVolumeAttachment) GetDisplayName() *string { return m.DisplayName } -//GetId returns Id +// GetId returns Id func (m ParavirtualizedVolumeAttachment) GetId() *string { return m.Id } -//GetInstanceId returns InstanceId +// GetInstanceId returns InstanceId func (m ParavirtualizedVolumeAttachment) GetInstanceId() *string { return m.InstanceId } -//GetIsReadOnly returns IsReadOnly +// GetIsReadOnly returns IsReadOnly func (m ParavirtualizedVolumeAttachment) GetIsReadOnly() *bool { return m.IsReadOnly } -//GetIsShareable returns IsShareable +// GetIsShareable returns IsShareable func (m ParavirtualizedVolumeAttachment) GetIsShareable() *bool { return m.IsShareable } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ParavirtualizedVolumeAttachment) GetLifecycleState() VolumeAttachmentLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ParavirtualizedVolumeAttachment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetVolumeId returns VolumeId +// GetVolumeId returns VolumeId func (m ParavirtualizedVolumeAttachment) GetVolumeId() *string { return m.VolumeId } -//GetIsPvEncryptionInTransitEnabled returns IsPvEncryptionInTransitEnabled +// GetIsPvEncryptionInTransitEnabled returns IsPvEncryptionInTransitEnabled func (m ParavirtualizedVolumeAttachment) GetIsPvEncryptionInTransitEnabled() *bool { return m.IsPvEncryptionInTransitEnabled } -//GetIsMultipath returns IsMultipath +// GetIsMultipath returns IsMultipath func (m ParavirtualizedVolumeAttachment) GetIsMultipath() *bool { return m.IsMultipath } -//GetIscsiLoginState returns IscsiLoginState +// GetIscsiLoginState returns IscsiLoginState func (m ParavirtualizedVolumeAttachment) GetIscsiLoginState() VolumeAttachmentIscsiLoginStateEnum { return m.IscsiLoginState } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/remote_peering_connection_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/remote_peering_connection_drg_attachment_network_details.go index 54c170241e8..edf8a4b0307 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/remote_peering_connection_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/remote_peering_connection_drg_attachment_network_details.go @@ -29,7 +29,7 @@ type RemotePeeringConnectionDrgAttachmentNetworkDetails struct { Id *string `mandatory:"false" json:"id"` } -//GetId returns Id +// GetId returns Id func (m RemotePeeringConnectionDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/subnet_topology.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/subnet_topology.go index a9fa672bcaa..4524681a668 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/subnet_topology.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/subnet_topology.go @@ -45,22 +45,22 @@ type SubnetTopology struct { SubnetId *string `mandatory:"false" json:"subnetId"` } -//GetEntities returns Entities +// GetEntities returns Entities func (m SubnetTopology) GetEntities() []interface{} { return m.Entities } -//GetRelationships returns Relationships +// GetRelationships returns Relationships func (m SubnetTopology) GetRelationships() []TopologyEntityRelationship { return m.Relationships } -//GetLimitedEntities returns LimitedEntities +// GetLimitedEntities returns LimitedEntities func (m SubnetTopology) GetLimitedEntities() []string { return m.LimitedEntities } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SubnetTopology) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_associated_with_entity_relationship.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_associated_with_entity_relationship.go index c7feaa0a87d..d7dad14f3d9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_associated_with_entity_relationship.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_associated_with_entity_relationship.go @@ -37,12 +37,12 @@ type TopologyAssociatedWithEntityRelationship struct { AssociatedWithDetails *TopologyAssociatedWithRelationshipDetails `mandatory:"false" json:"associatedWithDetails"` } -//GetId1 returns Id1 +// GetId1 returns Id1 func (m TopologyAssociatedWithEntityRelationship) GetId1() *string { return m.Id1 } -//GetId2 returns Id2 +// GetId2 returns Id2 func (m TopologyAssociatedWithEntityRelationship) GetId2() *string { return m.Id2 } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_contains_entity_relationship.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_contains_entity_relationship.go index c531e35021e..22de1c1c498 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_contains_entity_relationship.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_contains_entity_relationship.go @@ -35,12 +35,12 @@ type TopologyContainsEntityRelationship struct { Id2 *string `mandatory:"true" json:"id2"` } -//GetId1 returns Id1 +// GetId1 returns Id1 func (m TopologyContainsEntityRelationship) GetId1() *string { return m.Id1 } -//GetId2 returns Id2 +// GetId2 returns Id2 func (m TopologyContainsEntityRelationship) GetId2() *string { return m.Id2 } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_routes_to_entity_relationship.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_routes_to_entity_relationship.go index 6f2512e711f..67c0d148eda 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_routes_to_entity_relationship.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/topology_routes_to_entity_relationship.go @@ -36,12 +36,12 @@ type TopologyRoutesToEntityRelationship struct { RouteRuleDetails *TopologyRoutesToRelationshipDetails `mandatory:"true" json:"routeRuleDetails"` } -//GetId1 returns Id1 +// GetId1 returns Id1 func (m TopologyRoutesToEntityRelationship) GetId1() *string { return m.Id1 } -//GetId2 returns Id2 +// GetId2 returns Id2 func (m TopologyRoutesToEntityRelationship) GetId2() *string { return m.Id2 } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/tunnel_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/tunnel_config.go index a417eb1d709..fc69f2355c9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/tunnel_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/tunnel_config.go @@ -22,8 +22,8 @@ import ( ) // TunnelConfig Deprecated. For tunnel information, instead see: -// * IPSecConnectionTunnel -// * IPSecConnectionTunnelSharedSecret +// - IPSecConnectionTunnel +// - IPSecConnectionTunnelSharedSecret type TunnelConfig struct { // The IP address of Oracle's VPN headend. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/tunnel_cpe_device_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/tunnel_cpe_device_config.go index 1a83014b11a..426c3f51709 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/tunnel_cpe_device_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/tunnel_cpe_device_config.go @@ -26,10 +26,10 @@ import ( // The answers correlate to the questions that are specific to the CPE device type (see the // `parameters` attribute of CpeDeviceShapeDetail). // See these related operations: -// * GetTunnelCpeDeviceConfig -// * GetTunnelCpeDeviceConfigContent -// * GetIpsecCpeDeviceConfigContent -// * GetCpeDeviceConfigContent +// - GetTunnelCpeDeviceConfig +// - GetTunnelCpeDeviceConfigContent +// - GetIpsecCpeDeviceConfigContent +// - GetCpeDeviceConfigContent type TunnelCpeDeviceConfig struct { TunnelCpeDeviceConfigParameter []CpeDeviceConfigAnswer `mandatory:"false" json:"tunnelCpeDeviceConfigParameter"` } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_drg_attachment_network_create_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_drg_attachment_network_create_details.go index 1164a08e20e..c4a6f201ac0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_drg_attachment_network_create_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_drg_attachment_network_create_details.go @@ -41,7 +41,7 @@ type VcnDrgAttachmentNetworkCreateDetails struct { VcnRouteType VcnDrgAttachmentNetworkDetailsVcnRouteTypeEnum `mandatory:"false" json:"vcnRouteType,omitempty"` } -//GetId returns Id +// GetId returns Id func (m VcnDrgAttachmentNetworkCreateDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_drg_attachment_network_details.go index 2fed45922e1..da0c5fbc233 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_drg_attachment_network_details.go @@ -39,7 +39,7 @@ type VcnDrgAttachmentNetworkDetails struct { VcnRouteType VcnDrgAttachmentNetworkDetailsVcnRouteTypeEnum `mandatory:"false" json:"vcnRouteType,omitempty"` } -//GetId returns Id +// GetId returns Id func (m VcnDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_topology.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_topology.go index 4dc47140ac2..33a578d35dd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_topology.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/vcn_topology.go @@ -45,22 +45,22 @@ type VcnTopology struct { VcnId *string `mandatory:"false" json:"vcnId"` } -//GetEntities returns Entities +// GetEntities returns Entities func (m VcnTopology) GetEntities() []interface{} { return m.Entities } -//GetRelationships returns Relationships +// GetRelationships returns Relationships func (m VcnTopology) GetRelationships() []TopologyEntityRelationship { return m.Relationships } -//GetLimitedEntities returns LimitedEntities +// GetLimitedEntities returns LimitedEntities func (m VcnTopology) GetLimitedEntities() []string { return m.LimitedEntities } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VcnTopology) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/core/virtual_circuit_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/core/virtual_circuit_drg_attachment_network_details.go index 494c23b6ee4..8d399a4c607 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/core/virtual_circuit_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/core/virtual_circuit_drg_attachment_network_details.go @@ -33,7 +33,7 @@ type VirtualCircuitDrgAttachmentNetworkDetails struct { TransportOnlyMode *bool `mandatory:"false" json:"transportOnlyMode"` } -//GetId returns Id +// GetId returns Id func (m VirtualCircuitDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/autonomous_database_connection_strings.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/autonomous_database_connection_strings.go index 335c90ac405..5fe1a6083b9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/autonomous_database_connection_strings.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/autonomous_database_connection_strings.go @@ -17,49 +17,50 @@ import ( // AutonomousDatabaseConnectionStrings Connection strings to connect to an Oracle Autonomous Database. // Example output for connection strings. See DatabaseConnectionStringProfile for additional details: -// "connectionStrings": { -// "allConnectionStrings": { -// "HIGH": "adb.region.oraclecloud.com:1522/unique_id_databasename_high.adwc.oraclecloud.com", -// "LOW": "adb.region.oraclecloud.com:1522/unique_id_databasename_low.adwc.oraclecloud.com", -// "MEDIUM": "adb.region.oraclecloud.com:1522/unique_id_databasename_medium.adwc.oraclecloud.com" -// }, -// "profiles": [ -// { -// "displayName": "databasename_high", -// "value": "(description= (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=adb.region.oraclecloud.com))(connect_data=(service_name=unique_id_databasename_high.adwc.oraclecloud.com))(security=(ssl_server_cert_dn="CN=adwc.uscom-east-1.oraclecloud.com,OU=Oracle BMCS US,O=Oracle Corporation,L=Redwood City,ST=California,C=US")))", -// "consumerGroup": "HIGH", -// "protocol": "TCPS", -// "tlsAuthentication": "MUTUAL", -// "hostFormat": "FQDN", -// "sessionMode": "DIRECT", -// "syntaxFormat": "LONG" -// }, -// { -// "displayName": "databasename_low", -// "value": "(description= (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=adb.region.oraclecloud.com))(connect_data=(service_name=unique_id_databasename_low.adwc.oraclecloud.com))(security=(ssl_server_cert_dn="CN=adwc.uscom-east-1.oraclecloud.com,OU=Oracle BMCS US,O=Oracle Corporation,L=Redwood City,ST=California,C=US")))", -// "consumerGroup": "LOW", -// "protocol": "TCPS", -// "tlsAuthentication": "MUTUAL", -// "hostFormat": "FQDN", -// "sessionMode": "DIRECT", -// "syntaxFormat": "LONG" -// }, -// { -// "displayName": "databasename_medium", -// "value": "(description= (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=adb.region.oraclecloud.com))(connect_data=(service_name=unique_id_databasename_medium.adwc.oraclecloud.com))(security=(ssl_server_cert_dn="CN=adwc.uscom-east-1.oraclecloud.com,OU=Oracle BMCS US,O=Oracle Corporation,L=Redwood City,ST=California,C=US")))", -// "consumerGroup": "MEDIUM", -// "protocol": "TCPS", -// "tlsAuthentication": "MUTUAL", -// "hostFormat": "FQDN", -// "sessionMode": "DIRECT", -// "syntaxFormat": "LONG" -// } -// ], -// "dedicated": null, -// "high": "adb.region.oraclecloud.com:1522/unique_id_databasename_high.adwc.oraclecloud.com", -// "low": "adb.region.oraclecloud.com:1522/unique_id_databasename_low.adwc.oraclecloud.com", -// "medium": "adb.region.oraclecloud.com:1522/unique_id_databasename_medium.adwc.oraclecloud.com" -// } +// +// "connectionStrings": { +// "allConnectionStrings": { +// "HIGH": "adb.region.oraclecloud.com:1522/unique_id_databasename_high.adwc.oraclecloud.com", +// "LOW": "adb.region.oraclecloud.com:1522/unique_id_databasename_low.adwc.oraclecloud.com", +// "MEDIUM": "adb.region.oraclecloud.com:1522/unique_id_databasename_medium.adwc.oraclecloud.com" +// }, +// "profiles": [ +// { +// "displayName": "databasename_high", +// "value": "(description= (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=adb.region.oraclecloud.com))(connect_data=(service_name=unique_id_databasename_high.adwc.oraclecloud.com))(security=(ssl_server_cert_dn="CN=adwc.uscom-east-1.oraclecloud.com,OU=Oracle BMCS US,O=Oracle Corporation,L=Redwood City,ST=California,C=US")))", +// "consumerGroup": "HIGH", +// "protocol": "TCPS", +// "tlsAuthentication": "MUTUAL", +// "hostFormat": "FQDN", +// "sessionMode": "DIRECT", +// "syntaxFormat": "LONG" +// }, +// { +// "displayName": "databasename_low", +// "value": "(description= (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=adb.region.oraclecloud.com))(connect_data=(service_name=unique_id_databasename_low.adwc.oraclecloud.com))(security=(ssl_server_cert_dn="CN=adwc.uscom-east-1.oraclecloud.com,OU=Oracle BMCS US,O=Oracle Corporation,L=Redwood City,ST=California,C=US")))", +// "consumerGroup": "LOW", +// "protocol": "TCPS", +// "tlsAuthentication": "MUTUAL", +// "hostFormat": "FQDN", +// "sessionMode": "DIRECT", +// "syntaxFormat": "LONG" +// }, +// { +// "displayName": "databasename_medium", +// "value": "(description= (retry_count=20)(retry_delay=3)(address=(protocol=tcps)(port=1522)(host=adb.region.oraclecloud.com))(connect_data=(service_name=unique_id_databasename_medium.adwc.oraclecloud.com))(security=(ssl_server_cert_dn="CN=adwc.uscom-east-1.oraclecloud.com,OU=Oracle BMCS US,O=Oracle Corporation,L=Redwood City,ST=California,C=US")))", +// "consumerGroup": "MEDIUM", +// "protocol": "TCPS", +// "tlsAuthentication": "MUTUAL", +// "hostFormat": "FQDN", +// "sessionMode": "DIRECT", +// "syntaxFormat": "LONG" +// } +// ], +// "dedicated": null, +// "high": "adb.region.oraclecloud.com:1522/unique_id_databasename_high.adwc.oraclecloud.com", +// "low": "adb.region.oraclecloud.com:1522/unique_id_databasename_low.adwc.oraclecloud.com", +// "medium": "adb.region.oraclecloud.com:1522/unique_id_databasename_medium.adwc.oraclecloud.com" +// } type AutonomousDatabaseConnectionStrings struct { // The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_clone_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_clone_details.go index 4e03cc8e91d..89590bec30f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_clone_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_clone_details.go @@ -238,232 +238,232 @@ type CreateAutonomousDatabaseCloneDetails struct { AutonomousMaintenanceScheduleType CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum `mandatory:"false" json:"autonomousMaintenanceScheduleType,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAutonomousDatabaseCloneDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetCharacterSet returns CharacterSet +// GetCharacterSet returns CharacterSet func (m CreateAutonomousDatabaseCloneDetails) GetCharacterSet() *string { return m.CharacterSet } -//GetNcharacterSet returns NcharacterSet +// GetNcharacterSet returns NcharacterSet func (m CreateAutonomousDatabaseCloneDetails) GetNcharacterSet() *string { return m.NcharacterSet } -//GetDbName returns DbName +// GetDbName returns DbName func (m CreateAutonomousDatabaseCloneDetails) GetDbName() *string { return m.DbName } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m CreateAutonomousDatabaseCloneDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays +// GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays func (m CreateAutonomousDatabaseCloneDetails) GetBackupRetentionPeriodInDays() *int { return m.BackupRetentionPeriodInDays } -//GetComputeModel returns ComputeModel +// GetComputeModel returns ComputeModel func (m CreateAutonomousDatabaseCloneDetails) GetComputeModel() CreateAutonomousDatabaseBaseComputeModelEnum { return m.ComputeModel } -//GetComputeCount returns ComputeCount +// GetComputeCount returns ComputeCount func (m CreateAutonomousDatabaseCloneDetails) GetComputeCount() *float32 { return m.ComputeCount } -//GetOcpuCount returns OcpuCount +// GetOcpuCount returns OcpuCount func (m CreateAutonomousDatabaseCloneDetails) GetOcpuCount() *float32 { return m.OcpuCount } -//GetDbWorkload returns DbWorkload +// GetDbWorkload returns DbWorkload func (m CreateAutonomousDatabaseCloneDetails) GetDbWorkload() CreateAutonomousDatabaseBaseDbWorkloadEnum { return m.DbWorkload } -//GetDataStorageSizeInTBs returns DataStorageSizeInTBs +// GetDataStorageSizeInTBs returns DataStorageSizeInTBs func (m CreateAutonomousDatabaseCloneDetails) GetDataStorageSizeInTBs() *int { return m.DataStorageSizeInTBs } -//GetDataStorageSizeInGBs returns DataStorageSizeInGBs +// GetDataStorageSizeInGBs returns DataStorageSizeInGBs func (m CreateAutonomousDatabaseCloneDetails) GetDataStorageSizeInGBs() *int { return m.DataStorageSizeInGBs } -//GetIsFreeTier returns IsFreeTier +// GetIsFreeTier returns IsFreeTier func (m CreateAutonomousDatabaseCloneDetails) GetIsFreeTier() *bool { return m.IsFreeTier } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateAutonomousDatabaseCloneDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateAutonomousDatabaseCloneDetails) GetVaultId() *string { return m.VaultId } -//GetAdminPassword returns AdminPassword +// GetAdminPassword returns AdminPassword func (m CreateAutonomousDatabaseCloneDetails) GetAdminPassword() *string { return m.AdminPassword } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateAutonomousDatabaseCloneDetails) GetDisplayName() *string { return m.DisplayName } -//GetLicenseModel returns LicenseModel +// GetLicenseModel returns LicenseModel func (m CreateAutonomousDatabaseCloneDetails) GetLicenseModel() CreateAutonomousDatabaseBaseLicenseModelEnum { return m.LicenseModel } -//GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted +// GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted func (m CreateAutonomousDatabaseCloneDetails) GetIsPreviewVersionWithServiceTermsAccepted() *bool { return m.IsPreviewVersionWithServiceTermsAccepted } -//GetIsAutoScalingEnabled returns IsAutoScalingEnabled +// GetIsAutoScalingEnabled returns IsAutoScalingEnabled func (m CreateAutonomousDatabaseCloneDetails) GetIsAutoScalingEnabled() *bool { return m.IsAutoScalingEnabled } -//GetIsDedicated returns IsDedicated +// GetIsDedicated returns IsDedicated func (m CreateAutonomousDatabaseCloneDetails) GetIsDedicated() *bool { return m.IsDedicated } -//GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId +// GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId func (m CreateAutonomousDatabaseCloneDetails) GetAutonomousContainerDatabaseId() *string { return m.AutonomousContainerDatabaseId } -//GetInMemoryPercentage returns InMemoryPercentage +// GetInMemoryPercentage returns InMemoryPercentage func (m CreateAutonomousDatabaseCloneDetails) GetInMemoryPercentage() *int { return m.InMemoryPercentage } -//GetIsAccessControlEnabled returns IsAccessControlEnabled +// GetIsAccessControlEnabled returns IsAccessControlEnabled func (m CreateAutonomousDatabaseCloneDetails) GetIsAccessControlEnabled() *bool { return m.IsAccessControlEnabled } -//GetWhitelistedIps returns WhitelistedIps +// GetWhitelistedIps returns WhitelistedIps func (m CreateAutonomousDatabaseCloneDetails) GetWhitelistedIps() []string { return m.WhitelistedIps } -//GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed +// GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed func (m CreateAutonomousDatabaseCloneDetails) GetArePrimaryWhitelistedIpsUsed() *bool { return m.ArePrimaryWhitelistedIpsUsed } -//GetStandbyWhitelistedIps returns StandbyWhitelistedIps +// GetStandbyWhitelistedIps returns StandbyWhitelistedIps func (m CreateAutonomousDatabaseCloneDetails) GetStandbyWhitelistedIps() []string { return m.StandbyWhitelistedIps } -//GetIsDataGuardEnabled returns IsDataGuardEnabled +// GetIsDataGuardEnabled returns IsDataGuardEnabled func (m CreateAutonomousDatabaseCloneDetails) GetIsDataGuardEnabled() *bool { return m.IsDataGuardEnabled } -//GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled +// GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled func (m CreateAutonomousDatabaseCloneDetails) GetIsLocalDataGuardEnabled() *bool { return m.IsLocalDataGuardEnabled } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateAutonomousDatabaseCloneDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateAutonomousDatabaseCloneDetails) GetNsgIds() []string { return m.NsgIds } -//GetPrivateEndpointLabel returns PrivateEndpointLabel +// GetPrivateEndpointLabel returns PrivateEndpointLabel func (m CreateAutonomousDatabaseCloneDetails) GetPrivateEndpointLabel() *string { return m.PrivateEndpointLabel } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAutonomousDatabaseCloneDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAutonomousDatabaseCloneDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateEndpointIp returns PrivateEndpointIp +// GetPrivateEndpointIp returns PrivateEndpointIp func (m CreateAutonomousDatabaseCloneDetails) GetPrivateEndpointIp() *string { return m.PrivateEndpointIp } -//GetDbVersion returns DbVersion +// GetDbVersion returns DbVersion func (m CreateAutonomousDatabaseCloneDetails) GetDbVersion() *string { return m.DbVersion } -//GetCustomerContacts returns CustomerContacts +// GetCustomerContacts returns CustomerContacts func (m CreateAutonomousDatabaseCloneDetails) GetCustomerContacts() []CustomerContact { return m.CustomerContacts } -//GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired +// GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired func (m CreateAutonomousDatabaseCloneDetails) GetIsMtlsConnectionRequired() *bool { return m.IsMtlsConnectionRequired } -//GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType +// GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType func (m CreateAutonomousDatabaseCloneDetails) GetAutonomousMaintenanceScheduleType() CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum { return m.AutonomousMaintenanceScheduleType } -//GetScheduledOperations returns ScheduledOperations +// GetScheduledOperations returns ScheduledOperations func (m CreateAutonomousDatabaseCloneDetails) GetScheduledOperations() []ScheduledOperationDetails { return m.ScheduledOperations } -//GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled +// GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled func (m CreateAutonomousDatabaseCloneDetails) GetIsAutoScalingForStorageEnabled() *bool { return m.IsAutoScalingForStorageEnabled } -//GetMaxCpuCoreCount returns MaxCpuCoreCount +// GetMaxCpuCoreCount returns MaxCpuCoreCount func (m CreateAutonomousDatabaseCloneDetails) GetMaxCpuCoreCount() *int { return m.MaxCpuCoreCount } -//GetDatabaseEdition returns DatabaseEdition +// GetDatabaseEdition returns DatabaseEdition func (m CreateAutonomousDatabaseCloneDetails) GetDatabaseEdition() AutonomousDatabaseSummaryDatabaseEditionEnum { return m.DatabaseEdition } -//GetDbToolsDetails returns DbToolsDetails +// GetDbToolsDetails returns DbToolsDetails func (m CreateAutonomousDatabaseCloneDetails) GetDbToolsDetails() []DatabaseTool { return m.DbToolsDetails } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m CreateAutonomousDatabaseCloneDetails) GetSecretId() *string { return m.SecretId } -//GetSecretVersionNumber returns SecretVersionNumber +// GetSecretVersionNumber returns SecretVersionNumber func (m CreateAutonomousDatabaseCloneDetails) GetSecretVersionNumber() *int { return m.SecretVersionNumber } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_details.go index 5ec20109ba0..61f5899a674 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_details.go @@ -232,232 +232,232 @@ type CreateAutonomousDatabaseDetails struct { AutonomousMaintenanceScheduleType CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum `mandatory:"false" json:"autonomousMaintenanceScheduleType,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAutonomousDatabaseDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetCharacterSet returns CharacterSet +// GetCharacterSet returns CharacterSet func (m CreateAutonomousDatabaseDetails) GetCharacterSet() *string { return m.CharacterSet } -//GetNcharacterSet returns NcharacterSet +// GetNcharacterSet returns NcharacterSet func (m CreateAutonomousDatabaseDetails) GetNcharacterSet() *string { return m.NcharacterSet } -//GetDbName returns DbName +// GetDbName returns DbName func (m CreateAutonomousDatabaseDetails) GetDbName() *string { return m.DbName } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m CreateAutonomousDatabaseDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays +// GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays func (m CreateAutonomousDatabaseDetails) GetBackupRetentionPeriodInDays() *int { return m.BackupRetentionPeriodInDays } -//GetComputeModel returns ComputeModel +// GetComputeModel returns ComputeModel func (m CreateAutonomousDatabaseDetails) GetComputeModel() CreateAutonomousDatabaseBaseComputeModelEnum { return m.ComputeModel } -//GetComputeCount returns ComputeCount +// GetComputeCount returns ComputeCount func (m CreateAutonomousDatabaseDetails) GetComputeCount() *float32 { return m.ComputeCount } -//GetOcpuCount returns OcpuCount +// GetOcpuCount returns OcpuCount func (m CreateAutonomousDatabaseDetails) GetOcpuCount() *float32 { return m.OcpuCount } -//GetDbWorkload returns DbWorkload +// GetDbWorkload returns DbWorkload func (m CreateAutonomousDatabaseDetails) GetDbWorkload() CreateAutonomousDatabaseBaseDbWorkloadEnum { return m.DbWorkload } -//GetDataStorageSizeInTBs returns DataStorageSizeInTBs +// GetDataStorageSizeInTBs returns DataStorageSizeInTBs func (m CreateAutonomousDatabaseDetails) GetDataStorageSizeInTBs() *int { return m.DataStorageSizeInTBs } -//GetDataStorageSizeInGBs returns DataStorageSizeInGBs +// GetDataStorageSizeInGBs returns DataStorageSizeInGBs func (m CreateAutonomousDatabaseDetails) GetDataStorageSizeInGBs() *int { return m.DataStorageSizeInGBs } -//GetIsFreeTier returns IsFreeTier +// GetIsFreeTier returns IsFreeTier func (m CreateAutonomousDatabaseDetails) GetIsFreeTier() *bool { return m.IsFreeTier } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateAutonomousDatabaseDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateAutonomousDatabaseDetails) GetVaultId() *string { return m.VaultId } -//GetAdminPassword returns AdminPassword +// GetAdminPassword returns AdminPassword func (m CreateAutonomousDatabaseDetails) GetAdminPassword() *string { return m.AdminPassword } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateAutonomousDatabaseDetails) GetDisplayName() *string { return m.DisplayName } -//GetLicenseModel returns LicenseModel +// GetLicenseModel returns LicenseModel func (m CreateAutonomousDatabaseDetails) GetLicenseModel() CreateAutonomousDatabaseBaseLicenseModelEnum { return m.LicenseModel } -//GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted +// GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted func (m CreateAutonomousDatabaseDetails) GetIsPreviewVersionWithServiceTermsAccepted() *bool { return m.IsPreviewVersionWithServiceTermsAccepted } -//GetIsAutoScalingEnabled returns IsAutoScalingEnabled +// GetIsAutoScalingEnabled returns IsAutoScalingEnabled func (m CreateAutonomousDatabaseDetails) GetIsAutoScalingEnabled() *bool { return m.IsAutoScalingEnabled } -//GetIsDedicated returns IsDedicated +// GetIsDedicated returns IsDedicated func (m CreateAutonomousDatabaseDetails) GetIsDedicated() *bool { return m.IsDedicated } -//GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId +// GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId func (m CreateAutonomousDatabaseDetails) GetAutonomousContainerDatabaseId() *string { return m.AutonomousContainerDatabaseId } -//GetInMemoryPercentage returns InMemoryPercentage +// GetInMemoryPercentage returns InMemoryPercentage func (m CreateAutonomousDatabaseDetails) GetInMemoryPercentage() *int { return m.InMemoryPercentage } -//GetIsAccessControlEnabled returns IsAccessControlEnabled +// GetIsAccessControlEnabled returns IsAccessControlEnabled func (m CreateAutonomousDatabaseDetails) GetIsAccessControlEnabled() *bool { return m.IsAccessControlEnabled } -//GetWhitelistedIps returns WhitelistedIps +// GetWhitelistedIps returns WhitelistedIps func (m CreateAutonomousDatabaseDetails) GetWhitelistedIps() []string { return m.WhitelistedIps } -//GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed +// GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed func (m CreateAutonomousDatabaseDetails) GetArePrimaryWhitelistedIpsUsed() *bool { return m.ArePrimaryWhitelistedIpsUsed } -//GetStandbyWhitelistedIps returns StandbyWhitelistedIps +// GetStandbyWhitelistedIps returns StandbyWhitelistedIps func (m CreateAutonomousDatabaseDetails) GetStandbyWhitelistedIps() []string { return m.StandbyWhitelistedIps } -//GetIsDataGuardEnabled returns IsDataGuardEnabled +// GetIsDataGuardEnabled returns IsDataGuardEnabled func (m CreateAutonomousDatabaseDetails) GetIsDataGuardEnabled() *bool { return m.IsDataGuardEnabled } -//GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled +// GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled func (m CreateAutonomousDatabaseDetails) GetIsLocalDataGuardEnabled() *bool { return m.IsLocalDataGuardEnabled } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateAutonomousDatabaseDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateAutonomousDatabaseDetails) GetNsgIds() []string { return m.NsgIds } -//GetPrivateEndpointLabel returns PrivateEndpointLabel +// GetPrivateEndpointLabel returns PrivateEndpointLabel func (m CreateAutonomousDatabaseDetails) GetPrivateEndpointLabel() *string { return m.PrivateEndpointLabel } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAutonomousDatabaseDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAutonomousDatabaseDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateEndpointIp returns PrivateEndpointIp +// GetPrivateEndpointIp returns PrivateEndpointIp func (m CreateAutonomousDatabaseDetails) GetPrivateEndpointIp() *string { return m.PrivateEndpointIp } -//GetDbVersion returns DbVersion +// GetDbVersion returns DbVersion func (m CreateAutonomousDatabaseDetails) GetDbVersion() *string { return m.DbVersion } -//GetCustomerContacts returns CustomerContacts +// GetCustomerContacts returns CustomerContacts func (m CreateAutonomousDatabaseDetails) GetCustomerContacts() []CustomerContact { return m.CustomerContacts } -//GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired +// GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired func (m CreateAutonomousDatabaseDetails) GetIsMtlsConnectionRequired() *bool { return m.IsMtlsConnectionRequired } -//GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType +// GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType func (m CreateAutonomousDatabaseDetails) GetAutonomousMaintenanceScheduleType() CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum { return m.AutonomousMaintenanceScheduleType } -//GetScheduledOperations returns ScheduledOperations +// GetScheduledOperations returns ScheduledOperations func (m CreateAutonomousDatabaseDetails) GetScheduledOperations() []ScheduledOperationDetails { return m.ScheduledOperations } -//GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled +// GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled func (m CreateAutonomousDatabaseDetails) GetIsAutoScalingForStorageEnabled() *bool { return m.IsAutoScalingForStorageEnabled } -//GetMaxCpuCoreCount returns MaxCpuCoreCount +// GetMaxCpuCoreCount returns MaxCpuCoreCount func (m CreateAutonomousDatabaseDetails) GetMaxCpuCoreCount() *int { return m.MaxCpuCoreCount } -//GetDatabaseEdition returns DatabaseEdition +// GetDatabaseEdition returns DatabaseEdition func (m CreateAutonomousDatabaseDetails) GetDatabaseEdition() AutonomousDatabaseSummaryDatabaseEditionEnum { return m.DatabaseEdition } -//GetDbToolsDetails returns DbToolsDetails +// GetDbToolsDetails returns DbToolsDetails func (m CreateAutonomousDatabaseDetails) GetDbToolsDetails() []DatabaseTool { return m.DbToolsDetails } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m CreateAutonomousDatabaseDetails) GetSecretId() *string { return m.SecretId } -//GetSecretVersionNumber returns SecretVersionNumber +// GetSecretVersionNumber returns SecretVersionNumber func (m CreateAutonomousDatabaseDetails) GetSecretVersionNumber() *int { return m.SecretVersionNumber } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_from_backup_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_from_backup_details.go index 8a6cdcd8968..afb757e6035 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_from_backup_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_from_backup_details.go @@ -238,232 +238,232 @@ type CreateAutonomousDatabaseFromBackupDetails struct { AutonomousMaintenanceScheduleType CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum `mandatory:"false" json:"autonomousMaintenanceScheduleType,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAutonomousDatabaseFromBackupDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetCharacterSet returns CharacterSet +// GetCharacterSet returns CharacterSet func (m CreateAutonomousDatabaseFromBackupDetails) GetCharacterSet() *string { return m.CharacterSet } -//GetNcharacterSet returns NcharacterSet +// GetNcharacterSet returns NcharacterSet func (m CreateAutonomousDatabaseFromBackupDetails) GetNcharacterSet() *string { return m.NcharacterSet } -//GetDbName returns DbName +// GetDbName returns DbName func (m CreateAutonomousDatabaseFromBackupDetails) GetDbName() *string { return m.DbName } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m CreateAutonomousDatabaseFromBackupDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays +// GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays func (m CreateAutonomousDatabaseFromBackupDetails) GetBackupRetentionPeriodInDays() *int { return m.BackupRetentionPeriodInDays } -//GetComputeModel returns ComputeModel +// GetComputeModel returns ComputeModel func (m CreateAutonomousDatabaseFromBackupDetails) GetComputeModel() CreateAutonomousDatabaseBaseComputeModelEnum { return m.ComputeModel } -//GetComputeCount returns ComputeCount +// GetComputeCount returns ComputeCount func (m CreateAutonomousDatabaseFromBackupDetails) GetComputeCount() *float32 { return m.ComputeCount } -//GetOcpuCount returns OcpuCount +// GetOcpuCount returns OcpuCount func (m CreateAutonomousDatabaseFromBackupDetails) GetOcpuCount() *float32 { return m.OcpuCount } -//GetDbWorkload returns DbWorkload +// GetDbWorkload returns DbWorkload func (m CreateAutonomousDatabaseFromBackupDetails) GetDbWorkload() CreateAutonomousDatabaseBaseDbWorkloadEnum { return m.DbWorkload } -//GetDataStorageSizeInTBs returns DataStorageSizeInTBs +// GetDataStorageSizeInTBs returns DataStorageSizeInTBs func (m CreateAutonomousDatabaseFromBackupDetails) GetDataStorageSizeInTBs() *int { return m.DataStorageSizeInTBs } -//GetDataStorageSizeInGBs returns DataStorageSizeInGBs +// GetDataStorageSizeInGBs returns DataStorageSizeInGBs func (m CreateAutonomousDatabaseFromBackupDetails) GetDataStorageSizeInGBs() *int { return m.DataStorageSizeInGBs } -//GetIsFreeTier returns IsFreeTier +// GetIsFreeTier returns IsFreeTier func (m CreateAutonomousDatabaseFromBackupDetails) GetIsFreeTier() *bool { return m.IsFreeTier } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateAutonomousDatabaseFromBackupDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateAutonomousDatabaseFromBackupDetails) GetVaultId() *string { return m.VaultId } -//GetAdminPassword returns AdminPassword +// GetAdminPassword returns AdminPassword func (m CreateAutonomousDatabaseFromBackupDetails) GetAdminPassword() *string { return m.AdminPassword } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateAutonomousDatabaseFromBackupDetails) GetDisplayName() *string { return m.DisplayName } -//GetLicenseModel returns LicenseModel +// GetLicenseModel returns LicenseModel func (m CreateAutonomousDatabaseFromBackupDetails) GetLicenseModel() CreateAutonomousDatabaseBaseLicenseModelEnum { return m.LicenseModel } -//GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted +// GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted func (m CreateAutonomousDatabaseFromBackupDetails) GetIsPreviewVersionWithServiceTermsAccepted() *bool { return m.IsPreviewVersionWithServiceTermsAccepted } -//GetIsAutoScalingEnabled returns IsAutoScalingEnabled +// GetIsAutoScalingEnabled returns IsAutoScalingEnabled func (m CreateAutonomousDatabaseFromBackupDetails) GetIsAutoScalingEnabled() *bool { return m.IsAutoScalingEnabled } -//GetIsDedicated returns IsDedicated +// GetIsDedicated returns IsDedicated func (m CreateAutonomousDatabaseFromBackupDetails) GetIsDedicated() *bool { return m.IsDedicated } -//GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId +// GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId func (m CreateAutonomousDatabaseFromBackupDetails) GetAutonomousContainerDatabaseId() *string { return m.AutonomousContainerDatabaseId } -//GetInMemoryPercentage returns InMemoryPercentage +// GetInMemoryPercentage returns InMemoryPercentage func (m CreateAutonomousDatabaseFromBackupDetails) GetInMemoryPercentage() *int { return m.InMemoryPercentage } -//GetIsAccessControlEnabled returns IsAccessControlEnabled +// GetIsAccessControlEnabled returns IsAccessControlEnabled func (m CreateAutonomousDatabaseFromBackupDetails) GetIsAccessControlEnabled() *bool { return m.IsAccessControlEnabled } -//GetWhitelistedIps returns WhitelistedIps +// GetWhitelistedIps returns WhitelistedIps func (m CreateAutonomousDatabaseFromBackupDetails) GetWhitelistedIps() []string { return m.WhitelistedIps } -//GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed +// GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed func (m CreateAutonomousDatabaseFromBackupDetails) GetArePrimaryWhitelistedIpsUsed() *bool { return m.ArePrimaryWhitelistedIpsUsed } -//GetStandbyWhitelistedIps returns StandbyWhitelistedIps +// GetStandbyWhitelistedIps returns StandbyWhitelistedIps func (m CreateAutonomousDatabaseFromBackupDetails) GetStandbyWhitelistedIps() []string { return m.StandbyWhitelistedIps } -//GetIsDataGuardEnabled returns IsDataGuardEnabled +// GetIsDataGuardEnabled returns IsDataGuardEnabled func (m CreateAutonomousDatabaseFromBackupDetails) GetIsDataGuardEnabled() *bool { return m.IsDataGuardEnabled } -//GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled +// GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled func (m CreateAutonomousDatabaseFromBackupDetails) GetIsLocalDataGuardEnabled() *bool { return m.IsLocalDataGuardEnabled } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateAutonomousDatabaseFromBackupDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateAutonomousDatabaseFromBackupDetails) GetNsgIds() []string { return m.NsgIds } -//GetPrivateEndpointLabel returns PrivateEndpointLabel +// GetPrivateEndpointLabel returns PrivateEndpointLabel func (m CreateAutonomousDatabaseFromBackupDetails) GetPrivateEndpointLabel() *string { return m.PrivateEndpointLabel } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAutonomousDatabaseFromBackupDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAutonomousDatabaseFromBackupDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateEndpointIp returns PrivateEndpointIp +// GetPrivateEndpointIp returns PrivateEndpointIp func (m CreateAutonomousDatabaseFromBackupDetails) GetPrivateEndpointIp() *string { return m.PrivateEndpointIp } -//GetDbVersion returns DbVersion +// GetDbVersion returns DbVersion func (m CreateAutonomousDatabaseFromBackupDetails) GetDbVersion() *string { return m.DbVersion } -//GetCustomerContacts returns CustomerContacts +// GetCustomerContacts returns CustomerContacts func (m CreateAutonomousDatabaseFromBackupDetails) GetCustomerContacts() []CustomerContact { return m.CustomerContacts } -//GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired +// GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired func (m CreateAutonomousDatabaseFromBackupDetails) GetIsMtlsConnectionRequired() *bool { return m.IsMtlsConnectionRequired } -//GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType +// GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType func (m CreateAutonomousDatabaseFromBackupDetails) GetAutonomousMaintenanceScheduleType() CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum { return m.AutonomousMaintenanceScheduleType } -//GetScheduledOperations returns ScheduledOperations +// GetScheduledOperations returns ScheduledOperations func (m CreateAutonomousDatabaseFromBackupDetails) GetScheduledOperations() []ScheduledOperationDetails { return m.ScheduledOperations } -//GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled +// GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled func (m CreateAutonomousDatabaseFromBackupDetails) GetIsAutoScalingForStorageEnabled() *bool { return m.IsAutoScalingForStorageEnabled } -//GetMaxCpuCoreCount returns MaxCpuCoreCount +// GetMaxCpuCoreCount returns MaxCpuCoreCount func (m CreateAutonomousDatabaseFromBackupDetails) GetMaxCpuCoreCount() *int { return m.MaxCpuCoreCount } -//GetDatabaseEdition returns DatabaseEdition +// GetDatabaseEdition returns DatabaseEdition func (m CreateAutonomousDatabaseFromBackupDetails) GetDatabaseEdition() AutonomousDatabaseSummaryDatabaseEditionEnum { return m.DatabaseEdition } -//GetDbToolsDetails returns DbToolsDetails +// GetDbToolsDetails returns DbToolsDetails func (m CreateAutonomousDatabaseFromBackupDetails) GetDbToolsDetails() []DatabaseTool { return m.DbToolsDetails } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m CreateAutonomousDatabaseFromBackupDetails) GetSecretId() *string { return m.SecretId } -//GetSecretVersionNumber returns SecretVersionNumber +// GetSecretVersionNumber returns SecretVersionNumber func (m CreateAutonomousDatabaseFromBackupDetails) GetSecretVersionNumber() *int { return m.SecretVersionNumber } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_from_backup_timestamp_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_from_backup_timestamp_details.go index 88a6c7e3877..546cf8cba48 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_from_backup_timestamp_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_autonomous_database_from_backup_timestamp_details.go @@ -244,232 +244,232 @@ type CreateAutonomousDatabaseFromBackupTimestampDetails struct { AutonomousMaintenanceScheduleType CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum `mandatory:"false" json:"autonomousMaintenanceScheduleType,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetCharacterSet returns CharacterSet +// GetCharacterSet returns CharacterSet func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetCharacterSet() *string { return m.CharacterSet } -//GetNcharacterSet returns NcharacterSet +// GetNcharacterSet returns NcharacterSet func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetNcharacterSet() *string { return m.NcharacterSet } -//GetDbName returns DbName +// GetDbName returns DbName func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetDbName() *string { return m.DbName } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays +// GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetBackupRetentionPeriodInDays() *int { return m.BackupRetentionPeriodInDays } -//GetComputeModel returns ComputeModel +// GetComputeModel returns ComputeModel func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetComputeModel() CreateAutonomousDatabaseBaseComputeModelEnum { return m.ComputeModel } -//GetComputeCount returns ComputeCount +// GetComputeCount returns ComputeCount func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetComputeCount() *float32 { return m.ComputeCount } -//GetOcpuCount returns OcpuCount +// GetOcpuCount returns OcpuCount func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetOcpuCount() *float32 { return m.OcpuCount } -//GetDbWorkload returns DbWorkload +// GetDbWorkload returns DbWorkload func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetDbWorkload() CreateAutonomousDatabaseBaseDbWorkloadEnum { return m.DbWorkload } -//GetDataStorageSizeInTBs returns DataStorageSizeInTBs +// GetDataStorageSizeInTBs returns DataStorageSizeInTBs func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetDataStorageSizeInTBs() *int { return m.DataStorageSizeInTBs } -//GetDataStorageSizeInGBs returns DataStorageSizeInGBs +// GetDataStorageSizeInGBs returns DataStorageSizeInGBs func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetDataStorageSizeInGBs() *int { return m.DataStorageSizeInGBs } -//GetIsFreeTier returns IsFreeTier +// GetIsFreeTier returns IsFreeTier func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetIsFreeTier() *bool { return m.IsFreeTier } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetVaultId() *string { return m.VaultId } -//GetAdminPassword returns AdminPassword +// GetAdminPassword returns AdminPassword func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetAdminPassword() *string { return m.AdminPassword } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetDisplayName() *string { return m.DisplayName } -//GetLicenseModel returns LicenseModel +// GetLicenseModel returns LicenseModel func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetLicenseModel() CreateAutonomousDatabaseBaseLicenseModelEnum { return m.LicenseModel } -//GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted +// GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetIsPreviewVersionWithServiceTermsAccepted() *bool { return m.IsPreviewVersionWithServiceTermsAccepted } -//GetIsAutoScalingEnabled returns IsAutoScalingEnabled +// GetIsAutoScalingEnabled returns IsAutoScalingEnabled func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetIsAutoScalingEnabled() *bool { return m.IsAutoScalingEnabled } -//GetIsDedicated returns IsDedicated +// GetIsDedicated returns IsDedicated func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetIsDedicated() *bool { return m.IsDedicated } -//GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId +// GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetAutonomousContainerDatabaseId() *string { return m.AutonomousContainerDatabaseId } -//GetInMemoryPercentage returns InMemoryPercentage +// GetInMemoryPercentage returns InMemoryPercentage func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetInMemoryPercentage() *int { return m.InMemoryPercentage } -//GetIsAccessControlEnabled returns IsAccessControlEnabled +// GetIsAccessControlEnabled returns IsAccessControlEnabled func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetIsAccessControlEnabled() *bool { return m.IsAccessControlEnabled } -//GetWhitelistedIps returns WhitelistedIps +// GetWhitelistedIps returns WhitelistedIps func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetWhitelistedIps() []string { return m.WhitelistedIps } -//GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed +// GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetArePrimaryWhitelistedIpsUsed() *bool { return m.ArePrimaryWhitelistedIpsUsed } -//GetStandbyWhitelistedIps returns StandbyWhitelistedIps +// GetStandbyWhitelistedIps returns StandbyWhitelistedIps func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetStandbyWhitelistedIps() []string { return m.StandbyWhitelistedIps } -//GetIsDataGuardEnabled returns IsDataGuardEnabled +// GetIsDataGuardEnabled returns IsDataGuardEnabled func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetIsDataGuardEnabled() *bool { return m.IsDataGuardEnabled } -//GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled +// GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetIsLocalDataGuardEnabled() *bool { return m.IsLocalDataGuardEnabled } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetNsgIds() []string { return m.NsgIds } -//GetPrivateEndpointLabel returns PrivateEndpointLabel +// GetPrivateEndpointLabel returns PrivateEndpointLabel func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetPrivateEndpointLabel() *string { return m.PrivateEndpointLabel } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateEndpointIp returns PrivateEndpointIp +// GetPrivateEndpointIp returns PrivateEndpointIp func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetPrivateEndpointIp() *string { return m.PrivateEndpointIp } -//GetDbVersion returns DbVersion +// GetDbVersion returns DbVersion func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetDbVersion() *string { return m.DbVersion } -//GetCustomerContacts returns CustomerContacts +// GetCustomerContacts returns CustomerContacts func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetCustomerContacts() []CustomerContact { return m.CustomerContacts } -//GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired +// GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetIsMtlsConnectionRequired() *bool { return m.IsMtlsConnectionRequired } -//GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType +// GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetAutonomousMaintenanceScheduleType() CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum { return m.AutonomousMaintenanceScheduleType } -//GetScheduledOperations returns ScheduledOperations +// GetScheduledOperations returns ScheduledOperations func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetScheduledOperations() []ScheduledOperationDetails { return m.ScheduledOperations } -//GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled +// GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetIsAutoScalingForStorageEnabled() *bool { return m.IsAutoScalingForStorageEnabled } -//GetMaxCpuCoreCount returns MaxCpuCoreCount +// GetMaxCpuCoreCount returns MaxCpuCoreCount func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetMaxCpuCoreCount() *int { return m.MaxCpuCoreCount } -//GetDatabaseEdition returns DatabaseEdition +// GetDatabaseEdition returns DatabaseEdition func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetDatabaseEdition() AutonomousDatabaseSummaryDatabaseEditionEnum { return m.DatabaseEdition } -//GetDbToolsDetails returns DbToolsDetails +// GetDbToolsDetails returns DbToolsDetails func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetDbToolsDetails() []DatabaseTool { return m.DbToolsDetails } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetSecretId() *string { return m.SecretId } -//GetSecretVersionNumber returns SecretVersionNumber +// GetSecretVersionNumber returns SecretVersionNumber func (m CreateAutonomousDatabaseFromBackupTimestampDetails) GetSecretVersionNumber() *int { return m.SecretVersionNumber } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_cross_region_autonomous_database_data_guard_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_cross_region_autonomous_database_data_guard_details.go index c0c8a983e0d..c341ed5c7fc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_cross_region_autonomous_database_data_guard_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_cross_region_autonomous_database_data_guard_details.go @@ -21,6 +21,7 @@ import ( // Note the following for creating standby databases in cross-region Autonomous Data Guard associations: // - To create your standby database in a region different from the region of the primary, use the API endpoint of the region in which the standby will be located. For example, if the primary database is in the IAD region, and you want to create the standby in the PHX region, make the API call using the PHX endpoint (https://database.us-phoenix-1.oraclecloud.com). See API Endpoints (https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#REST_APIs) for the list of Database Service API endpoints. // - In the request to create the standby database, the `sourceId` value should be the OCID of the primary database. +// // The following parameters are optional for the cross-region standby database. If included in the request, these parameters contain the same values as the source Autonomous Database: // - customerContacts // - scheduledOperations @@ -35,30 +36,34 @@ import ( // - cpuCoreCount // - dataStorageSizeInTB // - dbVersion +// // Example I - Creating a cross-region standby with required parameters only, with OCPU: -// `{ -// "compartmentId": "ocid.compartment.oc1..<unique_ID>", -// "cpuCoreCount": 1, -// "dbName": "adatabasedb1", -// "sourceId": "ocid1.autonomousdatabase.oc1.phx..<unique_ID>", -// "dataStorageSizeInTBs": 1, -// "source": "CROSS_REGION_DATAGUARD", -// "adminPassword" : "<password>", -// }` +// +// `{ +// "compartmentId": "ocid.compartment.oc1..<unique_ID>", +// "cpuCoreCount": 1, +// "dbName": "adatabasedb1", +// "sourceId": "ocid1.autonomousdatabase.oc1.phx..<unique_ID>", +// "dataStorageSizeInTBs": 1, +// "source": "CROSS_REGION_DATAGUARD", +// "adminPassword" : "<password>", +// }` +// // Example II - Creating a cross-region standby that specifies optional parameters in addition to the required parameters, with ECPU: -// `{ -// "compartmentId": "ocid.compartment.oc1..<unique_ID>", -// "computeModel": "ECPU", -// "computeCount": 2, -// "dbName": "adatabasedb1", -// "sourceId": "ocid1.autonomousdatabase.oc1.phx..<unique_ID>", -// "dataStorageSizeInTBs": 1, -// "source": "CROSS_REGION_DATAGUARD", -// "adminPassword" : "<password>", -// "dbVersion": "19c", -// "licenseModel": "LICENSE_INCLUDED", -// "isAutoScalingForStorageEnabled": "true" -// }` +// +// `{ +// "compartmentId": "ocid.compartment.oc1..<unique_ID>", +// "computeModel": "ECPU", +// "computeCount": 2, +// "dbName": "adatabasedb1", +// "sourceId": "ocid1.autonomousdatabase.oc1.phx..<unique_ID>", +// "dataStorageSizeInTBs": 1, +// "source": "CROSS_REGION_DATAGUARD", +// "adminPassword" : "<password>", +// "dbVersion": "19c", +// "licenseModel": "LICENSE_INCLUDED", +// "isAutoScalingForStorageEnabled": "true" +// }` type CreateCrossRegionAutonomousDatabaseDataGuardDetails struct { // The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database. @@ -277,232 +282,232 @@ type CreateCrossRegionAutonomousDatabaseDataGuardDetails struct { AutonomousMaintenanceScheduleType CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum `mandatory:"false" json:"autonomousMaintenanceScheduleType,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetCharacterSet returns CharacterSet +// GetCharacterSet returns CharacterSet func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetCharacterSet() *string { return m.CharacterSet } -//GetNcharacterSet returns NcharacterSet +// GetNcharacterSet returns NcharacterSet func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetNcharacterSet() *string { return m.NcharacterSet } -//GetDbName returns DbName +// GetDbName returns DbName func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetDbName() *string { return m.DbName } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays +// GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetBackupRetentionPeriodInDays() *int { return m.BackupRetentionPeriodInDays } -//GetComputeModel returns ComputeModel +// GetComputeModel returns ComputeModel func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetComputeModel() CreateAutonomousDatabaseBaseComputeModelEnum { return m.ComputeModel } -//GetComputeCount returns ComputeCount +// GetComputeCount returns ComputeCount func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetComputeCount() *float32 { return m.ComputeCount } -//GetOcpuCount returns OcpuCount +// GetOcpuCount returns OcpuCount func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetOcpuCount() *float32 { return m.OcpuCount } -//GetDbWorkload returns DbWorkload +// GetDbWorkload returns DbWorkload func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetDbWorkload() CreateAutonomousDatabaseBaseDbWorkloadEnum { return m.DbWorkload } -//GetDataStorageSizeInTBs returns DataStorageSizeInTBs +// GetDataStorageSizeInTBs returns DataStorageSizeInTBs func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetDataStorageSizeInTBs() *int { return m.DataStorageSizeInTBs } -//GetDataStorageSizeInGBs returns DataStorageSizeInGBs +// GetDataStorageSizeInGBs returns DataStorageSizeInGBs func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetDataStorageSizeInGBs() *int { return m.DataStorageSizeInGBs } -//GetIsFreeTier returns IsFreeTier +// GetIsFreeTier returns IsFreeTier func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetIsFreeTier() *bool { return m.IsFreeTier } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetVaultId() *string { return m.VaultId } -//GetAdminPassword returns AdminPassword +// GetAdminPassword returns AdminPassword func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetAdminPassword() *string { return m.AdminPassword } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetDisplayName() *string { return m.DisplayName } -//GetLicenseModel returns LicenseModel +// GetLicenseModel returns LicenseModel func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetLicenseModel() CreateAutonomousDatabaseBaseLicenseModelEnum { return m.LicenseModel } -//GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted +// GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetIsPreviewVersionWithServiceTermsAccepted() *bool { return m.IsPreviewVersionWithServiceTermsAccepted } -//GetIsAutoScalingEnabled returns IsAutoScalingEnabled +// GetIsAutoScalingEnabled returns IsAutoScalingEnabled func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetIsAutoScalingEnabled() *bool { return m.IsAutoScalingEnabled } -//GetIsDedicated returns IsDedicated +// GetIsDedicated returns IsDedicated func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetIsDedicated() *bool { return m.IsDedicated } -//GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId +// GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetAutonomousContainerDatabaseId() *string { return m.AutonomousContainerDatabaseId } -//GetInMemoryPercentage returns InMemoryPercentage +// GetInMemoryPercentage returns InMemoryPercentage func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetInMemoryPercentage() *int { return m.InMemoryPercentage } -//GetIsAccessControlEnabled returns IsAccessControlEnabled +// GetIsAccessControlEnabled returns IsAccessControlEnabled func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetIsAccessControlEnabled() *bool { return m.IsAccessControlEnabled } -//GetWhitelistedIps returns WhitelistedIps +// GetWhitelistedIps returns WhitelistedIps func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetWhitelistedIps() []string { return m.WhitelistedIps } -//GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed +// GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetArePrimaryWhitelistedIpsUsed() *bool { return m.ArePrimaryWhitelistedIpsUsed } -//GetStandbyWhitelistedIps returns StandbyWhitelistedIps +// GetStandbyWhitelistedIps returns StandbyWhitelistedIps func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetStandbyWhitelistedIps() []string { return m.StandbyWhitelistedIps } -//GetIsDataGuardEnabled returns IsDataGuardEnabled +// GetIsDataGuardEnabled returns IsDataGuardEnabled func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetIsDataGuardEnabled() *bool { return m.IsDataGuardEnabled } -//GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled +// GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetIsLocalDataGuardEnabled() *bool { return m.IsLocalDataGuardEnabled } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetNsgIds() []string { return m.NsgIds } -//GetPrivateEndpointLabel returns PrivateEndpointLabel +// GetPrivateEndpointLabel returns PrivateEndpointLabel func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetPrivateEndpointLabel() *string { return m.PrivateEndpointLabel } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateEndpointIp returns PrivateEndpointIp +// GetPrivateEndpointIp returns PrivateEndpointIp func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetPrivateEndpointIp() *string { return m.PrivateEndpointIp } -//GetDbVersion returns DbVersion +// GetDbVersion returns DbVersion func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetDbVersion() *string { return m.DbVersion } -//GetCustomerContacts returns CustomerContacts +// GetCustomerContacts returns CustomerContacts func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetCustomerContacts() []CustomerContact { return m.CustomerContacts } -//GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired +// GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetIsMtlsConnectionRequired() *bool { return m.IsMtlsConnectionRequired } -//GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType +// GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetAutonomousMaintenanceScheduleType() CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum { return m.AutonomousMaintenanceScheduleType } -//GetScheduledOperations returns ScheduledOperations +// GetScheduledOperations returns ScheduledOperations func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetScheduledOperations() []ScheduledOperationDetails { return m.ScheduledOperations } -//GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled +// GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetIsAutoScalingForStorageEnabled() *bool { return m.IsAutoScalingForStorageEnabled } -//GetMaxCpuCoreCount returns MaxCpuCoreCount +// GetMaxCpuCoreCount returns MaxCpuCoreCount func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetMaxCpuCoreCount() *int { return m.MaxCpuCoreCount } -//GetDatabaseEdition returns DatabaseEdition +// GetDatabaseEdition returns DatabaseEdition func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetDatabaseEdition() AutonomousDatabaseSummaryDatabaseEditionEnum { return m.DatabaseEdition } -//GetDbToolsDetails returns DbToolsDetails +// GetDbToolsDetails returns DbToolsDetails func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetDbToolsDetails() []DatabaseTool { return m.DbToolsDetails } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetSecretId() *string { return m.SecretId } -//GetSecretVersionNumber returns SecretVersionNumber +// GetSecretVersionNumber returns SecretVersionNumber func (m CreateCrossRegionAutonomousDatabaseDataGuardDetails) GetSecretVersionNumber() *int { return m.SecretVersionNumber } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_cross_region_disaster_recovery_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_cross_region_disaster_recovery_details.go index ab3b706e8da..13ebf127493 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_cross_region_disaster_recovery_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_cross_region_disaster_recovery_details.go @@ -21,8 +21,10 @@ import ( // For creating a standby databases in a cross-region DR association: // - To create the standby database in a remote region, use the API endpoint in the region where the standby is located. For example, if the primary database is in the IAD region and the standby is in the PHX region, make the API call using the PHX endpoint (https://database.us-phoenix-1.oraclecloud.com). See API Endpoints for the list of Database Service API endpoints. // - To create the request in the standby database, the sourceId value must be the OCID of the primary database. +// // The following parameters are required for the cross-region standby database and must contain the same values as the source Autonomous Database: // - remoteDisasterRecoveryType +// // The following parameters are optional for the cross-region standby database. If included in the request, these parameters must contain the same values as the source Autonomous Database: // - dbName // - dbVersion @@ -36,27 +38,31 @@ import ( // - licenseModel // - whitelistedIps // - isMtlsConnectionRequired +// // Example I - Creating a cross-region standby with required parameters only: -// `{ -// "compartmentId": "ocid.compartment.oc1..<unique_ID>", -// "sourceId": "ocid1.autonomousdatabase.oc1.phx..<unique_ID>", -// "source": "CROSS_REGION_DISASTER_RECOVERY", -// "remoteDisasterRecoveryType": "BACKUP_BASED" -// }` +// +// `{ +// "compartmentId": "ocid.compartment.oc1..<unique_ID>", +// "sourceId": "ocid1.autonomousdatabase.oc1.phx..<unique_ID>", +// "source": "CROSS_REGION_DISASTER_RECOVERY", +// "remoteDisasterRecoveryType": "BACKUP_BASED" +// }` +// // Example II - Creating a cross-region standby that specifies optional parameters in addition to the required parameters: -// `{ -// "compartmentId": "ocid.compartment.oc1..<unique_ID>", -// "ecpuCount": 2, -// "dbName": "adatabasedb1", -// "sourceId": "ocid1.autonomousdatabase.oc1.phx..<unique_ID>", -// "dataStorageSizeInTBs": 1, -// "source": "CROSS_REGION_DISASTER_RECOVERY", -// "adminPassword" : "<password>", -// "dbVersion": "19c", -// "licenseModel": "LICENSE_INCLUDED", -// "isAutoScalingForStorageEnabled": "true", -// "remoteDisasterRecoveryType": "BACKUP_BASED" -// }` +// +// `{ +// "compartmentId": "ocid.compartment.oc1..<unique_ID>", +// "ecpuCount": 2, +// "dbName": "adatabasedb1", +// "sourceId": "ocid1.autonomousdatabase.oc1.phx..<unique_ID>", +// "dataStorageSizeInTBs": 1, +// "source": "CROSS_REGION_DISASTER_RECOVERY", +// "adminPassword" : "<password>", +// "dbVersion": "19c", +// "licenseModel": "LICENSE_INCLUDED", +// "isAutoScalingForStorageEnabled": "true", +// "remoteDisasterRecoveryType": "BACKUP_BASED" +// }` type CreateCrossRegionDisasterRecoveryDetails struct { // The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database. @@ -280,232 +286,232 @@ type CreateCrossRegionDisasterRecoveryDetails struct { RemoteDisasterRecoveryType DisasterRecoveryConfigurationDisasterRecoveryTypeEnum `mandatory:"true" json:"remoteDisasterRecoveryType"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateCrossRegionDisasterRecoveryDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetCharacterSet returns CharacterSet +// GetCharacterSet returns CharacterSet func (m CreateCrossRegionDisasterRecoveryDetails) GetCharacterSet() *string { return m.CharacterSet } -//GetNcharacterSet returns NcharacterSet +// GetNcharacterSet returns NcharacterSet func (m CreateCrossRegionDisasterRecoveryDetails) GetNcharacterSet() *string { return m.NcharacterSet } -//GetDbName returns DbName +// GetDbName returns DbName func (m CreateCrossRegionDisasterRecoveryDetails) GetDbName() *string { return m.DbName } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m CreateCrossRegionDisasterRecoveryDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays +// GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays func (m CreateCrossRegionDisasterRecoveryDetails) GetBackupRetentionPeriodInDays() *int { return m.BackupRetentionPeriodInDays } -//GetComputeModel returns ComputeModel +// GetComputeModel returns ComputeModel func (m CreateCrossRegionDisasterRecoveryDetails) GetComputeModel() CreateAutonomousDatabaseBaseComputeModelEnum { return m.ComputeModel } -//GetComputeCount returns ComputeCount +// GetComputeCount returns ComputeCount func (m CreateCrossRegionDisasterRecoveryDetails) GetComputeCount() *float32 { return m.ComputeCount } -//GetOcpuCount returns OcpuCount +// GetOcpuCount returns OcpuCount func (m CreateCrossRegionDisasterRecoveryDetails) GetOcpuCount() *float32 { return m.OcpuCount } -//GetDbWorkload returns DbWorkload +// GetDbWorkload returns DbWorkload func (m CreateCrossRegionDisasterRecoveryDetails) GetDbWorkload() CreateAutonomousDatabaseBaseDbWorkloadEnum { return m.DbWorkload } -//GetDataStorageSizeInTBs returns DataStorageSizeInTBs +// GetDataStorageSizeInTBs returns DataStorageSizeInTBs func (m CreateCrossRegionDisasterRecoveryDetails) GetDataStorageSizeInTBs() *int { return m.DataStorageSizeInTBs } -//GetDataStorageSizeInGBs returns DataStorageSizeInGBs +// GetDataStorageSizeInGBs returns DataStorageSizeInGBs func (m CreateCrossRegionDisasterRecoveryDetails) GetDataStorageSizeInGBs() *int { return m.DataStorageSizeInGBs } -//GetIsFreeTier returns IsFreeTier +// GetIsFreeTier returns IsFreeTier func (m CreateCrossRegionDisasterRecoveryDetails) GetIsFreeTier() *bool { return m.IsFreeTier } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateCrossRegionDisasterRecoveryDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateCrossRegionDisasterRecoveryDetails) GetVaultId() *string { return m.VaultId } -//GetAdminPassword returns AdminPassword +// GetAdminPassword returns AdminPassword func (m CreateCrossRegionDisasterRecoveryDetails) GetAdminPassword() *string { return m.AdminPassword } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateCrossRegionDisasterRecoveryDetails) GetDisplayName() *string { return m.DisplayName } -//GetLicenseModel returns LicenseModel +// GetLicenseModel returns LicenseModel func (m CreateCrossRegionDisasterRecoveryDetails) GetLicenseModel() CreateAutonomousDatabaseBaseLicenseModelEnum { return m.LicenseModel } -//GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted +// GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted func (m CreateCrossRegionDisasterRecoveryDetails) GetIsPreviewVersionWithServiceTermsAccepted() *bool { return m.IsPreviewVersionWithServiceTermsAccepted } -//GetIsAutoScalingEnabled returns IsAutoScalingEnabled +// GetIsAutoScalingEnabled returns IsAutoScalingEnabled func (m CreateCrossRegionDisasterRecoveryDetails) GetIsAutoScalingEnabled() *bool { return m.IsAutoScalingEnabled } -//GetIsDedicated returns IsDedicated +// GetIsDedicated returns IsDedicated func (m CreateCrossRegionDisasterRecoveryDetails) GetIsDedicated() *bool { return m.IsDedicated } -//GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId +// GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId func (m CreateCrossRegionDisasterRecoveryDetails) GetAutonomousContainerDatabaseId() *string { return m.AutonomousContainerDatabaseId } -//GetInMemoryPercentage returns InMemoryPercentage +// GetInMemoryPercentage returns InMemoryPercentage func (m CreateCrossRegionDisasterRecoveryDetails) GetInMemoryPercentage() *int { return m.InMemoryPercentage } -//GetIsAccessControlEnabled returns IsAccessControlEnabled +// GetIsAccessControlEnabled returns IsAccessControlEnabled func (m CreateCrossRegionDisasterRecoveryDetails) GetIsAccessControlEnabled() *bool { return m.IsAccessControlEnabled } -//GetWhitelistedIps returns WhitelistedIps +// GetWhitelistedIps returns WhitelistedIps func (m CreateCrossRegionDisasterRecoveryDetails) GetWhitelistedIps() []string { return m.WhitelistedIps } -//GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed +// GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed func (m CreateCrossRegionDisasterRecoveryDetails) GetArePrimaryWhitelistedIpsUsed() *bool { return m.ArePrimaryWhitelistedIpsUsed } -//GetStandbyWhitelistedIps returns StandbyWhitelistedIps +// GetStandbyWhitelistedIps returns StandbyWhitelistedIps func (m CreateCrossRegionDisasterRecoveryDetails) GetStandbyWhitelistedIps() []string { return m.StandbyWhitelistedIps } -//GetIsDataGuardEnabled returns IsDataGuardEnabled +// GetIsDataGuardEnabled returns IsDataGuardEnabled func (m CreateCrossRegionDisasterRecoveryDetails) GetIsDataGuardEnabled() *bool { return m.IsDataGuardEnabled } -//GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled +// GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled func (m CreateCrossRegionDisasterRecoveryDetails) GetIsLocalDataGuardEnabled() *bool { return m.IsLocalDataGuardEnabled } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateCrossRegionDisasterRecoveryDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateCrossRegionDisasterRecoveryDetails) GetNsgIds() []string { return m.NsgIds } -//GetPrivateEndpointLabel returns PrivateEndpointLabel +// GetPrivateEndpointLabel returns PrivateEndpointLabel func (m CreateCrossRegionDisasterRecoveryDetails) GetPrivateEndpointLabel() *string { return m.PrivateEndpointLabel } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateCrossRegionDisasterRecoveryDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateCrossRegionDisasterRecoveryDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateEndpointIp returns PrivateEndpointIp +// GetPrivateEndpointIp returns PrivateEndpointIp func (m CreateCrossRegionDisasterRecoveryDetails) GetPrivateEndpointIp() *string { return m.PrivateEndpointIp } -//GetDbVersion returns DbVersion +// GetDbVersion returns DbVersion func (m CreateCrossRegionDisasterRecoveryDetails) GetDbVersion() *string { return m.DbVersion } -//GetCustomerContacts returns CustomerContacts +// GetCustomerContacts returns CustomerContacts func (m CreateCrossRegionDisasterRecoveryDetails) GetCustomerContacts() []CustomerContact { return m.CustomerContacts } -//GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired +// GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired func (m CreateCrossRegionDisasterRecoveryDetails) GetIsMtlsConnectionRequired() *bool { return m.IsMtlsConnectionRequired } -//GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType +// GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType func (m CreateCrossRegionDisasterRecoveryDetails) GetAutonomousMaintenanceScheduleType() CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum { return m.AutonomousMaintenanceScheduleType } -//GetScheduledOperations returns ScheduledOperations +// GetScheduledOperations returns ScheduledOperations func (m CreateCrossRegionDisasterRecoveryDetails) GetScheduledOperations() []ScheduledOperationDetails { return m.ScheduledOperations } -//GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled +// GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled func (m CreateCrossRegionDisasterRecoveryDetails) GetIsAutoScalingForStorageEnabled() *bool { return m.IsAutoScalingForStorageEnabled } -//GetMaxCpuCoreCount returns MaxCpuCoreCount +// GetMaxCpuCoreCount returns MaxCpuCoreCount func (m CreateCrossRegionDisasterRecoveryDetails) GetMaxCpuCoreCount() *int { return m.MaxCpuCoreCount } -//GetDatabaseEdition returns DatabaseEdition +// GetDatabaseEdition returns DatabaseEdition func (m CreateCrossRegionDisasterRecoveryDetails) GetDatabaseEdition() AutonomousDatabaseSummaryDatabaseEditionEnum { return m.DatabaseEdition } -//GetDbToolsDetails returns DbToolsDetails +// GetDbToolsDetails returns DbToolsDetails func (m CreateCrossRegionDisasterRecoveryDetails) GetDbToolsDetails() []DatabaseTool { return m.DbToolsDetails } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m CreateCrossRegionDisasterRecoveryDetails) GetSecretId() *string { return m.SecretId } -//GetSecretVersionNumber returns SecretVersionNumber +// GetSecretVersionNumber returns SecretVersionNumber func (m CreateCrossRegionDisasterRecoveryDetails) GetSecretVersionNumber() *int { return m.SecretVersionNumber } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_to_existing_db_system_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_to_existing_db_system_details.go index 389e57f4d5f..d68e83348d5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_to_existing_db_system_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_to_existing_db_system_details.go @@ -66,37 +66,37 @@ type CreateDataGuardAssociationToExistingDbSystemDetails struct { TransportType CreateDataGuardAssociationDetailsTransportTypeEnum `mandatory:"true" json:"transportType"` } -//GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId +// GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId func (m CreateDataGuardAssociationToExistingDbSystemDetails) GetDatabaseSoftwareImageId() *string { return m.DatabaseSoftwareImageId } -//GetDatabaseAdminPassword returns DatabaseAdminPassword +// GetDatabaseAdminPassword returns DatabaseAdminPassword func (m CreateDataGuardAssociationToExistingDbSystemDetails) GetDatabaseAdminPassword() *string { return m.DatabaseAdminPassword } -//GetProtectionMode returns ProtectionMode +// GetProtectionMode returns ProtectionMode func (m CreateDataGuardAssociationToExistingDbSystemDetails) GetProtectionMode() CreateDataGuardAssociationDetailsProtectionModeEnum { return m.ProtectionMode } -//GetTransportType returns TransportType +// GetTransportType returns TransportType func (m CreateDataGuardAssociationToExistingDbSystemDetails) GetTransportType() CreateDataGuardAssociationDetailsTransportTypeEnum { return m.TransportType } -//GetIsActiveDataGuardEnabled returns IsActiveDataGuardEnabled +// GetIsActiveDataGuardEnabled returns IsActiveDataGuardEnabled func (m CreateDataGuardAssociationToExistingDbSystemDetails) GetIsActiveDataGuardEnabled() *bool { return m.IsActiveDataGuardEnabled } -//GetPeerDbUniqueName returns PeerDbUniqueName +// GetPeerDbUniqueName returns PeerDbUniqueName func (m CreateDataGuardAssociationToExistingDbSystemDetails) GetPeerDbUniqueName() *string { return m.PeerDbUniqueName } -//GetPeerSidPrefix returns PeerSidPrefix +// GetPeerSidPrefix returns PeerSidPrefix func (m CreateDataGuardAssociationToExistingDbSystemDetails) GetPeerSidPrefix() *string { return m.PeerSidPrefix } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_to_existing_vm_cluster_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_to_existing_vm_cluster_details.go index 3edbd697b15..214ba6a35ec 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_to_existing_vm_cluster_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_to_existing_vm_cluster_details.go @@ -65,37 +65,37 @@ type CreateDataGuardAssociationToExistingVmClusterDetails struct { TransportType CreateDataGuardAssociationDetailsTransportTypeEnum `mandatory:"true" json:"transportType"` } -//GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId +// GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId func (m CreateDataGuardAssociationToExistingVmClusterDetails) GetDatabaseSoftwareImageId() *string { return m.DatabaseSoftwareImageId } -//GetDatabaseAdminPassword returns DatabaseAdminPassword +// GetDatabaseAdminPassword returns DatabaseAdminPassword func (m CreateDataGuardAssociationToExistingVmClusterDetails) GetDatabaseAdminPassword() *string { return m.DatabaseAdminPassword } -//GetProtectionMode returns ProtectionMode +// GetProtectionMode returns ProtectionMode func (m CreateDataGuardAssociationToExistingVmClusterDetails) GetProtectionMode() CreateDataGuardAssociationDetailsProtectionModeEnum { return m.ProtectionMode } -//GetTransportType returns TransportType +// GetTransportType returns TransportType func (m CreateDataGuardAssociationToExistingVmClusterDetails) GetTransportType() CreateDataGuardAssociationDetailsTransportTypeEnum { return m.TransportType } -//GetIsActiveDataGuardEnabled returns IsActiveDataGuardEnabled +// GetIsActiveDataGuardEnabled returns IsActiveDataGuardEnabled func (m CreateDataGuardAssociationToExistingVmClusterDetails) GetIsActiveDataGuardEnabled() *bool { return m.IsActiveDataGuardEnabled } -//GetPeerDbUniqueName returns PeerDbUniqueName +// GetPeerDbUniqueName returns PeerDbUniqueName func (m CreateDataGuardAssociationToExistingVmClusterDetails) GetPeerDbUniqueName() *string { return m.PeerDbUniqueName } -//GetPeerSidPrefix returns PeerSidPrefix +// GetPeerSidPrefix returns PeerSidPrefix func (m CreateDataGuardAssociationToExistingVmClusterDetails) GetPeerSidPrefix() *string { return m.PeerSidPrefix } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_with_new_db_system_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_with_new_db_system_details.go index 9e9223140ad..5ce50bf32f8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_with_new_db_system_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_data_guard_association_with_new_db_system_details.go @@ -142,37 +142,37 @@ type CreateDataGuardAssociationWithNewDbSystemDetails struct { TransportType CreateDataGuardAssociationDetailsTransportTypeEnum `mandatory:"true" json:"transportType"` } -//GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId +// GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId func (m CreateDataGuardAssociationWithNewDbSystemDetails) GetDatabaseSoftwareImageId() *string { return m.DatabaseSoftwareImageId } -//GetDatabaseAdminPassword returns DatabaseAdminPassword +// GetDatabaseAdminPassword returns DatabaseAdminPassword func (m CreateDataGuardAssociationWithNewDbSystemDetails) GetDatabaseAdminPassword() *string { return m.DatabaseAdminPassword } -//GetProtectionMode returns ProtectionMode +// GetProtectionMode returns ProtectionMode func (m CreateDataGuardAssociationWithNewDbSystemDetails) GetProtectionMode() CreateDataGuardAssociationDetailsProtectionModeEnum { return m.ProtectionMode } -//GetTransportType returns TransportType +// GetTransportType returns TransportType func (m CreateDataGuardAssociationWithNewDbSystemDetails) GetTransportType() CreateDataGuardAssociationDetailsTransportTypeEnum { return m.TransportType } -//GetIsActiveDataGuardEnabled returns IsActiveDataGuardEnabled +// GetIsActiveDataGuardEnabled returns IsActiveDataGuardEnabled func (m CreateDataGuardAssociationWithNewDbSystemDetails) GetIsActiveDataGuardEnabled() *bool { return m.IsActiveDataGuardEnabled } -//GetPeerDbUniqueName returns PeerDbUniqueName +// GetPeerDbUniqueName returns PeerDbUniqueName func (m CreateDataGuardAssociationWithNewDbSystemDetails) GetPeerDbUniqueName() *string { return m.PeerDbUniqueName } -//GetPeerSidPrefix returns PeerSidPrefix +// GetPeerSidPrefix returns PeerSidPrefix func (m CreateDataGuardAssociationWithNewDbSystemDetails) GetPeerSidPrefix() *string { return m.PeerSidPrefix } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_database_from_backup.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_database_from_backup.go index 2444d6bb89b..ad72c9ad065 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_database_from_backup.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_database_from_backup.go @@ -36,22 +36,22 @@ type CreateDatabaseFromBackup struct { KmsKeyVersionId *string `mandatory:"false" json:"kmsKeyVersionId"` } -//GetDbHomeId returns DbHomeId +// GetDbHomeId returns DbHomeId func (m CreateDatabaseFromBackup) GetDbHomeId() *string { return m.DbHomeId } -//GetDbVersion returns DbVersion +// GetDbVersion returns DbVersion func (m CreateDatabaseFromBackup) GetDbVersion() *string { return m.DbVersion } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateDatabaseFromBackup) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m CreateDatabaseFromBackup) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_details.go index fc8b54f9cf0..cd481d0dd9a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_details.go @@ -53,37 +53,37 @@ type CreateDbHomeWithDbSystemIdDetails struct { Database *CreateDatabaseDetails `mandatory:"false" json:"database"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDbHomeWithDbSystemIdDetails) GetDisplayName() *string { return m.DisplayName } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateDbHomeWithDbSystemIdDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m CreateDbHomeWithDbSystemIdDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } -//GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId +// GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId func (m CreateDbHomeWithDbSystemIdDetails) GetDatabaseSoftwareImageId() *string { return m.DatabaseSoftwareImageId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDbHomeWithDbSystemIdDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDbHomeWithDbSystemIdDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetIsDesupportedVersion returns IsDesupportedVersion +// GetIsDesupportedVersion returns IsDesupportedVersion func (m CreateDbHomeWithDbSystemIdDetails) GetIsDesupportedVersion() *bool { return m.IsDesupportedVersion } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_from_backup_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_from_backup_details.go index 73fe6183418..1fd8b982f07 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_from_backup_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_from_backup_details.go @@ -49,37 +49,37 @@ type CreateDbHomeWithDbSystemIdFromBackupDetails struct { IsDesupportedVersion *bool `mandatory:"false" json:"isDesupportedVersion"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDbHomeWithDbSystemIdFromBackupDetails) GetDisplayName() *string { return m.DisplayName } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateDbHomeWithDbSystemIdFromBackupDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m CreateDbHomeWithDbSystemIdFromBackupDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } -//GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId +// GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId func (m CreateDbHomeWithDbSystemIdFromBackupDetails) GetDatabaseSoftwareImageId() *string { return m.DatabaseSoftwareImageId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDbHomeWithDbSystemIdFromBackupDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDbHomeWithDbSystemIdFromBackupDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetIsDesupportedVersion returns IsDesupportedVersion +// GetIsDesupportedVersion returns IsDesupportedVersion func (m CreateDbHomeWithDbSystemIdFromBackupDetails) GetIsDesupportedVersion() *bool { return m.IsDesupportedVersion } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_from_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_from_database_details.go index 33a1a5005ce..e88953bbe34 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_from_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_db_system_id_from_database_details.go @@ -49,37 +49,37 @@ type CreateDbHomeWithDbSystemIdFromDatabaseDetails struct { IsDesupportedVersion *bool `mandatory:"false" json:"isDesupportedVersion"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDbHomeWithDbSystemIdFromDatabaseDetails) GetDisplayName() *string { return m.DisplayName } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateDbHomeWithDbSystemIdFromDatabaseDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m CreateDbHomeWithDbSystemIdFromDatabaseDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } -//GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId +// GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId func (m CreateDbHomeWithDbSystemIdFromDatabaseDetails) GetDatabaseSoftwareImageId() *string { return m.DatabaseSoftwareImageId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDbHomeWithDbSystemIdFromDatabaseDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDbHomeWithDbSystemIdFromDatabaseDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetIsDesupportedVersion returns IsDesupportedVersion +// GetIsDesupportedVersion returns IsDesupportedVersion func (m CreateDbHomeWithDbSystemIdFromDatabaseDetails) GetIsDesupportedVersion() *bool { return m.IsDesupportedVersion } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_vm_cluster_id_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_vm_cluster_id_details.go index afc52187a8f..730d3f9f3ee 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_vm_cluster_id_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_vm_cluster_id_details.go @@ -53,37 +53,37 @@ type CreateDbHomeWithVmClusterIdDetails struct { Database *CreateDatabaseDetails `mandatory:"false" json:"database"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDbHomeWithVmClusterIdDetails) GetDisplayName() *string { return m.DisplayName } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateDbHomeWithVmClusterIdDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m CreateDbHomeWithVmClusterIdDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } -//GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId +// GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId func (m CreateDbHomeWithVmClusterIdDetails) GetDatabaseSoftwareImageId() *string { return m.DatabaseSoftwareImageId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDbHomeWithVmClusterIdDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDbHomeWithVmClusterIdDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetIsDesupportedVersion returns IsDesupportedVersion +// GetIsDesupportedVersion returns IsDesupportedVersion func (m CreateDbHomeWithVmClusterIdDetails) GetIsDesupportedVersion() *bool { return m.IsDesupportedVersion } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_vm_cluster_id_from_backup_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_vm_cluster_id_from_backup_details.go index e6b9475af9c..ce39f8111c3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_vm_cluster_id_from_backup_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_db_home_with_vm_cluster_id_from_backup_details.go @@ -49,37 +49,37 @@ type CreateDbHomeWithVmClusterIdFromBackupDetails struct { IsDesupportedVersion *bool `mandatory:"false" json:"isDesupportedVersion"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDbHomeWithVmClusterIdFromBackupDetails) GetDisplayName() *string { return m.DisplayName } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateDbHomeWithVmClusterIdFromBackupDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m CreateDbHomeWithVmClusterIdFromBackupDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } -//GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId +// GetDatabaseSoftwareImageId returns DatabaseSoftwareImageId func (m CreateDbHomeWithVmClusterIdFromBackupDetails) GetDatabaseSoftwareImageId() *string { return m.DatabaseSoftwareImageId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDbHomeWithVmClusterIdFromBackupDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDbHomeWithVmClusterIdFromBackupDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetIsDesupportedVersion returns IsDesupportedVersion +// GetIsDesupportedVersion returns IsDesupportedVersion func (m CreateDbHomeWithVmClusterIdFromBackupDetails) GetIsDesupportedVersion() *bool { return m.IsDesupportedVersion } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_external_macs_connector_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_external_macs_connector_details.go index 4bdacee56d9..2f09e9daaa1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_external_macs_connector_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_external_macs_connector_details.go @@ -46,22 +46,22 @@ type CreateExternalMacsConnectorDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateExternalMacsConnectorDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateExternalMacsConnectorDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateExternalMacsConnectorDetails) GetDisplayName() *string { return m.DisplayName } -//GetExternalDatabaseId returns ExternalDatabaseId +// GetExternalDatabaseId returns ExternalDatabaseId func (m CreateExternalMacsConnectorDetails) GetExternalDatabaseId() *string { return m.ExternalDatabaseId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_new_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_new_database_details.go index 3dc093b01df..f29c663ab62 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_new_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_new_database_details.go @@ -36,22 +36,22 @@ type CreateNewDatabaseDetails struct { KmsKeyVersionId *string `mandatory:"false" json:"kmsKeyVersionId"` } -//GetDbHomeId returns DbHomeId +// GetDbHomeId returns DbHomeId func (m CreateNewDatabaseDetails) GetDbHomeId() *string { return m.DbHomeId } -//GetDbVersion returns DbVersion +// GetDbVersion returns DbVersion func (m CreateNewDatabaseDetails) GetDbVersion() *string { return m.DbVersion } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateNewDatabaseDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m CreateNewDatabaseDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_nfs_backup_destination_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_nfs_backup_destination_details.go index 5cc6b80535d..99c43a5abc9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_nfs_backup_destination_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_nfs_backup_destination_details.go @@ -41,22 +41,22 @@ type CreateNfsBackupDestinationDetails struct { MountTypeDetails MountTypeDetails `mandatory:"false" json:"mountTypeDetails"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateNfsBackupDestinationDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateNfsBackupDestinationDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateNfsBackupDestinationDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateNfsBackupDestinationDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_recovery_appliance_backup_destination_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_recovery_appliance_backup_destination_details.go index 4d13353d865..e40de50e117 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_recovery_appliance_backup_destination_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_recovery_appliance_backup_destination_details.go @@ -41,22 +41,22 @@ type CreateRecoveryApplianceBackupDestinationDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateRecoveryApplianceBackupDestinationDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateRecoveryApplianceBackupDestinationDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateRecoveryApplianceBackupDestinationDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateRecoveryApplianceBackupDestinationDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_refreshable_autonomous_database_clone_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_refreshable_autonomous_database_clone_details.go index bee5e5ff342..c3b447835f6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/create_refreshable_autonomous_database_clone_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/create_refreshable_autonomous_database_clone_details.go @@ -238,232 +238,232 @@ type CreateRefreshableAutonomousDatabaseCloneDetails struct { AutonomousMaintenanceScheduleType CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum `mandatory:"false" json:"autonomousMaintenanceScheduleType,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetCharacterSet returns CharacterSet +// GetCharacterSet returns CharacterSet func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetCharacterSet() *string { return m.CharacterSet } -//GetNcharacterSet returns NcharacterSet +// GetNcharacterSet returns NcharacterSet func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetNcharacterSet() *string { return m.NcharacterSet } -//GetDbName returns DbName +// GetDbName returns DbName func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetDbName() *string { return m.DbName } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays +// GetBackupRetentionPeriodInDays returns BackupRetentionPeriodInDays func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetBackupRetentionPeriodInDays() *int { return m.BackupRetentionPeriodInDays } -//GetComputeModel returns ComputeModel +// GetComputeModel returns ComputeModel func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetComputeModel() CreateAutonomousDatabaseBaseComputeModelEnum { return m.ComputeModel } -//GetComputeCount returns ComputeCount +// GetComputeCount returns ComputeCount func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetComputeCount() *float32 { return m.ComputeCount } -//GetOcpuCount returns OcpuCount +// GetOcpuCount returns OcpuCount func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetOcpuCount() *float32 { return m.OcpuCount } -//GetDbWorkload returns DbWorkload +// GetDbWorkload returns DbWorkload func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetDbWorkload() CreateAutonomousDatabaseBaseDbWorkloadEnum { return m.DbWorkload } -//GetDataStorageSizeInTBs returns DataStorageSizeInTBs +// GetDataStorageSizeInTBs returns DataStorageSizeInTBs func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetDataStorageSizeInTBs() *int { return m.DataStorageSizeInTBs } -//GetDataStorageSizeInGBs returns DataStorageSizeInGBs +// GetDataStorageSizeInGBs returns DataStorageSizeInGBs func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetDataStorageSizeInGBs() *int { return m.DataStorageSizeInGBs } -//GetIsFreeTier returns IsFreeTier +// GetIsFreeTier returns IsFreeTier func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetIsFreeTier() *bool { return m.IsFreeTier } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetVaultId() *string { return m.VaultId } -//GetAdminPassword returns AdminPassword +// GetAdminPassword returns AdminPassword func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetAdminPassword() *string { return m.AdminPassword } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetDisplayName() *string { return m.DisplayName } -//GetLicenseModel returns LicenseModel +// GetLicenseModel returns LicenseModel func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetLicenseModel() CreateAutonomousDatabaseBaseLicenseModelEnum { return m.LicenseModel } -//GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted +// GetIsPreviewVersionWithServiceTermsAccepted returns IsPreviewVersionWithServiceTermsAccepted func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetIsPreviewVersionWithServiceTermsAccepted() *bool { return m.IsPreviewVersionWithServiceTermsAccepted } -//GetIsAutoScalingEnabled returns IsAutoScalingEnabled +// GetIsAutoScalingEnabled returns IsAutoScalingEnabled func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetIsAutoScalingEnabled() *bool { return m.IsAutoScalingEnabled } -//GetIsDedicated returns IsDedicated +// GetIsDedicated returns IsDedicated func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetIsDedicated() *bool { return m.IsDedicated } -//GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId +// GetAutonomousContainerDatabaseId returns AutonomousContainerDatabaseId func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetAutonomousContainerDatabaseId() *string { return m.AutonomousContainerDatabaseId } -//GetInMemoryPercentage returns InMemoryPercentage +// GetInMemoryPercentage returns InMemoryPercentage func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetInMemoryPercentage() *int { return m.InMemoryPercentage } -//GetIsAccessControlEnabled returns IsAccessControlEnabled +// GetIsAccessControlEnabled returns IsAccessControlEnabled func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetIsAccessControlEnabled() *bool { return m.IsAccessControlEnabled } -//GetWhitelistedIps returns WhitelistedIps +// GetWhitelistedIps returns WhitelistedIps func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetWhitelistedIps() []string { return m.WhitelistedIps } -//GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed +// GetArePrimaryWhitelistedIpsUsed returns ArePrimaryWhitelistedIpsUsed func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetArePrimaryWhitelistedIpsUsed() *bool { return m.ArePrimaryWhitelistedIpsUsed } -//GetStandbyWhitelistedIps returns StandbyWhitelistedIps +// GetStandbyWhitelistedIps returns StandbyWhitelistedIps func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetStandbyWhitelistedIps() []string { return m.StandbyWhitelistedIps } -//GetIsDataGuardEnabled returns IsDataGuardEnabled +// GetIsDataGuardEnabled returns IsDataGuardEnabled func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetIsDataGuardEnabled() *bool { return m.IsDataGuardEnabled } -//GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled +// GetIsLocalDataGuardEnabled returns IsLocalDataGuardEnabled func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetIsLocalDataGuardEnabled() *bool { return m.IsLocalDataGuardEnabled } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetNsgIds() []string { return m.NsgIds } -//GetPrivateEndpointLabel returns PrivateEndpointLabel +// GetPrivateEndpointLabel returns PrivateEndpointLabel func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetPrivateEndpointLabel() *string { return m.PrivateEndpointLabel } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateEndpointIp returns PrivateEndpointIp +// GetPrivateEndpointIp returns PrivateEndpointIp func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetPrivateEndpointIp() *string { return m.PrivateEndpointIp } -//GetDbVersion returns DbVersion +// GetDbVersion returns DbVersion func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetDbVersion() *string { return m.DbVersion } -//GetCustomerContacts returns CustomerContacts +// GetCustomerContacts returns CustomerContacts func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetCustomerContacts() []CustomerContact { return m.CustomerContacts } -//GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired +// GetIsMtlsConnectionRequired returns IsMtlsConnectionRequired func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetIsMtlsConnectionRequired() *bool { return m.IsMtlsConnectionRequired } -//GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType +// GetAutonomousMaintenanceScheduleType returns AutonomousMaintenanceScheduleType func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetAutonomousMaintenanceScheduleType() CreateAutonomousDatabaseBaseAutonomousMaintenanceScheduleTypeEnum { return m.AutonomousMaintenanceScheduleType } -//GetScheduledOperations returns ScheduledOperations +// GetScheduledOperations returns ScheduledOperations func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetScheduledOperations() []ScheduledOperationDetails { return m.ScheduledOperations } -//GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled +// GetIsAutoScalingForStorageEnabled returns IsAutoScalingForStorageEnabled func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetIsAutoScalingForStorageEnabled() *bool { return m.IsAutoScalingForStorageEnabled } -//GetMaxCpuCoreCount returns MaxCpuCoreCount +// GetMaxCpuCoreCount returns MaxCpuCoreCount func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetMaxCpuCoreCount() *int { return m.MaxCpuCoreCount } -//GetDatabaseEdition returns DatabaseEdition +// GetDatabaseEdition returns DatabaseEdition func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetDatabaseEdition() AutonomousDatabaseSummaryDatabaseEditionEnum { return m.DatabaseEdition } -//GetDbToolsDetails returns DbToolsDetails +// GetDbToolsDetails returns DbToolsDetails func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetDbToolsDetails() []DatabaseTool { return m.DbToolsDetails } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetSecretId() *string { return m.SecretId } -//GetSecretVersionNumber returns SecretVersionNumber +// GetSecretVersionNumber returns SecretVersionNumber func (m CreateRefreshableAutonomousDatabaseCloneDetails) GetSecretVersionNumber() *int { return m.SecretVersionNumber } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/database_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/database_client.go index d2033ae09a8..2ef75315373 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/database_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/database_client.go @@ -93,7 +93,7 @@ func (client *DatabaseClient) ConfigurationProvider() *common.ConfigurationProvi // ActivateExadataInfrastructure Activates the specified Exadata infrastructure resource. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ActivateExadataInfrastructure.go.html to see an example of how to use ActivateExadataInfrastructure API. func (client DatabaseClient) ActivateExadataInfrastructure(ctx context.Context, request ActivateExadataInfrastructureRequest) (response ActivateExadataInfrastructureResponse, err error) { @@ -155,7 +155,7 @@ func (client DatabaseClient) activateExadataInfrastructure(ctx context.Context, // AddStorageCapacityCloudExadataInfrastructure Makes the storage capacity from additional storage servers available for Cloud VM Cluster consumption. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/AddStorageCapacityCloudExadataInfrastructure.go.html to see an example of how to use AddStorageCapacityCloudExadataInfrastructure API. func (client DatabaseClient) AddStorageCapacityCloudExadataInfrastructure(ctx context.Context, request AddStorageCapacityCloudExadataInfrastructureRequest) (response AddStorageCapacityCloudExadataInfrastructureResponse, err error) { @@ -217,7 +217,7 @@ func (client DatabaseClient) addStorageCapacityCloudExadataInfrastructure(ctx co // AddStorageCapacityExadataInfrastructure Makes the storage capacity from additional storage servers available for VM Cluster consumption. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/AddStorageCapacityExadataInfrastructure.go.html to see an example of how to use AddStorageCapacityExadataInfrastructure API. func (client DatabaseClient) AddStorageCapacityExadataInfrastructure(ctx context.Context, request AddStorageCapacityExadataInfrastructureRequest) (response AddStorageCapacityExadataInfrastructureResponse, err error) { @@ -279,7 +279,7 @@ func (client DatabaseClient) addStorageCapacityExadataInfrastructure(ctx context // AddVirtualMachineToCloudVmCluster Add Virtual Machines to the Cloud VM cluster. Applies to Exadata Cloud instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/AddVirtualMachineToCloudVmCluster.go.html to see an example of how to use AddVirtualMachineToCloudVmCluster API. func (client DatabaseClient) AddVirtualMachineToCloudVmCluster(ctx context.Context, request AddVirtualMachineToCloudVmClusterRequest) (response AddVirtualMachineToCloudVmClusterResponse, err error) { @@ -341,7 +341,7 @@ func (client DatabaseClient) addVirtualMachineToCloudVmCluster(ctx context.Conte // AddVirtualMachineToVmCluster Add Virtual Machines to the VM cluster. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/AddVirtualMachineToVmCluster.go.html to see an example of how to use AddVirtualMachineToVmCluster API. func (client DatabaseClient) AddVirtualMachineToVmCluster(ctx context.Context, request AddVirtualMachineToVmClusterRequest) (response AddVirtualMachineToVmClusterResponse, err error) { @@ -403,7 +403,7 @@ func (client DatabaseClient) addVirtualMachineToVmCluster(ctx context.Context, r // AutonomousDatabaseManualRefresh Initiates a data refresh for an Autonomous Database refreshable clone. Data is refreshed from the source database to the point of a specified timestamp. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/AutonomousDatabaseManualRefresh.go.html to see an example of how to use AutonomousDatabaseManualRefresh API. func (client DatabaseClient) AutonomousDatabaseManualRefresh(ctx context.Context, request AutonomousDatabaseManualRefreshRequest) (response AutonomousDatabaseManualRefreshResponse, err error) { @@ -465,7 +465,7 @@ func (client DatabaseClient) autonomousDatabaseManualRefresh(ctx context.Context // CancelBackup Cancel automatic/standalone full/incremental create backup workrequests specified by the backup Id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CancelBackup.go.html to see an example of how to use CancelBackup API. func (client DatabaseClient) CancelBackup(ctx context.Context, request CancelBackupRequest) (response CancelBackupResponse, err error) { @@ -529,7 +529,7 @@ func (client DatabaseClient) cancelBackup(ctx context.Context, request common.OC // For more information about moving Autonomous Container Databases, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeAutonomousContainerDatabaseCompartment.go.html to see an example of how to use ChangeAutonomousContainerDatabaseCompartment API. func (client DatabaseClient) ChangeAutonomousContainerDatabaseCompartment(ctx context.Context, request ChangeAutonomousContainerDatabaseCompartmentRequest) (response ChangeAutonomousContainerDatabaseCompartmentResponse, err error) { @@ -593,7 +593,7 @@ func (client DatabaseClient) changeAutonomousContainerDatabaseCompartment(ctx co // For more information about moving Autonomous Databases, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeAutonomousDatabaseCompartment.go.html to see an example of how to use ChangeAutonomousDatabaseCompartment API. func (client DatabaseClient) ChangeAutonomousDatabaseCompartment(ctx context.Context, request ChangeAutonomousDatabaseCompartmentRequest) (response ChangeAutonomousDatabaseCompartmentResponse, err error) { @@ -657,7 +657,7 @@ func (client DatabaseClient) changeAutonomousDatabaseCompartment(ctx context.Con // For more information, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeAutonomousExadataInfrastructureCompartment.go.html to see an example of how to use ChangeAutonomousExadataInfrastructureCompartment API. func (client DatabaseClient) ChangeAutonomousExadataInfrastructureCompartment(ctx context.Context, request ChangeAutonomousExadataInfrastructureCompartmentRequest) (response ChangeAutonomousExadataInfrastructureCompartmentResponse, err error) { @@ -719,7 +719,7 @@ func (client DatabaseClient) changeAutonomousExadataInfrastructureCompartment(ct // ChangeAutonomousVmClusterCompartment Moves an Autonomous VM cluster and its dependent resources to another compartment. Applies to Exadata Cloud@Customer only. For systems in the Oracle cloud, see ChangeAutonomousVmClusterCompartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeAutonomousVmClusterCompartment.go.html to see an example of how to use ChangeAutonomousVmClusterCompartment API. func (client DatabaseClient) ChangeAutonomousVmClusterCompartment(ctx context.Context, request ChangeAutonomousVmClusterCompartmentRequest) (response ChangeAutonomousVmClusterCompartmentResponse, err error) { @@ -783,7 +783,7 @@ func (client DatabaseClient) changeAutonomousVmClusterCompartment(ctx context.Co // For more information, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeBackupDestinationCompartment.go.html to see an example of how to use ChangeBackupDestinationCompartment API. func (client DatabaseClient) ChangeBackupDestinationCompartment(ctx context.Context, request ChangeBackupDestinationCompartmentRequest) (response ChangeBackupDestinationCompartmentResponse, err error) { @@ -845,7 +845,7 @@ func (client DatabaseClient) changeBackupDestinationCompartment(ctx context.Cont // ChangeCloudAutonomousVmClusterCompartment Moves an Autonomous Exadata VM cluster in the Oracle cloud and its dependent resources to another compartment. For Exadata Cloud@Customer systems, see ChangeAutonomousVmClusterCompartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeCloudAutonomousVmClusterCompartment.go.html to see an example of how to use ChangeCloudAutonomousVmClusterCompartment API. func (client DatabaseClient) ChangeCloudAutonomousVmClusterCompartment(ctx context.Context, request ChangeCloudAutonomousVmClusterCompartmentRequest) (response ChangeCloudAutonomousVmClusterCompartmentResponse, err error) { @@ -907,7 +907,7 @@ func (client DatabaseClient) changeCloudAutonomousVmClusterCompartment(ctx conte // ChangeCloudExadataInfrastructureCompartment Moves a cloud Exadata infrastructure resource and its dependent resources to another compartment. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only.For more information about moving resources to a different compartment, see Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeCloudExadataInfrastructureCompartment.go.html to see an example of how to use ChangeCloudExadataInfrastructureCompartment API. func (client DatabaseClient) ChangeCloudExadataInfrastructureCompartment(ctx context.Context, request ChangeCloudExadataInfrastructureCompartmentRequest) (response ChangeCloudExadataInfrastructureCompartmentResponse, err error) { @@ -969,7 +969,7 @@ func (client DatabaseClient) changeCloudExadataInfrastructureCompartment(ctx con // ChangeCloudVmClusterCompartment Moves a cloud VM cluster and its dependent resources to another compartment. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeCloudVmClusterCompartment.go.html to see an example of how to use ChangeCloudVmClusterCompartment API. func (client DatabaseClient) ChangeCloudVmClusterCompartment(ctx context.Context, request ChangeCloudVmClusterCompartmentRequest) (response ChangeCloudVmClusterCompartmentResponse, err error) { @@ -1033,7 +1033,7 @@ func (client DatabaseClient) changeCloudVmClusterCompartment(ctx context.Context // For more information about moving Databse Software Images, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeDatabaseSoftwareImageCompartment.go.html to see an example of how to use ChangeDatabaseSoftwareImageCompartment API. func (client DatabaseClient) ChangeDatabaseSoftwareImageCompartment(ctx context.Context, request ChangeDatabaseSoftwareImageCompartmentRequest) (response ChangeDatabaseSoftwareImageCompartmentResponse, err error) { @@ -1097,7 +1097,7 @@ func (client DatabaseClient) changeDatabaseSoftwareImageCompartment(ctx context. // For more information about changing Autonomous Container Databases Dataguard Role, see // Convert Physical Standby to Snapshot Standby (https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html#ADBCL-GUID-D3B503F1-0032-4B0D-9F00-ACAE8151AB80) and Convert Snapshot Standby to Physical Standby (https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html#ADBCL-GUID-E8D7E0EE-8244-467D-B33A-1BC6F969A0A4). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeDataguardRole.go.html to see an example of how to use ChangeDataguardRole API. func (client DatabaseClient) ChangeDataguardRole(ctx context.Context, request ChangeDataguardRoleRequest) (response ChangeDataguardRoleResponse, err error) { @@ -1161,7 +1161,7 @@ func (client DatabaseClient) changeDataguardRole(ctx context.Context, request co // For more information about moving DB systems, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeDbSystemCompartment.go.html to see an example of how to use ChangeDbSystemCompartment API. func (client DatabaseClient) ChangeDbSystemCompartment(ctx context.Context, request ChangeDbSystemCompartmentRequest) (response ChangeDbSystemCompartmentResponse, err error) { @@ -1223,7 +1223,7 @@ func (client DatabaseClient) changeDbSystemCompartment(ctx context.Context, requ // ChangeDisasterRecoveryConfiguration This operation updates the cross-region disaster recovery (DR) details of the standby Autonomous Database Serverless database, and must be run on the standby side. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeDisasterRecoveryConfiguration.go.html to see an example of how to use ChangeDisasterRecoveryConfiguration API. func (client DatabaseClient) ChangeDisasterRecoveryConfiguration(ctx context.Context, request ChangeDisasterRecoveryConfigurationRequest) (response ChangeDisasterRecoveryConfigurationResponse, err error) { @@ -1281,7 +1281,7 @@ func (client DatabaseClient) changeDisasterRecoveryConfiguration(ctx context.Con // ChangeExadataInfrastructureCompartment Moves an Exadata infrastructure resource and its dependent resources to another compartment. Applies to Exadata Cloud@Customer instances only. // To move an Exadata Cloud Service infrastructure resource to another compartment, use the ChangeCloudExadataInfrastructureCompartment operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeExadataInfrastructureCompartment.go.html to see an example of how to use ChangeExadataInfrastructureCompartment API. func (client DatabaseClient) ChangeExadataInfrastructureCompartment(ctx context.Context, request ChangeExadataInfrastructureCompartmentRequest) (response ChangeExadataInfrastructureCompartmentResponse, err error) { @@ -1346,7 +1346,7 @@ func (client DatabaseClient) changeExadataInfrastructureCompartment(ctx context. // For more information about moving external container databases, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeExternalContainerDatabaseCompartment.go.html to see an example of how to use ChangeExternalContainerDatabaseCompartment API. func (client DatabaseClient) ChangeExternalContainerDatabaseCompartment(ctx context.Context, request ChangeExternalContainerDatabaseCompartmentRequest) (response ChangeExternalContainerDatabaseCompartmentResponse, err error) { @@ -1410,7 +1410,7 @@ func (client DatabaseClient) changeExternalContainerDatabaseCompartment(ctx cont // For more information about moving external non-container databases, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeExternalNonContainerDatabaseCompartment.go.html to see an example of how to use ChangeExternalNonContainerDatabaseCompartment API. func (client DatabaseClient) ChangeExternalNonContainerDatabaseCompartment(ctx context.Context, request ChangeExternalNonContainerDatabaseCompartmentRequest) (response ChangeExternalNonContainerDatabaseCompartmentResponse, err error) { @@ -1475,7 +1475,7 @@ func (client DatabaseClient) changeExternalNonContainerDatabaseCompartment(ctx c // For more information about moving external pluggable databases, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeExternalPluggableDatabaseCompartment.go.html to see an example of how to use ChangeExternalPluggableDatabaseCompartment API. func (client DatabaseClient) ChangeExternalPluggableDatabaseCompartment(ctx context.Context, request ChangeExternalPluggableDatabaseCompartmentRequest) (response ChangeExternalPluggableDatabaseCompartmentResponse, err error) { @@ -1539,7 +1539,7 @@ func (client DatabaseClient) changeExternalPluggableDatabaseCompartment(ctx cont // For more information about moving key stores, see // Moving Database Resources to a Different Compartment (https://docs.cloud.oracle.com/Content/Database/Concepts/databaseoverview.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeKeyStoreCompartment.go.html to see an example of how to use ChangeKeyStoreCompartment API. func (client DatabaseClient) ChangeKeyStoreCompartment(ctx context.Context, request ChangeKeyStoreCompartmentRequest) (response ChangeKeyStoreCompartmentResponse, err error) { @@ -1601,7 +1601,7 @@ func (client DatabaseClient) changeKeyStoreCompartment(ctx context.Context, requ // ChangeKeyStoreType Changes encryption key management type // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeKeyStoreType.go.html to see an example of how to use ChangeKeyStoreType API. func (client DatabaseClient) ChangeKeyStoreType(ctx context.Context, request ChangeKeyStoreTypeRequest) (response ChangeKeyStoreTypeResponse, err error) { @@ -1663,7 +1663,7 @@ func (client DatabaseClient) changeKeyStoreType(ctx context.Context, request com // ChangeOneoffPatchCompartment Move the one-off patch to the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeOneoffPatchCompartment.go.html to see an example of how to use ChangeOneoffPatchCompartment API. func (client DatabaseClient) ChangeOneoffPatchCompartment(ctx context.Context, request ChangeOneoffPatchCompartmentRequest) (response ChangeOneoffPatchCompartmentResponse, err error) { @@ -1726,7 +1726,7 @@ func (client DatabaseClient) changeOneoffPatchCompartment(ctx context.Context, r // ChangeVmClusterCompartment Moves a VM cluster and its dependent resources to another compartment. Applies to Exadata Cloud@Customer instances only. // To move a cloud VM cluster in an Exadata Cloud Service instance to another compartment, use the ChangeCloudVmClusterCompartment operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ChangeVmClusterCompartment.go.html to see an example of how to use ChangeVmClusterCompartment API. func (client DatabaseClient) ChangeVmClusterCompartment(ctx context.Context, request ChangeVmClusterCompartmentRequest) (response ChangeVmClusterCompartmentResponse, err error) { @@ -1789,7 +1789,7 @@ func (client DatabaseClient) changeVmClusterCompartment(ctx context.Context, req // CheckExternalDatabaseConnectorConnectionStatus Check the status of the external database connection specified in this connector. // This operation will refresh the connectionStatus and timeConnectionStatusLastUpdated fields. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CheckExternalDatabaseConnectorConnectionStatus.go.html to see an example of how to use CheckExternalDatabaseConnectorConnectionStatus API. func (client DatabaseClient) CheckExternalDatabaseConnectorConnectionStatus(ctx context.Context, request CheckExternalDatabaseConnectorConnectionStatusRequest) (response CheckExternalDatabaseConnectorConnectionStatusResponse, err error) { @@ -1852,7 +1852,7 @@ func (client DatabaseClient) checkExternalDatabaseConnectorConnectionStatus(ctx // CompleteExternalBackupJob Changes the status of the standalone backup resource to `ACTIVE` after the backup is created from the on-premises database and placed in Oracle Cloud Infrastructure Object Storage. // **Note:** This API is used by an Oracle Cloud Infrastructure Python script that is packaged with the Oracle Cloud Infrastructure CLI. Oracle recommends that you use the script instead using the API directly. See Migrating an On-Premises Database to Oracle Cloud Infrastructure by Creating a Backup in the Cloud (https://docs.cloud.oracle.com/Content/Database/Tasks/mig-onprembackup.htm) for more information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CompleteExternalBackupJob.go.html to see an example of how to use CompleteExternalBackupJob API. func (client DatabaseClient) CompleteExternalBackupJob(ctx context.Context, request CompleteExternalBackupJobRequest) (response CompleteExternalBackupJobResponse, err error) { @@ -1914,7 +1914,7 @@ func (client DatabaseClient) completeExternalBackupJob(ctx context.Context, requ // ConfigureAutonomousDatabaseVaultKey Configures the Autonomous Database Vault service key (https://docs.cloud.oracle.com/Content/KeyManagement/Concepts/keyoverview.htm#concepts). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ConfigureAutonomousDatabaseVaultKey.go.html to see an example of how to use ConfigureAutonomousDatabaseVaultKey API. func (client DatabaseClient) ConfigureAutonomousDatabaseVaultKey(ctx context.Context, request ConfigureAutonomousDatabaseVaultKeyRequest) (response ConfigureAutonomousDatabaseVaultKeyResponse, err error) { @@ -1976,7 +1976,7 @@ func (client DatabaseClient) configureAutonomousDatabaseVaultKey(ctx context.Con // ConvertToPdb Converts a non-container database to a pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ConvertToPdb.go.html to see an example of how to use ConvertToPdb API. func (client DatabaseClient) ConvertToPdb(ctx context.Context, request ConvertToPdbRequest) (response ConvertToPdbResponse, err error) { @@ -2033,7 +2033,7 @@ func (client DatabaseClient) convertToPdb(ctx context.Context, request common.OC // CreateApplicationVip Creates a new application virtual IP (VIP) address in the specified cloud VM cluster based on the request parameters you provide. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateApplicationVip.go.html to see an example of how to use CreateApplicationVip API. func (client DatabaseClient) CreateApplicationVip(ctx context.Context, request CreateApplicationVipRequest) (response CreateApplicationVipResponse, err error) { @@ -2095,7 +2095,7 @@ func (client DatabaseClient) createApplicationVip(ctx context.Context, request c // CreateAutonomousContainerDatabase Creates an Autonomous Container Database in the specified Autonomous Exadata Infrastructure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateAutonomousContainerDatabase.go.html to see an example of how to use CreateAutonomousContainerDatabase API. func (client DatabaseClient) CreateAutonomousContainerDatabase(ctx context.Context, request CreateAutonomousContainerDatabaseRequest) (response CreateAutonomousContainerDatabaseResponse, err error) { @@ -2157,7 +2157,7 @@ func (client DatabaseClient) createAutonomousContainerDatabase(ctx context.Conte // CreateAutonomousDatabase Creates a new Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateAutonomousDatabase.go.html to see an example of how to use CreateAutonomousDatabase API. func (client DatabaseClient) CreateAutonomousDatabase(ctx context.Context, request CreateAutonomousDatabaseRequest) (response CreateAutonomousDatabaseResponse, err error) { @@ -2219,7 +2219,7 @@ func (client DatabaseClient) createAutonomousDatabase(ctx context.Context, reque // CreateAutonomousDatabaseBackup Creates a new Autonomous Database backup for the specified database based on the provided request parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateAutonomousDatabaseBackup.go.html to see an example of how to use CreateAutonomousDatabaseBackup API. func (client DatabaseClient) CreateAutonomousDatabaseBackup(ctx context.Context, request CreateAutonomousDatabaseBackupRequest) (response CreateAutonomousDatabaseBackupResponse, err error) { @@ -2281,7 +2281,7 @@ func (client DatabaseClient) createAutonomousDatabaseBackup(ctx context.Context, // CreateAutonomousVmCluster Creates an Autonomous VM cluster for Exadata Cloud@Customer. To create an Autonomous VM Cluster in the Oracle cloud, see CreateCloudAutonomousVmCluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateAutonomousVmCluster.go.html to see an example of how to use CreateAutonomousVmCluster API. func (client DatabaseClient) CreateAutonomousVmCluster(ctx context.Context, request CreateAutonomousVmClusterRequest) (response CreateAutonomousVmClusterResponse, err error) { @@ -2343,7 +2343,7 @@ func (client DatabaseClient) createAutonomousVmCluster(ctx context.Context, requ // CreateBackup Creates a new backup in the specified database based on the request parameters you provide. If you previously used RMAN or dbcli to configure backups and then you switch to using the Console or the API for backups, a new backup configuration is created and associated with your database. This means that you can no longer rely on your previously configured unmanaged backups to work. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateBackup.go.html to see an example of how to use CreateBackup API. func (client DatabaseClient) CreateBackup(ctx context.Context, request CreateBackupRequest) (response CreateBackupResponse, err error) { @@ -2405,7 +2405,7 @@ func (client DatabaseClient) createBackup(ctx context.Context, request common.OC // CreateBackupDestination Creates a backup destination in an Exadata Cloud@Customer system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateBackupDestination.go.html to see an example of how to use CreateBackupDestination API. func (client DatabaseClient) CreateBackupDestination(ctx context.Context, request CreateBackupDestinationRequest) (response CreateBackupDestinationResponse, err error) { @@ -2467,7 +2467,7 @@ func (client DatabaseClient) createBackupDestination(ctx context.Context, reques // CreateCloudAutonomousVmCluster Creates an Autonomous Exadata VM cluster in the Oracle cloud. For Exadata Cloud@Customer systems, see CreateAutonomousVmCluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateCloudAutonomousVmCluster.go.html to see an example of how to use CreateCloudAutonomousVmCluster API. func (client DatabaseClient) CreateCloudAutonomousVmCluster(ctx context.Context, request CreateCloudAutonomousVmClusterRequest) (response CreateCloudAutonomousVmClusterResponse, err error) { @@ -2529,7 +2529,7 @@ func (client DatabaseClient) createCloudAutonomousVmCluster(ctx context.Context, // CreateCloudExadataInfrastructure Creates a cloud Exadata infrastructure resource. This resource is used to create either an Exadata Cloud Service (https://docs.cloud.oracle.com/Content/Database/Concepts/exaoverview.htm) instance or an Autonomous Database on dedicated Exadata infrastructure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateCloudExadataInfrastructure.go.html to see an example of how to use CreateCloudExadataInfrastructure API. func (client DatabaseClient) CreateCloudExadataInfrastructure(ctx context.Context, request CreateCloudExadataInfrastructureRequest) (response CreateCloudExadataInfrastructureResponse, err error) { @@ -2591,7 +2591,7 @@ func (client DatabaseClient) createCloudExadataInfrastructure(ctx context.Contex // CreateCloudVmCluster Creates a cloud VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateCloudVmCluster.go.html to see an example of how to use CreateCloudVmCluster API. func (client DatabaseClient) CreateCloudVmCluster(ctx context.Context, request CreateCloudVmClusterRequest) (response CreateCloudVmClusterResponse, err error) { @@ -2655,7 +2655,7 @@ func (client DatabaseClient) createCloudVmCluster(ctx context.Context, request c // After the console connection has been created and is available, // you connect to the console using SSH. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateConsoleConnection.go.html to see an example of how to use CreateConsoleConnection API. func (client DatabaseClient) CreateConsoleConnection(ctx context.Context, request CreateConsoleConnectionRequest) (response CreateConsoleConnectionResponse, err error) { @@ -2723,7 +2723,7 @@ func (client DatabaseClient) createConsoleConnection(ctx context.Context, reques // resource in the Console. For more information, see // Resource Identifiers (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateDataGuardAssociation.go.html to see an example of how to use CreateDataGuardAssociation API. func (client DatabaseClient) CreateDataGuardAssociation(ctx context.Context, request CreateDataGuardAssociationRequest) (response CreateDataGuardAssociationResponse, err error) { @@ -2785,7 +2785,7 @@ func (client DatabaseClient) createDataGuardAssociation(ctx context.Context, req // CreateDatabase Creates a new database in the specified Database Home. If the database version is provided, it must match the version of the Database Home. Applies to Exadata and Exadata Cloud@Customer systems. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateDatabase.go.html to see an example of how to use CreateDatabase API. func (client DatabaseClient) CreateDatabase(ctx context.Context, request CreateDatabaseRequest) (response CreateDatabaseResponse, err error) { @@ -2847,7 +2847,7 @@ func (client DatabaseClient) createDatabase(ctx context.Context, request common. // CreateDatabaseSoftwareImage create database software image in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateDatabaseSoftwareImage.go.html to see an example of how to use CreateDatabaseSoftwareImage API. func (client DatabaseClient) CreateDatabaseSoftwareImage(ctx context.Context, request CreateDatabaseSoftwareImageRequest) (response CreateDatabaseSoftwareImageResponse, err error) { @@ -2909,7 +2909,7 @@ func (client DatabaseClient) createDatabaseSoftwareImage(ctx context.Context, re // CreateDbHome Creates a new Database Home in the specified database system based on the request parameters you provide. Applies to bare metal DB systems, Exadata systems, and Exadata Cloud@Customer systems. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateDbHome.go.html to see an example of how to use CreateDbHome API. func (client DatabaseClient) CreateDbHome(ctx context.Context, request CreateDbHomeRequest) (response CreateDbHomeResponse, err error) { @@ -2972,7 +2972,7 @@ func (client DatabaseClient) createDbHome(ctx context.Context, request common.OC // CreateExadataInfrastructure Creates an Exadata infrastructure resource. Applies to Exadata Cloud@Customer instances only. // To create an Exadata Cloud Service infrastructure resource, use the CreateCloudExadataInfrastructure operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateExadataInfrastructure.go.html to see an example of how to use CreateExadataInfrastructure API. func (client DatabaseClient) CreateExadataInfrastructure(ctx context.Context, request CreateExadataInfrastructureRequest) (response CreateExadataInfrastructureResponse, err error) { @@ -3035,7 +3035,7 @@ func (client DatabaseClient) createExadataInfrastructure(ctx context.Context, re // CreateExternalBackupJob Creates a new backup resource and returns the information the caller needs to back up an on-premises Oracle Database to Oracle Cloud Infrastructure. // **Note:** This API is used by an Oracle Cloud Infrastructure Python script that is packaged with the Oracle Cloud Infrastructure CLI. Oracle recommends that you use the script instead using the API directly. See Migrating an On-Premises Database to Oracle Cloud Infrastructure by Creating a Backup in the Cloud (https://docs.cloud.oracle.com/Content/Database/Tasks/mig-onprembackup.htm) for more information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateExternalBackupJob.go.html to see an example of how to use CreateExternalBackupJob API. func (client DatabaseClient) CreateExternalBackupJob(ctx context.Context, request CreateExternalBackupJobRequest) (response CreateExternalBackupJobResponse, err error) { @@ -3097,7 +3097,7 @@ func (client DatabaseClient) createExternalBackupJob(ctx context.Context, reques // CreateExternalContainerDatabase Creates a new external container database resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateExternalContainerDatabase.go.html to see an example of how to use CreateExternalContainerDatabase API. func (client DatabaseClient) CreateExternalContainerDatabase(ctx context.Context, request CreateExternalContainerDatabaseRequest) (response CreateExternalContainerDatabaseResponse, err error) { @@ -3159,7 +3159,7 @@ func (client DatabaseClient) createExternalContainerDatabase(ctx context.Context // CreateExternalDatabaseConnector Creates a new external database connector. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateExternalDatabaseConnector.go.html to see an example of how to use CreateExternalDatabaseConnector API. func (client DatabaseClient) CreateExternalDatabaseConnector(ctx context.Context, request CreateExternalDatabaseConnectorRequest) (response CreateExternalDatabaseConnectorResponse, err error) { @@ -3221,7 +3221,7 @@ func (client DatabaseClient) createExternalDatabaseConnector(ctx context.Context // CreateExternalNonContainerDatabase Creates a new ExternalNonContainerDatabase resource // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateExternalNonContainerDatabase.go.html to see an example of how to use CreateExternalNonContainerDatabase API. func (client DatabaseClient) CreateExternalNonContainerDatabase(ctx context.Context, request CreateExternalNonContainerDatabaseRequest) (response CreateExternalNonContainerDatabaseResponse, err error) { @@ -3284,7 +3284,7 @@ func (client DatabaseClient) createExternalNonContainerDatabase(ctx context.Cont // CreateExternalPluggableDatabase Registers a new CreateExternalPluggableDatabaseDetails // resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateExternalPluggableDatabase.go.html to see an example of how to use CreateExternalPluggableDatabase API. func (client DatabaseClient) CreateExternalPluggableDatabase(ctx context.Context, request CreateExternalPluggableDatabaseRequest) (response CreateExternalPluggableDatabaseResponse, err error) { @@ -3346,7 +3346,7 @@ func (client DatabaseClient) createExternalPluggableDatabase(ctx context.Context // CreateKeyStore Creates a Key Store. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateKeyStore.go.html to see an example of how to use CreateKeyStore API. func (client DatabaseClient) CreateKeyStore(ctx context.Context, request CreateKeyStoreRequest) (response CreateKeyStoreResponse, err error) { @@ -3408,7 +3408,7 @@ func (client DatabaseClient) createKeyStore(ctx context.Context, request common. // CreateOneoffPatch Creates one-off patch for specified database version to download. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateOneoffPatch.go.html to see an example of how to use CreateOneoffPatch API. func (client DatabaseClient) CreateOneoffPatch(ctx context.Context, request CreateOneoffPatchRequest) (response CreateOneoffPatchResponse, err error) { @@ -3471,7 +3471,7 @@ func (client DatabaseClient) createOneoffPatch(ctx context.Context, request comm // CreatePluggableDatabase Creates and starts a pluggable database in the specified container database. // Use the StartPluggableDatabase and StopPluggableDatabase APIs to start and stop the pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreatePluggableDatabase.go.html to see an example of how to use CreatePluggableDatabase API. func (client DatabaseClient) CreatePluggableDatabase(ctx context.Context, request CreatePluggableDatabaseRequest) (response CreatePluggableDatabaseResponse, err error) { @@ -3533,7 +3533,7 @@ func (client DatabaseClient) createPluggableDatabase(ctx context.Context, reques // CreateVmCluster Creates an Exadata Cloud@Customer VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateVmCluster.go.html to see an example of how to use CreateVmCluster API. func (client DatabaseClient) CreateVmCluster(ctx context.Context, request CreateVmClusterRequest) (response CreateVmClusterResponse, err error) { @@ -3596,7 +3596,7 @@ func (client DatabaseClient) createVmCluster(ctx context.Context, request common // CreateVmClusterNetwork Creates the VM cluster network. Applies to Exadata Cloud@Customer instances only. // To create a cloud VM cluster in an Exadata Cloud Service instance, use the CreateCloudVmCluster operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateVmClusterNetwork.go.html to see an example of how to use CreateVmClusterNetwork API. func (client DatabaseClient) CreateVmClusterNetwork(ctx context.Context, request CreateVmClusterNetworkRequest) (response CreateVmClusterNetworkResponse, err error) { @@ -3669,7 +3669,7 @@ func (client DatabaseClient) createVmClusterNetwork(ctx context.Context, request // to remove its resources from billing and quotas. // *Virtual machine DB systems* - Stopping a node stops billing for all OCPUs associated with that node, and billing resumes when you restart the node. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DbNodeAction.go.html to see an example of how to use DbNodeAction API. func (client DatabaseClient) DbNodeAction(ctx context.Context, request DbNodeActionRequest) (response DbNodeActionResponse, err error) { @@ -3731,7 +3731,7 @@ func (client DatabaseClient) dbNodeAction(ctx context.Context, request common.OC // DeleteApplicationVip Deletes and deregisters the specified application virtual IP (VIP) address. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteApplicationVip.go.html to see an example of how to use DeleteApplicationVip API. func (client DatabaseClient) DeleteApplicationVip(ctx context.Context, request DeleteApplicationVipRequest) (response DeleteApplicationVipResponse, err error) { @@ -3788,7 +3788,7 @@ func (client DatabaseClient) deleteApplicationVip(ctx context.Context, request c // DeleteAutonomousDatabase Deletes the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteAutonomousDatabase.go.html to see an example of how to use DeleteAutonomousDatabase API. func (client DatabaseClient) DeleteAutonomousDatabase(ctx context.Context, request DeleteAutonomousDatabaseRequest) (response DeleteAutonomousDatabaseResponse, err error) { @@ -3845,7 +3845,7 @@ func (client DatabaseClient) deleteAutonomousDatabase(ctx context.Context, reque // DeleteAutonomousDatabaseBackup Deletes a long-term backup. You cannot delete other backups using this API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteAutonomousDatabaseBackup.go.html to see an example of how to use DeleteAutonomousDatabaseBackup API. func (client DatabaseClient) DeleteAutonomousDatabaseBackup(ctx context.Context, request DeleteAutonomousDatabaseBackupRequest) (response DeleteAutonomousDatabaseBackupResponse, err error) { @@ -3902,7 +3902,7 @@ func (client DatabaseClient) deleteAutonomousDatabaseBackup(ctx context.Context, // DeleteAutonomousVmCluster Deletes the specified Autonomous VM cluster in an Exadata Cloud@Customer system. To delete an Autonomous VM Cluster in the Oracle cloud, see DeleteCloudAutonomousVmCluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteAutonomousVmCluster.go.html to see an example of how to use DeleteAutonomousVmCluster API. func (client DatabaseClient) DeleteAutonomousVmCluster(ctx context.Context, request DeleteAutonomousVmClusterRequest) (response DeleteAutonomousVmClusterResponse, err error) { @@ -3959,7 +3959,7 @@ func (client DatabaseClient) deleteAutonomousVmCluster(ctx context.Context, requ // DeleteBackup Deletes a full backup. You cannot delete automatic backups using this API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteBackup.go.html to see an example of how to use DeleteBackup API. func (client DatabaseClient) DeleteBackup(ctx context.Context, request DeleteBackupRequest) (response DeleteBackupResponse, err error) { @@ -4016,7 +4016,7 @@ func (client DatabaseClient) deleteBackup(ctx context.Context, request common.OC // DeleteBackupDestination Deletes a backup destination in an Exadata Cloud@Customer system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteBackupDestination.go.html to see an example of how to use DeleteBackupDestination API. func (client DatabaseClient) DeleteBackupDestination(ctx context.Context, request DeleteBackupDestinationRequest) (response DeleteBackupDestinationResponse, err error) { @@ -4073,7 +4073,7 @@ func (client DatabaseClient) deleteBackupDestination(ctx context.Context, reques // DeleteCloudAutonomousVmCluster Deletes the specified Autonomous Exadata VM cluster in the Oracle cloud. For Exadata Cloud@Customer systems, see DeleteAutonomousVmCluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteCloudAutonomousVmCluster.go.html to see an example of how to use DeleteCloudAutonomousVmCluster API. func (client DatabaseClient) DeleteCloudAutonomousVmCluster(ctx context.Context, request DeleteCloudAutonomousVmClusterRequest) (response DeleteCloudAutonomousVmClusterResponse, err error) { @@ -4130,7 +4130,7 @@ func (client DatabaseClient) deleteCloudAutonomousVmCluster(ctx context.Context, // DeleteCloudExadataInfrastructure Deletes the cloud Exadata infrastructure resource. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteCloudExadataInfrastructure.go.html to see an example of how to use DeleteCloudExadataInfrastructure API. func (client DatabaseClient) DeleteCloudExadataInfrastructure(ctx context.Context, request DeleteCloudExadataInfrastructureRequest) (response DeleteCloudExadataInfrastructureResponse, err error) { @@ -4187,7 +4187,7 @@ func (client DatabaseClient) deleteCloudExadataInfrastructure(ctx context.Contex // DeleteCloudVmCluster Deletes the specified cloud VM cluster. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteCloudVmCluster.go.html to see an example of how to use DeleteCloudVmCluster API. func (client DatabaseClient) DeleteCloudVmCluster(ctx context.Context, request DeleteCloudVmClusterRequest) (response DeleteCloudVmClusterResponse, err error) { @@ -4244,7 +4244,7 @@ func (client DatabaseClient) deleteCloudVmCluster(ctx context.Context, request c // DeleteConsoleConnection Deletes the specified database node console connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteConsoleConnection.go.html to see an example of how to use DeleteConsoleConnection API. func (client DatabaseClient) DeleteConsoleConnection(ctx context.Context, request DeleteConsoleConnectionRequest) (response DeleteConsoleConnectionResponse, err error) { @@ -4302,7 +4302,7 @@ func (client DatabaseClient) deleteConsoleConnection(ctx context.Context, reques // DeleteDatabase Deletes the specified database. Applies only to Exadata systems. // The data in this database is local to the Exadata system and will be lost when the database is deleted. Oracle recommends that you back up any data in the Exadata system prior to deleting it. You can use the `performFinalBackup` parameter to have the Exadata system database backed up before it is deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteDatabase.go.html to see an example of how to use DeleteDatabase API. func (client DatabaseClient) DeleteDatabase(ctx context.Context, request DeleteDatabaseRequest) (response DeleteDatabaseResponse, err error) { @@ -4359,7 +4359,7 @@ func (client DatabaseClient) deleteDatabase(ctx context.Context, request common. // DeleteDatabaseSoftwareImage Delete a database software image // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteDatabaseSoftwareImage.go.html to see an example of how to use DeleteDatabaseSoftwareImage API. func (client DatabaseClient) DeleteDatabaseSoftwareImage(ctx context.Context, request DeleteDatabaseSoftwareImageRequest) (response DeleteDatabaseSoftwareImageResponse, err error) { @@ -4417,7 +4417,7 @@ func (client DatabaseClient) deleteDatabaseSoftwareImage(ctx context.Context, re // DeleteDbHome Deletes a Database Home. Applies to bare metal DB systems, Exadata Cloud Service, and Exadata Cloud@Customer systems. // Oracle recommends that you use the `performFinalBackup` parameter to back up any data on a bare metal DB system before you delete a Database Home. On an Exadata Cloud@Customer system or an Exadata Cloud Service system, you can delete a Database Home only when there are no databases in it and therefore you cannot use the `performFinalBackup` parameter to back up data. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteDbHome.go.html to see an example of how to use DeleteDbHome API. func (client DatabaseClient) DeleteDbHome(ctx context.Context, request DeleteDbHomeRequest) (response DeleteDbHomeResponse, err error) { @@ -4474,7 +4474,7 @@ func (client DatabaseClient) deleteDbHome(ctx context.Context, request common.OC // DeleteExadataInfrastructure Deletes the Exadata Cloud@Customer infrastructure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteExadataInfrastructure.go.html to see an example of how to use DeleteExadataInfrastructure API. func (client DatabaseClient) DeleteExadataInfrastructure(ctx context.Context, request DeleteExadataInfrastructureRequest) (response DeleteExadataInfrastructureResponse, err error) { @@ -4533,7 +4533,7 @@ func (client DatabaseClient) deleteExadataInfrastructure(ctx context.Context, re // resource. Any external pluggable databases registered under this container database must be deleted in // your Oracle Cloud Infrastructure tenancy prior to this operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteExternalContainerDatabase.go.html to see an example of how to use DeleteExternalContainerDatabase API. func (client DatabaseClient) DeleteExternalContainerDatabase(ctx context.Context, request DeleteExternalContainerDatabaseRequest) (response DeleteExternalContainerDatabaseResponse, err error) { @@ -4592,7 +4592,7 @@ func (client DatabaseClient) deleteExternalContainerDatabase(ctx context.Context // Any services enabled using the external database connector must be // deleted prior to this operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteExternalDatabaseConnector.go.html to see an example of how to use DeleteExternalDatabaseConnector API. func (client DatabaseClient) DeleteExternalDatabaseConnector(ctx context.Context, request DeleteExternalDatabaseConnectorRequest) (response DeleteExternalDatabaseConnectorResponse, err error) { @@ -4649,7 +4649,7 @@ func (client DatabaseClient) deleteExternalDatabaseConnector(ctx context.Context // DeleteExternalNonContainerDatabase Deletes the Oracle Cloud Infrastructure resource representing an external non-container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteExternalNonContainerDatabase.go.html to see an example of how to use DeleteExternalNonContainerDatabase API. func (client DatabaseClient) DeleteExternalNonContainerDatabase(ctx context.Context, request DeleteExternalNonContainerDatabaseRequest) (response DeleteExternalNonContainerDatabaseResponse, err error) { @@ -4707,7 +4707,7 @@ func (client DatabaseClient) deleteExternalNonContainerDatabase(ctx context.Cont // DeleteExternalPluggableDatabase Deletes the CreateExternalPluggableDatabaseDetails. // resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteExternalPluggableDatabase.go.html to see an example of how to use DeleteExternalPluggableDatabase API. func (client DatabaseClient) DeleteExternalPluggableDatabase(ctx context.Context, request DeleteExternalPluggableDatabaseRequest) (response DeleteExternalPluggableDatabaseResponse, err error) { @@ -4764,7 +4764,7 @@ func (client DatabaseClient) deleteExternalPluggableDatabase(ctx context.Context // DeleteKeyStore Deletes a key store. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteKeyStore.go.html to see an example of how to use DeleteKeyStore API. func (client DatabaseClient) DeleteKeyStore(ctx context.Context, request DeleteKeyStoreRequest) (response DeleteKeyStoreResponse, err error) { @@ -4821,7 +4821,7 @@ func (client DatabaseClient) deleteKeyStore(ctx context.Context, request common. // DeleteOneoffPatch Deletes a one-off patch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteOneoffPatch.go.html to see an example of how to use DeleteOneoffPatch API. func (client DatabaseClient) DeleteOneoffPatch(ctx context.Context, request DeleteOneoffPatchRequest) (response DeleteOneoffPatchResponse, err error) { @@ -4878,7 +4878,7 @@ func (client DatabaseClient) deleteOneoffPatch(ctx context.Context, request comm // DeletePluggableDatabase Deletes the specified pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeletePluggableDatabase.go.html to see an example of how to use DeletePluggableDatabase API. func (client DatabaseClient) DeletePluggableDatabase(ctx context.Context, request DeletePluggableDatabaseRequest) (response DeletePluggableDatabaseResponse, err error) { @@ -4935,7 +4935,7 @@ func (client DatabaseClient) deletePluggableDatabase(ctx context.Context, reques // DeleteVmCluster Deletes the specified VM cluster. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteVmCluster.go.html to see an example of how to use DeleteVmCluster API. func (client DatabaseClient) DeleteVmCluster(ctx context.Context, request DeleteVmClusterRequest) (response DeleteVmClusterResponse, err error) { @@ -4993,7 +4993,7 @@ func (client DatabaseClient) deleteVmCluster(ctx context.Context, request common // DeleteVmClusterNetwork Deletes the specified VM cluster network. Applies to Exadata Cloud@Customer instances only. // To delete a cloud VM cluster in an Exadata Cloud Service instance, use the DeleteCloudVmCluster operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeleteVmClusterNetwork.go.html to see an example of how to use DeleteVmClusterNetwork API. func (client DatabaseClient) DeleteVmClusterNetwork(ctx context.Context, request DeleteVmClusterNetworkRequest) (response DeleteVmClusterNetworkResponse, err error) { @@ -5050,7 +5050,7 @@ func (client DatabaseClient) deleteVmClusterNetwork(ctx context.Context, request // DeregisterAutonomousDatabaseDataSafe Asynchronously deregisters this Autonomous Database with Data Safe. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DeregisterAutonomousDatabaseDataSafe.go.html to see an example of how to use DeregisterAutonomousDatabaseDataSafe API. func (client DatabaseClient) DeregisterAutonomousDatabaseDataSafe(ctx context.Context, request DeregisterAutonomousDatabaseDataSafeRequest) (response DeregisterAutonomousDatabaseDataSafeResponse, err error) { @@ -5107,7 +5107,7 @@ func (client DatabaseClient) deregisterAutonomousDatabaseDataSafe(ctx context.Co // DisableAutonomousDatabaseManagement Disables Database Management for the Autonomous Database resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableAutonomousDatabaseManagement.go.html to see an example of how to use DisableAutonomousDatabaseManagement API. func (client DatabaseClient) DisableAutonomousDatabaseManagement(ctx context.Context, request DisableAutonomousDatabaseManagementRequest) (response DisableAutonomousDatabaseManagementResponse, err error) { @@ -5164,7 +5164,7 @@ func (client DatabaseClient) disableAutonomousDatabaseManagement(ctx context.Con // DisableAutonomousDatabaseOperationsInsights Disables Operations Insights for the Autonomous Database resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableAutonomousDatabaseOperationsInsights.go.html to see an example of how to use DisableAutonomousDatabaseOperationsInsights API. func (client DatabaseClient) DisableAutonomousDatabaseOperationsInsights(ctx context.Context, request DisableAutonomousDatabaseOperationsInsightsRequest) (response DisableAutonomousDatabaseOperationsInsightsResponse, err error) { @@ -5221,7 +5221,7 @@ func (client DatabaseClient) disableAutonomousDatabaseOperationsInsights(ctx con // DisableDatabaseManagement Disables the Database Management service for the database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableDatabaseManagement.go.html to see an example of how to use DisableDatabaseManagement API. func (client DatabaseClient) DisableDatabaseManagement(ctx context.Context, request DisableDatabaseManagementRequest) (response DisableDatabaseManagementResponse, err error) { @@ -5283,7 +5283,7 @@ func (client DatabaseClient) disableDatabaseManagement(ctx context.Context, requ // DisableExternalContainerDatabaseDatabaseManagement Disable Database Management service for the external container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableExternalContainerDatabaseDatabaseManagement.go.html to see an example of how to use DisableExternalContainerDatabaseDatabaseManagement API. func (client DatabaseClient) DisableExternalContainerDatabaseDatabaseManagement(ctx context.Context, request DisableExternalContainerDatabaseDatabaseManagementRequest) (response DisableExternalContainerDatabaseDatabaseManagementResponse, err error) { @@ -5345,7 +5345,7 @@ func (client DatabaseClient) disableExternalContainerDatabaseDatabaseManagement( // DisableExternalContainerDatabaseStackMonitoring Disable Stack Monitoring for the external container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableExternalContainerDatabaseStackMonitoring.go.html to see an example of how to use DisableExternalContainerDatabaseStackMonitoring API. func (client DatabaseClient) DisableExternalContainerDatabaseStackMonitoring(ctx context.Context, request DisableExternalContainerDatabaseStackMonitoringRequest) (response DisableExternalContainerDatabaseStackMonitoringResponse, err error) { @@ -5409,7 +5409,7 @@ func (client DatabaseClient) disableExternalContainerDatabaseStackMonitoring(ctx // For more information about the Database Management Service, see // Database Management Service (https://docs.cloud.oracle.com/Content/ExternalDatabase/Concepts/databasemanagementservice.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableExternalNonContainerDatabaseDatabaseManagement.go.html to see an example of how to use DisableExternalNonContainerDatabaseDatabaseManagement API. func (client DatabaseClient) DisableExternalNonContainerDatabaseDatabaseManagement(ctx context.Context, request DisableExternalNonContainerDatabaseDatabaseManagementRequest) (response DisableExternalNonContainerDatabaseDatabaseManagementResponse, err error) { @@ -5471,7 +5471,7 @@ func (client DatabaseClient) disableExternalNonContainerDatabaseDatabaseManageme // DisableExternalNonContainerDatabaseOperationsInsights Disable Operations Insights for the external non-container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableExternalNonContainerDatabaseOperationsInsights.go.html to see an example of how to use DisableExternalNonContainerDatabaseOperationsInsights API. func (client DatabaseClient) DisableExternalNonContainerDatabaseOperationsInsights(ctx context.Context, request DisableExternalNonContainerDatabaseOperationsInsightsRequest) (response DisableExternalNonContainerDatabaseOperationsInsightsResponse, err error) { @@ -5533,7 +5533,7 @@ func (client DatabaseClient) disableExternalNonContainerDatabaseOperationsInsigh // DisableExternalNonContainerDatabaseStackMonitoring Disable Stack Monitoring for the external non-container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableExternalNonContainerDatabaseStackMonitoring.go.html to see an example of how to use DisableExternalNonContainerDatabaseStackMonitoring API. func (client DatabaseClient) DisableExternalNonContainerDatabaseStackMonitoring(ctx context.Context, request DisableExternalNonContainerDatabaseStackMonitoringRequest) (response DisableExternalNonContainerDatabaseStackMonitoringResponse, err error) { @@ -5597,7 +5597,7 @@ func (client DatabaseClient) disableExternalNonContainerDatabaseStackMonitoring( // For more information about the Database Management Service, see // Database Management Service (https://docs.cloud.oracle.com/Content/ExternalDatabase/Concepts/databasemanagementservice.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableExternalPluggableDatabaseDatabaseManagement.go.html to see an example of how to use DisableExternalPluggableDatabaseDatabaseManagement API. func (client DatabaseClient) DisableExternalPluggableDatabaseDatabaseManagement(ctx context.Context, request DisableExternalPluggableDatabaseDatabaseManagementRequest) (response DisableExternalPluggableDatabaseDatabaseManagementResponse, err error) { @@ -5659,7 +5659,7 @@ func (client DatabaseClient) disableExternalPluggableDatabaseDatabaseManagement( // DisableExternalPluggableDatabaseOperationsInsights Disable Operations Insights for the external pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableExternalPluggableDatabaseOperationsInsights.go.html to see an example of how to use DisableExternalPluggableDatabaseOperationsInsights API. func (client DatabaseClient) DisableExternalPluggableDatabaseOperationsInsights(ctx context.Context, request DisableExternalPluggableDatabaseOperationsInsightsRequest) (response DisableExternalPluggableDatabaseOperationsInsightsResponse, err error) { @@ -5721,7 +5721,7 @@ func (client DatabaseClient) disableExternalPluggableDatabaseOperationsInsights( // DisableExternalPluggableDatabaseStackMonitoring Disable Stack Monitoring for the external pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisableExternalPluggableDatabaseStackMonitoring.go.html to see an example of how to use DisableExternalPluggableDatabaseStackMonitoring API. func (client DatabaseClient) DisableExternalPluggableDatabaseStackMonitoring(ctx context.Context, request DisableExternalPluggableDatabaseStackMonitoringRequest) (response DisableExternalPluggableDatabaseStackMonitoringResponse, err error) { @@ -5783,7 +5783,7 @@ func (client DatabaseClient) disableExternalPluggableDatabaseStackMonitoring(ctx // DisablePluggableDatabaseManagement Disables the Database Management service for the pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DisablePluggableDatabaseManagement.go.html to see an example of how to use DisablePluggableDatabaseManagement API. func (client DatabaseClient) DisablePluggableDatabaseManagement(ctx context.Context, request DisablePluggableDatabaseManagementRequest) (response DisablePluggableDatabaseManagementResponse, err error) { @@ -5845,7 +5845,7 @@ func (client DatabaseClient) disablePluggableDatabaseManagement(ctx context.Cont // DownloadExadataInfrastructureConfigFile Downloads the configuration file for the specified Exadata Cloud@Customer infrastructure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DownloadExadataInfrastructureConfigFile.go.html to see an example of how to use DownloadExadataInfrastructureConfigFile API. func (client DatabaseClient) DownloadExadataInfrastructureConfigFile(ctx context.Context, request DownloadExadataInfrastructureConfigFileRequest) (response DownloadExadataInfrastructureConfigFileResponse, err error) { @@ -5906,7 +5906,7 @@ func (client DatabaseClient) downloadExadataInfrastructureConfigFile(ctx context // DownloadOneoffPatch Download one-off patch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DownloadOneoffPatch.go.html to see an example of how to use DownloadOneoffPatch API. func (client DatabaseClient) DownloadOneoffPatch(ctx context.Context, request DownloadOneoffPatchRequest) (response DownloadOneoffPatchResponse, err error) { @@ -5968,7 +5968,7 @@ func (client DatabaseClient) downloadOneoffPatch(ctx context.Context, request co // DownloadValidationReport Downloads the network validation report file for the specified VM cluster network. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DownloadValidationReport.go.html to see an example of how to use DownloadValidationReport API. func (client DatabaseClient) DownloadValidationReport(ctx context.Context, request DownloadValidationReportRequest) (response DownloadValidationReportResponse, err error) { @@ -6029,7 +6029,7 @@ func (client DatabaseClient) downloadValidationReport(ctx context.Context, reque // DownloadVmClusterNetworkConfigFile Downloads the configuration file for the specified VM cluster network. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/DownloadVmClusterNetworkConfigFile.go.html to see an example of how to use DownloadVmClusterNetworkConfigFile API. func (client DatabaseClient) DownloadVmClusterNetworkConfigFile(ctx context.Context, request DownloadVmClusterNetworkConfigFileRequest) (response DownloadVmClusterNetworkConfigFileResponse, err error) { @@ -6090,7 +6090,7 @@ func (client DatabaseClient) downloadVmClusterNetworkConfigFile(ctx context.Cont // EnableAutonomousDatabaseManagement Enables Database Management for Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableAutonomousDatabaseManagement.go.html to see an example of how to use EnableAutonomousDatabaseManagement API. func (client DatabaseClient) EnableAutonomousDatabaseManagement(ctx context.Context, request EnableAutonomousDatabaseManagementRequest) (response EnableAutonomousDatabaseManagementResponse, err error) { @@ -6147,7 +6147,7 @@ func (client DatabaseClient) enableAutonomousDatabaseManagement(ctx context.Cont // EnableAutonomousDatabaseOperationsInsights Enables the specified Autonomous Database with Operations Insights. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableAutonomousDatabaseOperationsInsights.go.html to see an example of how to use EnableAutonomousDatabaseOperationsInsights API. func (client DatabaseClient) EnableAutonomousDatabaseOperationsInsights(ctx context.Context, request EnableAutonomousDatabaseOperationsInsightsRequest) (response EnableAutonomousDatabaseOperationsInsightsResponse, err error) { @@ -6204,7 +6204,7 @@ func (client DatabaseClient) enableAutonomousDatabaseOperationsInsights(ctx cont // EnableDatabaseManagement Enables the Database Management service for an Oracle Database located in Oracle Cloud Infrastructure. This service allows the database to access tools including Metrics and Performance hub. Database Management is enabled at the container database (CDB) level. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableDatabaseManagement.go.html to see an example of how to use EnableDatabaseManagement API. func (client DatabaseClient) EnableDatabaseManagement(ctx context.Context, request EnableDatabaseManagementRequest) (response EnableDatabaseManagementResponse, err error) { @@ -6268,7 +6268,7 @@ func (client DatabaseClient) enableDatabaseManagement(ctx context.Context, reque // For more information about the Database Management Service, see // Database Management Service (https://docs.cloud.oracle.com/Content/ExternalDatabase/Concepts/databasemanagementservice.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableExternalContainerDatabaseDatabaseManagement.go.html to see an example of how to use EnableExternalContainerDatabaseDatabaseManagement API. func (client DatabaseClient) EnableExternalContainerDatabaseDatabaseManagement(ctx context.Context, request EnableExternalContainerDatabaseDatabaseManagementRequest) (response EnableExternalContainerDatabaseDatabaseManagementResponse, err error) { @@ -6330,7 +6330,7 @@ func (client DatabaseClient) enableExternalContainerDatabaseDatabaseManagement(c // EnableExternalContainerDatabaseStackMonitoring Enable Stack Monitoring for the external container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableExternalContainerDatabaseStackMonitoring.go.html to see an example of how to use EnableExternalContainerDatabaseStackMonitoring API. func (client DatabaseClient) EnableExternalContainerDatabaseStackMonitoring(ctx context.Context, request EnableExternalContainerDatabaseStackMonitoringRequest) (response EnableExternalContainerDatabaseStackMonitoringResponse, err error) { @@ -6394,7 +6394,7 @@ func (client DatabaseClient) enableExternalContainerDatabaseStackMonitoring(ctx // For more information about the Database Management Service, see // Database Management Service (https://docs.cloud.oracle.com/Content/ExternalDatabase/Concepts/databasemanagementservice.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableExternalNonContainerDatabaseDatabaseManagement.go.html to see an example of how to use EnableExternalNonContainerDatabaseDatabaseManagement API. func (client DatabaseClient) EnableExternalNonContainerDatabaseDatabaseManagement(ctx context.Context, request EnableExternalNonContainerDatabaseDatabaseManagementRequest) (response EnableExternalNonContainerDatabaseDatabaseManagementResponse, err error) { @@ -6456,7 +6456,7 @@ func (client DatabaseClient) enableExternalNonContainerDatabaseDatabaseManagemen // EnableExternalNonContainerDatabaseOperationsInsights Enable Operations Insights for the external non-container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableExternalNonContainerDatabaseOperationsInsights.go.html to see an example of how to use EnableExternalNonContainerDatabaseOperationsInsights API. func (client DatabaseClient) EnableExternalNonContainerDatabaseOperationsInsights(ctx context.Context, request EnableExternalNonContainerDatabaseOperationsInsightsRequest) (response EnableExternalNonContainerDatabaseOperationsInsightsResponse, err error) { @@ -6518,7 +6518,7 @@ func (client DatabaseClient) enableExternalNonContainerDatabaseOperationsInsight // EnableExternalNonContainerDatabaseStackMonitoring Enable Stack Monitoring for the external non-container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableExternalNonContainerDatabaseStackMonitoring.go.html to see an example of how to use EnableExternalNonContainerDatabaseStackMonitoring API. func (client DatabaseClient) EnableExternalNonContainerDatabaseStackMonitoring(ctx context.Context, request EnableExternalNonContainerDatabaseStackMonitoringRequest) (response EnableExternalNonContainerDatabaseStackMonitoringResponse, err error) { @@ -6582,7 +6582,7 @@ func (client DatabaseClient) enableExternalNonContainerDatabaseStackMonitoring(c // For more information about the Database Management Service, see // Database Management Service (https://docs.cloud.oracle.com/Content/ExternalDatabase/Concepts/databasemanagementservice.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableExternalPluggableDatabaseDatabaseManagement.go.html to see an example of how to use EnableExternalPluggableDatabaseDatabaseManagement API. func (client DatabaseClient) EnableExternalPluggableDatabaseDatabaseManagement(ctx context.Context, request EnableExternalPluggableDatabaseDatabaseManagementRequest) (response EnableExternalPluggableDatabaseDatabaseManagementResponse, err error) { @@ -6644,7 +6644,7 @@ func (client DatabaseClient) enableExternalPluggableDatabaseDatabaseManagement(c // EnableExternalPluggableDatabaseOperationsInsights Enable Operations Insights for the external pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableExternalPluggableDatabaseOperationsInsights.go.html to see an example of how to use EnableExternalPluggableDatabaseOperationsInsights API. func (client DatabaseClient) EnableExternalPluggableDatabaseOperationsInsights(ctx context.Context, request EnableExternalPluggableDatabaseOperationsInsightsRequest) (response EnableExternalPluggableDatabaseOperationsInsightsResponse, err error) { @@ -6706,7 +6706,7 @@ func (client DatabaseClient) enableExternalPluggableDatabaseOperationsInsights(c // EnableExternalPluggableDatabaseStackMonitoring Enable Stack Monitoring for the external pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnableExternalPluggableDatabaseStackMonitoring.go.html to see an example of how to use EnableExternalPluggableDatabaseStackMonitoring API. func (client DatabaseClient) EnableExternalPluggableDatabaseStackMonitoring(ctx context.Context, request EnableExternalPluggableDatabaseStackMonitoringRequest) (response EnableExternalPluggableDatabaseStackMonitoringResponse, err error) { @@ -6768,7 +6768,7 @@ func (client DatabaseClient) enableExternalPluggableDatabaseStackMonitoring(ctx // EnablePluggableDatabaseManagement Enables the Database Management service for an Oracle Pluggable Database located in Oracle Cloud Infrastructure. This service allows the pluggable database to access tools including Metrics and Performance hub. Database Management is enabled at the pluggable database (PDB) level. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/EnablePluggableDatabaseManagement.go.html to see an example of how to use EnablePluggableDatabaseManagement API. func (client DatabaseClient) EnablePluggableDatabaseManagement(ctx context.Context, request EnablePluggableDatabaseManagementRequest) (response EnablePluggableDatabaseManagementResponse, err error) { @@ -6830,7 +6830,7 @@ func (client DatabaseClient) enablePluggableDatabaseManagement(ctx context.Conte // FailOverAutonomousDatabase Initiates a failover the specified Autonomous Database to a standby. To perform a failover to a standby located in a remote region, specify the OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the remote standby using the `peerDbId` parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/FailOverAutonomousDatabase.go.html to see an example of how to use FailOverAutonomousDatabase API. func (client DatabaseClient) FailOverAutonomousDatabase(ctx context.Context, request FailOverAutonomousDatabaseRequest) (response FailOverAutonomousDatabaseResponse, err error) { @@ -6893,7 +6893,7 @@ func (client DatabaseClient) failOverAutonomousDatabase(ctx context.Context, req // FailoverAutonomousContainerDatabaseDataguardAssociation Fails over the standby Autonomous Container Database identified by the autonomousContainerDatabaseId parameter to the primary Autonomous Container Database after the existing primary Autonomous Container Database fails or becomes unreachable. // A failover can result in data loss, depending on the protection mode in effect at the time the primary Autonomous Container Database fails. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/FailoverAutonomousContainerDatabaseDataguardAssociation.go.html to see an example of how to use FailoverAutonomousContainerDatabaseDataguardAssociation API. func (client DatabaseClient) FailoverAutonomousContainerDatabaseDataguardAssociation(ctx context.Context, request FailoverAutonomousContainerDatabaseDataguardAssociationRequest) (response FailoverAutonomousContainerDatabaseDataguardAssociationResponse, err error) { @@ -6953,7 +6953,7 @@ func (client DatabaseClient) failoverAutonomousContainerDatabaseDataguardAssocia // A failover might result in data loss depending on the protection mode in effect at the time of the primary // database failure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/FailoverDataGuardAssociation.go.html to see an example of how to use FailoverDataGuardAssociation API. func (client DatabaseClient) FailoverDataGuardAssociation(ctx context.Context, request FailoverDataGuardAssociationRequest) (response FailoverDataGuardAssociationResponse, err error) { @@ -7010,7 +7010,7 @@ func (client DatabaseClient) failoverDataGuardAssociation(ctx context.Context, r // GenerateAutonomousDatabaseWallet Creates and downloads a wallet for the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GenerateAutonomousDatabaseWallet.go.html to see an example of how to use GenerateAutonomousDatabaseWallet API. func (client DatabaseClient) GenerateAutonomousDatabaseWallet(ctx context.Context, request GenerateAutonomousDatabaseWalletRequest) (response GenerateAutonomousDatabaseWalletResponse, err error) { @@ -7071,7 +7071,7 @@ func (client DatabaseClient) generateAutonomousDatabaseWallet(ctx context.Contex // GenerateRecommendedVmClusterNetwork Generates a recommended Cloud@Customer VM cluster network configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GenerateRecommendedVmClusterNetwork.go.html to see an example of how to use GenerateRecommendedVmClusterNetwork API. func (client DatabaseClient) GenerateRecommendedVmClusterNetwork(ctx context.Context, request GenerateRecommendedVmClusterNetworkRequest) (response GenerateRecommendedVmClusterNetworkResponse, err error) { @@ -7133,7 +7133,7 @@ func (client DatabaseClient) generateRecommendedVmClusterNetwork(ctx context.Con // GetApplicationVip Gets information about a specified application virtual IP (VIP) address. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetApplicationVip.go.html to see an example of how to use GetApplicationVip API. func (client DatabaseClient) GetApplicationVip(ctx context.Context, request GetApplicationVipRequest) (response GetApplicationVipResponse, err error) { @@ -7190,7 +7190,7 @@ func (client DatabaseClient) getApplicationVip(ctx context.Context, request comm // GetAutonomousContainerDatabase Gets information about the specified Autonomous Container Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousContainerDatabase.go.html to see an example of how to use GetAutonomousContainerDatabase API. func (client DatabaseClient) GetAutonomousContainerDatabase(ctx context.Context, request GetAutonomousContainerDatabaseRequest) (response GetAutonomousContainerDatabaseResponse, err error) { @@ -7247,7 +7247,7 @@ func (client DatabaseClient) getAutonomousContainerDatabase(ctx context.Context, // GetAutonomousContainerDatabaseDataguardAssociation Gets an Autonomous Container Database enabled with Autonomous Data Guard associated with the specified Autonomous Container Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousContainerDatabaseDataguardAssociation.go.html to see an example of how to use GetAutonomousContainerDatabaseDataguardAssociation API. func (client DatabaseClient) GetAutonomousContainerDatabaseDataguardAssociation(ctx context.Context, request GetAutonomousContainerDatabaseDataguardAssociationRequest) (response GetAutonomousContainerDatabaseDataguardAssociationResponse, err error) { @@ -7304,7 +7304,7 @@ func (client DatabaseClient) getAutonomousContainerDatabaseDataguardAssociation( // GetAutonomousContainerDatabaseResourceUsage Get resource usage details for the specified Autonomous Container Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousContainerDatabaseResourceUsage.go.html to see an example of how to use GetAutonomousContainerDatabaseResourceUsage API. func (client DatabaseClient) GetAutonomousContainerDatabaseResourceUsage(ctx context.Context, request GetAutonomousContainerDatabaseResourceUsageRequest) (response GetAutonomousContainerDatabaseResourceUsageResponse, err error) { @@ -7361,7 +7361,7 @@ func (client DatabaseClient) getAutonomousContainerDatabaseResourceUsage(ctx con // GetAutonomousDatabase Gets the details of the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousDatabase.go.html to see an example of how to use GetAutonomousDatabase API. func (client DatabaseClient) GetAutonomousDatabase(ctx context.Context, request GetAutonomousDatabaseRequest) (response GetAutonomousDatabaseResponse, err error) { @@ -7418,7 +7418,7 @@ func (client DatabaseClient) getAutonomousDatabase(ctx context.Context, request // GetAutonomousDatabaseBackup Gets information about the specified Autonomous Database backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousDatabaseBackup.go.html to see an example of how to use GetAutonomousDatabaseBackup API. func (client DatabaseClient) GetAutonomousDatabaseBackup(ctx context.Context, request GetAutonomousDatabaseBackupRequest) (response GetAutonomousDatabaseBackupResponse, err error) { @@ -7475,7 +7475,7 @@ func (client DatabaseClient) getAutonomousDatabaseBackup(ctx context.Context, re // GetAutonomousDatabaseDataguardAssociation Gets an Autonomous Data Guard-enabled database associated with the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousDatabaseDataguardAssociation.go.html to see an example of how to use GetAutonomousDatabaseDataguardAssociation API. func (client DatabaseClient) GetAutonomousDatabaseDataguardAssociation(ctx context.Context, request GetAutonomousDatabaseDataguardAssociationRequest) (response GetAutonomousDatabaseDataguardAssociationResponse, err error) { @@ -7532,7 +7532,7 @@ func (client DatabaseClient) getAutonomousDatabaseDataguardAssociation(ctx conte // GetAutonomousDatabaseRegionalWallet Gets the Autonomous Database regional wallet details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousDatabaseRegionalWallet.go.html to see an example of how to use GetAutonomousDatabaseRegionalWallet API. func (client DatabaseClient) GetAutonomousDatabaseRegionalWallet(ctx context.Context, request GetAutonomousDatabaseRegionalWalletRequest) (response GetAutonomousDatabaseRegionalWalletResponse, err error) { @@ -7589,7 +7589,7 @@ func (client DatabaseClient) getAutonomousDatabaseRegionalWallet(ctx context.Con // GetAutonomousDatabaseWallet Gets the wallet details for the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousDatabaseWallet.go.html to see an example of how to use GetAutonomousDatabaseWallet API. func (client DatabaseClient) GetAutonomousDatabaseWallet(ctx context.Context, request GetAutonomousDatabaseWalletRequest) (response GetAutonomousDatabaseWalletResponse, err error) { @@ -7646,7 +7646,7 @@ func (client DatabaseClient) getAutonomousDatabaseWallet(ctx context.Context, re // GetAutonomousExadataInfrastructure **Deprecated.** Use the GetCloudExadataInfrastructure operation to get details of an Exadata Infrastructure resource and the GetCloudAutonomousVmCluster operation to get details of an Autonomous Exadata VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousExadataInfrastructure.go.html to see an example of how to use GetAutonomousExadataInfrastructure API. func (client DatabaseClient) GetAutonomousExadataInfrastructure(ctx context.Context, request GetAutonomousExadataInfrastructureRequest) (response GetAutonomousExadataInfrastructureResponse, err error) { @@ -7703,7 +7703,7 @@ func (client DatabaseClient) getAutonomousExadataInfrastructure(ctx context.Cont // GetAutonomousPatch Gets information about a specific autonomous patch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousPatch.go.html to see an example of how to use GetAutonomousPatch API. func (client DatabaseClient) GetAutonomousPatch(ctx context.Context, request GetAutonomousPatchRequest) (response GetAutonomousPatchResponse, err error) { @@ -7760,7 +7760,7 @@ func (client DatabaseClient) getAutonomousPatch(ctx context.Context, request com // GetAutonomousVirtualMachine Gets the details of specific Autonomous Virtual Machine. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousVirtualMachine.go.html to see an example of how to use GetAutonomousVirtualMachine API. func (client DatabaseClient) GetAutonomousVirtualMachine(ctx context.Context, request GetAutonomousVirtualMachineRequest) (response GetAutonomousVirtualMachineResponse, err error) { @@ -7817,7 +7817,7 @@ func (client DatabaseClient) getAutonomousVirtualMachine(ctx context.Context, re // GetAutonomousVmCluster Gets information about the specified Autonomous VM cluster for an Exadata Cloud@Customer system. To get information about an Autonomous VM Cluster in the Oracle cloud, see GetCloudAutonomousVmCluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetAutonomousVmCluster.go.html to see an example of how to use GetAutonomousVmCluster API. func (client DatabaseClient) GetAutonomousVmCluster(ctx context.Context, request GetAutonomousVmClusterRequest) (response GetAutonomousVmClusterResponse, err error) { @@ -7874,7 +7874,7 @@ func (client DatabaseClient) getAutonomousVmCluster(ctx context.Context, request // GetBackup Gets information about the specified backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetBackup.go.html to see an example of how to use GetBackup API. func (client DatabaseClient) GetBackup(ctx context.Context, request GetBackupRequest) (response GetBackupResponse, err error) { @@ -7931,7 +7931,7 @@ func (client DatabaseClient) getBackup(ctx context.Context, request common.OCIRe // GetBackupDestination Gets information about the specified backup destination in an Exadata Cloud@Customer system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetBackupDestination.go.html to see an example of how to use GetBackupDestination API. func (client DatabaseClient) GetBackupDestination(ctx context.Context, request GetBackupDestinationRequest) (response GetBackupDestinationResponse, err error) { @@ -7988,7 +7988,7 @@ func (client DatabaseClient) getBackupDestination(ctx context.Context, request c // GetCloudAutonomousVmCluster Gets information about the specified Autonomous Exadata VM cluster in the Oracle cloud. For Exadata Cloud@Custustomer systems, see GetAutonomousVmCluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetCloudAutonomousVmCluster.go.html to see an example of how to use GetCloudAutonomousVmCluster API. func (client DatabaseClient) GetCloudAutonomousVmCluster(ctx context.Context, request GetCloudAutonomousVmClusterRequest) (response GetCloudAutonomousVmClusterResponse, err error) { @@ -8045,7 +8045,7 @@ func (client DatabaseClient) getCloudAutonomousVmCluster(ctx context.Context, re // GetCloudAutonomousVmClusterResourceUsage Get the resource usage details for the specified Cloud Autonomous Exadata VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetCloudAutonomousVmClusterResourceUsage.go.html to see an example of how to use GetCloudAutonomousVmClusterResourceUsage API. func (client DatabaseClient) GetCloudAutonomousVmClusterResourceUsage(ctx context.Context, request GetCloudAutonomousVmClusterResourceUsageRequest) (response GetCloudAutonomousVmClusterResourceUsageResponse, err error) { @@ -8102,7 +8102,7 @@ func (client DatabaseClient) getCloudAutonomousVmClusterResourceUsage(ctx contex // GetCloudExadataInfrastructure Gets information about the specified cloud Exadata infrastructure resource. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetCloudExadataInfrastructure.go.html to see an example of how to use GetCloudExadataInfrastructure API. func (client DatabaseClient) GetCloudExadataInfrastructure(ctx context.Context, request GetCloudExadataInfrastructureRequest) (response GetCloudExadataInfrastructureResponse, err error) { @@ -8159,7 +8159,7 @@ func (client DatabaseClient) getCloudExadataInfrastructure(ctx context.Context, // GetCloudExadataInfrastructureUnallocatedResources Gets unallocated resources information for the specified Cloud Exadata infrastructure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetCloudExadataInfrastructureUnallocatedResources.go.html to see an example of how to use GetCloudExadataInfrastructureUnallocatedResources API. func (client DatabaseClient) GetCloudExadataInfrastructureUnallocatedResources(ctx context.Context, request GetCloudExadataInfrastructureUnallocatedResourcesRequest) (response GetCloudExadataInfrastructureUnallocatedResourcesResponse, err error) { @@ -8216,7 +8216,7 @@ func (client DatabaseClient) getCloudExadataInfrastructureUnallocatedResources(c // GetCloudVmCluster Gets information about the specified cloud VM cluster. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetCloudVmCluster.go.html to see an example of how to use GetCloudVmCluster API. func (client DatabaseClient) GetCloudVmCluster(ctx context.Context, request GetCloudVmClusterRequest) (response GetCloudVmClusterResponse, err error) { @@ -8274,7 +8274,7 @@ func (client DatabaseClient) getCloudVmCluster(ctx context.Context, request comm // GetCloudVmClusterIormConfig Gets the IORM configuration for the specified cloud VM cluster in an Exadata Cloud Service instance. // If you have not specified an IORM configuration, the default configuration is returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetCloudVmClusterIormConfig.go.html to see an example of how to use GetCloudVmClusterIormConfig API. func (client DatabaseClient) GetCloudVmClusterIormConfig(ctx context.Context, request GetCloudVmClusterIormConfigRequest) (response GetCloudVmClusterIormConfigResponse, err error) { @@ -8331,7 +8331,7 @@ func (client DatabaseClient) getCloudVmClusterIormConfig(ctx context.Context, re // GetCloudVmClusterUpdate Gets information about a specified maintenance update package for a cloud VM cluster. Applies to Exadata Cloud Service instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetCloudVmClusterUpdate.go.html to see an example of how to use GetCloudVmClusterUpdate API. func (client DatabaseClient) GetCloudVmClusterUpdate(ctx context.Context, request GetCloudVmClusterUpdateRequest) (response GetCloudVmClusterUpdateResponse, err error) { @@ -8388,7 +8388,7 @@ func (client DatabaseClient) getCloudVmClusterUpdate(ctx context.Context, reques // GetCloudVmClusterUpdateHistoryEntry Gets the maintenance update history details for the specified update history entry. Applies to Exadata Cloud Service instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetCloudVmClusterUpdateHistoryEntry.go.html to see an example of how to use GetCloudVmClusterUpdateHistoryEntry API. func (client DatabaseClient) GetCloudVmClusterUpdateHistoryEntry(ctx context.Context, request GetCloudVmClusterUpdateHistoryEntryRequest) (response GetCloudVmClusterUpdateHistoryEntryResponse, err error) { @@ -8445,7 +8445,7 @@ func (client DatabaseClient) getCloudVmClusterUpdateHistoryEntry(ctx context.Con // GetConsoleConnection Gets the specified database node console connection's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetConsoleConnection.go.html to see an example of how to use GetConsoleConnection API. func (client DatabaseClient) GetConsoleConnection(ctx context.Context, request GetConsoleConnectionRequest) (response GetConsoleConnectionResponse, err error) { @@ -8502,7 +8502,7 @@ func (client DatabaseClient) getConsoleConnection(ctx context.Context, request c // GetDataGuardAssociation Gets the specified Data Guard association's configuration information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDataGuardAssociation.go.html to see an example of how to use GetDataGuardAssociation API. func (client DatabaseClient) GetDataGuardAssociation(ctx context.Context, request GetDataGuardAssociationRequest) (response GetDataGuardAssociationResponse, err error) { @@ -8559,7 +8559,7 @@ func (client DatabaseClient) getDataGuardAssociation(ctx context.Context, reques // GetDatabase Gets information about the specified database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDatabase.go.html to see an example of how to use GetDatabase API. func (client DatabaseClient) GetDatabase(ctx context.Context, request GetDatabaseRequest) (response GetDatabaseResponse, err error) { @@ -8616,7 +8616,7 @@ func (client DatabaseClient) getDatabase(ctx context.Context, request common.OCI // GetDatabaseSoftwareImage Gets information about the specified database software image. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDatabaseSoftwareImage.go.html to see an example of how to use GetDatabaseSoftwareImage API. func (client DatabaseClient) GetDatabaseSoftwareImage(ctx context.Context, request GetDatabaseSoftwareImageRequest) (response GetDatabaseSoftwareImageResponse, err error) { @@ -8673,7 +8673,7 @@ func (client DatabaseClient) getDatabaseSoftwareImage(ctx context.Context, reque // GetDatabaseUpgradeHistoryEntry gets the upgrade history for a specified database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDatabaseUpgradeHistoryEntry.go.html to see an example of how to use GetDatabaseUpgradeHistoryEntry API. func (client DatabaseClient) GetDatabaseUpgradeHistoryEntry(ctx context.Context, request GetDatabaseUpgradeHistoryEntryRequest) (response GetDatabaseUpgradeHistoryEntryResponse, err error) { @@ -8730,7 +8730,7 @@ func (client DatabaseClient) getDatabaseUpgradeHistoryEntry(ctx context.Context, // GetDbHome Gets information about the specified Database Home. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDbHome.go.html to see an example of how to use GetDbHome API. func (client DatabaseClient) GetDbHome(ctx context.Context, request GetDbHomeRequest) (response GetDbHomeResponse, err error) { @@ -8787,7 +8787,7 @@ func (client DatabaseClient) getDbHome(ctx context.Context, request common.OCIRe // GetDbHomePatch Gets information about a specified patch package. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDbHomePatch.go.html to see an example of how to use GetDbHomePatch API. func (client DatabaseClient) GetDbHomePatch(ctx context.Context, request GetDbHomePatchRequest) (response GetDbHomePatchResponse, err error) { @@ -8844,7 +8844,7 @@ func (client DatabaseClient) getDbHomePatch(ctx context.Context, request common. // GetDbHomePatchHistoryEntry Gets the patch history details for the specified patchHistoryEntryId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDbHomePatchHistoryEntry.go.html to see an example of how to use GetDbHomePatchHistoryEntry API. func (client DatabaseClient) GetDbHomePatchHistoryEntry(ctx context.Context, request GetDbHomePatchHistoryEntryRequest) (response GetDbHomePatchHistoryEntryResponse, err error) { @@ -8901,7 +8901,7 @@ func (client DatabaseClient) getDbHomePatchHistoryEntry(ctx context.Context, req // GetDbNode Gets information about the specified database node. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDbNode.go.html to see an example of how to use GetDbNode API. func (client DatabaseClient) GetDbNode(ctx context.Context, request GetDbNodeRequest) (response GetDbNodeResponse, err error) { @@ -8958,7 +8958,7 @@ func (client DatabaseClient) getDbNode(ctx context.Context, request common.OCIRe // GetDbServer Gets information about the Exadata Db server. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDbServer.go.html to see an example of how to use GetDbServer API. func (client DatabaseClient) GetDbServer(ctx context.Context, request GetDbServerRequest) (response GetDbServerResponse, err error) { @@ -9017,7 +9017,7 @@ func (client DatabaseClient) getDbServer(ctx context.Context, request common.OCI // **Note:** Deprecated for Exadata Cloud Service systems. Use the new resource model APIs (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem.htm#exaflexsystem_topic-resource_model) instead. // For Exadata Cloud Service instances, support for this API will end on May 15th, 2021. See Switching an Exadata DB System to the New Resource Model and APIs (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem_topic-resource_model_conversion.htm) for details on converting existing Exadata DB systems to the new resource model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDbSystem.go.html to see an example of how to use GetDbSystem API. func (client DatabaseClient) GetDbSystem(ctx context.Context, request GetDbSystemRequest) (response GetDbSystemResponse, err error) { @@ -9074,7 +9074,7 @@ func (client DatabaseClient) getDbSystem(ctx context.Context, request common.OCI // GetDbSystemPatch Gets information the specified patch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDbSystemPatch.go.html to see an example of how to use GetDbSystemPatch API. func (client DatabaseClient) GetDbSystemPatch(ctx context.Context, request GetDbSystemPatchRequest) (response GetDbSystemPatchResponse, err error) { @@ -9131,7 +9131,7 @@ func (client DatabaseClient) getDbSystemPatch(ctx context.Context, request commo // GetDbSystemPatchHistoryEntry Gets the details of the specified patch operation on the specified DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDbSystemPatchHistoryEntry.go.html to see an example of how to use GetDbSystemPatchHistoryEntry API. func (client DatabaseClient) GetDbSystemPatchHistoryEntry(ctx context.Context, request GetDbSystemPatchHistoryEntryRequest) (response GetDbSystemPatchHistoryEntryResponse, err error) { @@ -9188,7 +9188,7 @@ func (client DatabaseClient) getDbSystemPatchHistoryEntry(ctx context.Context, r // GetDbSystemUpgradeHistoryEntry Gets the details of the specified operating system upgrade operation for the specified DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetDbSystemUpgradeHistoryEntry.go.html to see an example of how to use GetDbSystemUpgradeHistoryEntry API. func (client DatabaseClient) GetDbSystemUpgradeHistoryEntry(ctx context.Context, request GetDbSystemUpgradeHistoryEntryRequest) (response GetDbSystemUpgradeHistoryEntryResponse, err error) { @@ -9246,7 +9246,7 @@ func (client DatabaseClient) getDbSystemUpgradeHistoryEntry(ctx context.Context, // GetExadataInfrastructure Gets information about the specified Exadata infrastructure. Applies to Exadata Cloud@Customer instances only. // To get information on an Exadata Cloud Service infrastructure resource, use the GetCloudExadataInfrastructure operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetExadataInfrastructure.go.html to see an example of how to use GetExadataInfrastructure API. func (client DatabaseClient) GetExadataInfrastructure(ctx context.Context, request GetExadataInfrastructureRequest) (response GetExadataInfrastructureResponse, err error) { @@ -9303,7 +9303,7 @@ func (client DatabaseClient) getExadataInfrastructure(ctx context.Context, reque // GetExadataInfrastructureOcpus Gets details of the available and consumed OCPUs for the specified Autonomous Exadata Infrastructure resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetExadataInfrastructureOcpus.go.html to see an example of how to use GetExadataInfrastructureOcpus API. func (client DatabaseClient) GetExadataInfrastructureOcpus(ctx context.Context, request GetExadataInfrastructureOcpusRequest) (response GetExadataInfrastructureOcpusResponse, err error) { @@ -9360,7 +9360,7 @@ func (client DatabaseClient) getExadataInfrastructureOcpus(ctx context.Context, // GetExadataInfrastructureUnAllocatedResources Gets un allocated resources information for the specified Exadata infrastructure. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetExadataInfrastructureUnAllocatedResources.go.html to see an example of how to use GetExadataInfrastructureUnAllocatedResources API. func (client DatabaseClient) GetExadataInfrastructureUnAllocatedResources(ctx context.Context, request GetExadataInfrastructureUnAllocatedResourcesRequest) (response GetExadataInfrastructureUnAllocatedResourcesResponse, err error) { @@ -9422,7 +9422,7 @@ func (client DatabaseClient) getExadataInfrastructureUnAllocatedResources(ctx co // The GetCloudVmClusterIormConfig API is used for this operation with Exadata systems using the // new resource model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetExadataIormConfig.go.html to see an example of how to use GetExadataIormConfig API. func (client DatabaseClient) GetExadataIormConfig(ctx context.Context, request GetExadataIormConfigRequest) (response GetExadataIormConfigResponse, err error) { @@ -9480,7 +9480,7 @@ func (client DatabaseClient) getExadataIormConfig(ctx context.Context, request c // GetExternalBackupJob Gets information about the specified external backup job. // **Note:** This API is used by an Oracle Cloud Infrastructure Python script that is packaged with the Oracle Cloud Infrastructure CLI. Oracle recommends that you use the script instead using the API directly. See Migrating an On-Premises Database to Oracle Cloud Infrastructure by Creating a Backup in the Cloud (https://docs.cloud.oracle.com/Content/Database/Tasks/mig-onprembackup.htm) for more information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetExternalBackupJob.go.html to see an example of how to use GetExternalBackupJob API. func (client DatabaseClient) GetExternalBackupJob(ctx context.Context, request GetExternalBackupJobRequest) (response GetExternalBackupJobResponse, err error) { @@ -9537,7 +9537,7 @@ func (client DatabaseClient) getExternalBackupJob(ctx context.Context, request c // GetExternalContainerDatabase Gets information about the specified external container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetExternalContainerDatabase.go.html to see an example of how to use GetExternalContainerDatabase API. func (client DatabaseClient) GetExternalContainerDatabase(ctx context.Context, request GetExternalContainerDatabaseRequest) (response GetExternalContainerDatabaseResponse, err error) { @@ -9594,7 +9594,7 @@ func (client DatabaseClient) getExternalContainerDatabase(ctx context.Context, r // GetExternalDatabaseConnector Gets information about the specified external database connector. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetExternalDatabaseConnector.go.html to see an example of how to use GetExternalDatabaseConnector API. func (client DatabaseClient) GetExternalDatabaseConnector(ctx context.Context, request GetExternalDatabaseConnectorRequest) (response GetExternalDatabaseConnectorResponse, err error) { @@ -9651,7 +9651,7 @@ func (client DatabaseClient) getExternalDatabaseConnector(ctx context.Context, r // GetExternalNonContainerDatabase Gets information about a specific external non-container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetExternalNonContainerDatabase.go.html to see an example of how to use GetExternalNonContainerDatabase API. func (client DatabaseClient) GetExternalNonContainerDatabase(ctx context.Context, request GetExternalNonContainerDatabaseRequest) (response GetExternalNonContainerDatabaseResponse, err error) { @@ -9709,7 +9709,7 @@ func (client DatabaseClient) getExternalNonContainerDatabase(ctx context.Context // GetExternalPluggableDatabase Gets information about a specific // CreateExternalPluggableDatabaseDetails resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetExternalPluggableDatabase.go.html to see an example of how to use GetExternalPluggableDatabase API. func (client DatabaseClient) GetExternalPluggableDatabase(ctx context.Context, request GetExternalPluggableDatabaseRequest) (response GetExternalPluggableDatabaseResponse, err error) { @@ -9767,7 +9767,7 @@ func (client DatabaseClient) getExternalPluggableDatabase(ctx context.Context, r // GetInfrastructureTargetVersions Gets details of the Exadata Infrastructure target system software versions that can be applied to the specified infrastructure resource for maintenance updates. // Applies to Exadata Cloud@Customer and Exadata Cloud instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetInfrastructureTargetVersions.go.html to see an example of how to use GetInfrastructureTargetVersions API. func (client DatabaseClient) GetInfrastructureTargetVersions(ctx context.Context, request GetInfrastructureTargetVersionsRequest) (response GetInfrastructureTargetVersionsResponse, err error) { @@ -9824,7 +9824,7 @@ func (client DatabaseClient) getInfrastructureTargetVersions(ctx context.Context // GetKeyStore Gets information about the specified key store. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetKeyStore.go.html to see an example of how to use GetKeyStore API. func (client DatabaseClient) GetKeyStore(ctx context.Context, request GetKeyStoreRequest) (response GetKeyStoreResponse, err error) { @@ -9881,7 +9881,7 @@ func (client DatabaseClient) getKeyStore(ctx context.Context, request common.OCI // GetMaintenanceRun Gets information about the specified maintenance run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetMaintenanceRun.go.html to see an example of how to use GetMaintenanceRun API. func (client DatabaseClient) GetMaintenanceRun(ctx context.Context, request GetMaintenanceRunRequest) (response GetMaintenanceRunResponse, err error) { @@ -9938,7 +9938,7 @@ func (client DatabaseClient) getMaintenanceRun(ctx context.Context, request comm // GetMaintenanceRunHistory Gets information about the specified maintenance run history. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetMaintenanceRunHistory.go.html to see an example of how to use GetMaintenanceRunHistory API. func (client DatabaseClient) GetMaintenanceRunHistory(ctx context.Context, request GetMaintenanceRunHistoryRequest) (response GetMaintenanceRunHistoryResponse, err error) { @@ -9995,7 +9995,7 @@ func (client DatabaseClient) getMaintenanceRunHistory(ctx context.Context, reque // GetOneoffPatch Gets information about the specified one-off patch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetOneoffPatch.go.html to see an example of how to use GetOneoffPatch API. func (client DatabaseClient) GetOneoffPatch(ctx context.Context, request GetOneoffPatchRequest) (response GetOneoffPatchResponse, err error) { @@ -10052,7 +10052,7 @@ func (client DatabaseClient) getOneoffPatch(ctx context.Context, request common. // GetPdbConversionHistoryEntry Gets the details of operations performed to convert the specified database from non-container (non-CDB) to pluggable (PDB). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetPdbConversionHistoryEntry.go.html to see an example of how to use GetPdbConversionHistoryEntry API. func (client DatabaseClient) GetPdbConversionHistoryEntry(ctx context.Context, request GetPdbConversionHistoryEntryRequest) (response GetPdbConversionHistoryEntryResponse, err error) { @@ -10109,7 +10109,7 @@ func (client DatabaseClient) getPdbConversionHistoryEntry(ctx context.Context, r // GetPluggableDatabase Gets information about the specified pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetPluggableDatabase.go.html to see an example of how to use GetPluggableDatabase API. func (client DatabaseClient) GetPluggableDatabase(ctx context.Context, request GetPluggableDatabaseRequest) (response GetPluggableDatabaseResponse, err error) { @@ -10166,7 +10166,7 @@ func (client DatabaseClient) getPluggableDatabase(ctx context.Context, request c // GetVmCluster Gets information about the VM cluster. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetVmCluster.go.html to see an example of how to use GetVmCluster API. func (client DatabaseClient) GetVmCluster(ctx context.Context, request GetVmClusterRequest) (response GetVmClusterResponse, err error) { @@ -10224,7 +10224,7 @@ func (client DatabaseClient) getVmCluster(ctx context.Context, request common.OC // GetVmClusterNetwork Gets information about the specified VM cluster network. Applies to Exadata Cloud@Customer instances only. // To get information about a cloud VM cluster in an Exadata Cloud Service instance, use the GetCloudVmCluster operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetVmClusterNetwork.go.html to see an example of how to use GetVmClusterNetwork API. func (client DatabaseClient) GetVmClusterNetwork(ctx context.Context, request GetVmClusterNetworkRequest) (response GetVmClusterNetworkResponse, err error) { @@ -10281,7 +10281,7 @@ func (client DatabaseClient) getVmClusterNetwork(ctx context.Context, request co // GetVmClusterPatch Gets information about a specified patch package. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetVmClusterPatch.go.html to see an example of how to use GetVmClusterPatch API. func (client DatabaseClient) GetVmClusterPatch(ctx context.Context, request GetVmClusterPatchRequest) (response GetVmClusterPatchResponse, err error) { @@ -10338,7 +10338,7 @@ func (client DatabaseClient) getVmClusterPatch(ctx context.Context, request comm // GetVmClusterPatchHistoryEntry Gets the patch history details for the specified patch history entry. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetVmClusterPatchHistoryEntry.go.html to see an example of how to use GetVmClusterPatchHistoryEntry API. func (client DatabaseClient) GetVmClusterPatchHistoryEntry(ctx context.Context, request GetVmClusterPatchHistoryEntryRequest) (response GetVmClusterPatchHistoryEntryResponse, err error) { @@ -10395,7 +10395,7 @@ func (client DatabaseClient) getVmClusterPatchHistoryEntry(ctx context.Context, // GetVmClusterUpdate Gets information about a specified maintenance update package for a VM cluster. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetVmClusterUpdate.go.html to see an example of how to use GetVmClusterUpdate API. func (client DatabaseClient) GetVmClusterUpdate(ctx context.Context, request GetVmClusterUpdateRequest) (response GetVmClusterUpdateResponse, err error) { @@ -10452,7 +10452,7 @@ func (client DatabaseClient) getVmClusterUpdate(ctx context.Context, request com // GetVmClusterUpdateHistoryEntry Gets the maintenance update history details for the specified update history entry. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/GetVmClusterUpdateHistoryEntry.go.html to see an example of how to use GetVmClusterUpdateHistoryEntry API. func (client DatabaseClient) GetVmClusterUpdateHistoryEntry(ctx context.Context, request GetVmClusterUpdateHistoryEntryRequest) (response GetVmClusterUpdateHistoryEntryResponse, err error) { @@ -10509,7 +10509,7 @@ func (client DatabaseClient) getVmClusterUpdateHistoryEntry(ctx context.Context, // LaunchAutonomousExadataInfrastructure **Deprecated** To create a new Autonomous Database system on dedicated Exadata Infrastructure, use the CreateCloudExadataInfrastructure and CreateCloudAutonomousVmCluster operations instead. Note that to create an Autonomous VM cluster, you must have an existing Exadata Infrastructure resource to contain the VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/LaunchAutonomousExadataInfrastructure.go.html to see an example of how to use LaunchAutonomousExadataInfrastructure API. func (client DatabaseClient) LaunchAutonomousExadataInfrastructure(ctx context.Context, request LaunchAutonomousExadataInfrastructureRequest) (response LaunchAutonomousExadataInfrastructureResponse, err error) { @@ -10577,7 +10577,7 @@ func (client DatabaseClient) launchAutonomousExadataInfrastructure(ctx context.C // For Exadata Cloud Service instances, support for this API will end on May 15th, 2021. See Switching an Exadata DB System to the New Resource Model and APIs (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem_topic-resource_model_conversion.htm) for details on converting existing Exadata DB systems to the new resource model. // Use the CreateCloudExadataInfrastructure and CreateCloudVmCluster APIs to provision a new Exadata Cloud Service instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/LaunchDbSystem.go.html to see an example of how to use LaunchDbSystem API. func (client DatabaseClient) LaunchDbSystem(ctx context.Context, request LaunchDbSystemRequest) (response LaunchDbSystemResponse, err error) { @@ -10639,7 +10639,7 @@ func (client DatabaseClient) launchDbSystem(ctx context.Context, request common. // ListApplicationVips Gets a list of application virtual IP (VIP) addresses on a cloud VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListApplicationVips.go.html to see an example of how to use ListApplicationVips API. func (client DatabaseClient) ListApplicationVips(ctx context.Context, request ListApplicationVipsRequest) (response ListApplicationVipsResponse, err error) { @@ -10696,7 +10696,7 @@ func (client DatabaseClient) listApplicationVips(ctx context.Context, request co // ListAutonomousContainerDatabaseDataguardAssociations Gets a list of the Autonomous Container Databases with Autonomous Data Guard-enabled associated with the specified Autonomous Container Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousContainerDatabaseDataguardAssociations.go.html to see an example of how to use ListAutonomousContainerDatabaseDataguardAssociations API. func (client DatabaseClient) ListAutonomousContainerDatabaseDataguardAssociations(ctx context.Context, request ListAutonomousContainerDatabaseDataguardAssociationsRequest) (response ListAutonomousContainerDatabaseDataguardAssociationsResponse, err error) { @@ -10753,7 +10753,7 @@ func (client DatabaseClient) listAutonomousContainerDatabaseDataguardAssociation // ListAutonomousContainerDatabaseVersions Gets a list of supported Autonomous Container Database versions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousContainerDatabaseVersions.go.html to see an example of how to use ListAutonomousContainerDatabaseVersions API. func (client DatabaseClient) ListAutonomousContainerDatabaseVersions(ctx context.Context, request ListAutonomousContainerDatabaseVersionsRequest) (response ListAutonomousContainerDatabaseVersionsResponse, err error) { @@ -10810,7 +10810,7 @@ func (client DatabaseClient) listAutonomousContainerDatabaseVersions(ctx context // ListAutonomousContainerDatabases Gets a list of the Autonomous Container Databases in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousContainerDatabases.go.html to see an example of how to use ListAutonomousContainerDatabases API. func (client DatabaseClient) ListAutonomousContainerDatabases(ctx context.Context, request ListAutonomousContainerDatabasesRequest) (response ListAutonomousContainerDatabasesResponse, err error) { @@ -10867,7 +10867,7 @@ func (client DatabaseClient) listAutonomousContainerDatabases(ctx context.Contex // ListAutonomousDatabaseBackups Gets a list of Autonomous Database backups based on either the `autonomousDatabaseId` or `compartmentId` specified as a query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousDatabaseBackups.go.html to see an example of how to use ListAutonomousDatabaseBackups API. func (client DatabaseClient) ListAutonomousDatabaseBackups(ctx context.Context, request ListAutonomousDatabaseBackupsRequest) (response ListAutonomousDatabaseBackupsResponse, err error) { @@ -10924,7 +10924,7 @@ func (client DatabaseClient) listAutonomousDatabaseBackups(ctx context.Context, // ListAutonomousDatabaseCharacterSets Gets a list of supported character sets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousDatabaseCharacterSets.go.html to see an example of how to use ListAutonomousDatabaseCharacterSets API. func (client DatabaseClient) ListAutonomousDatabaseCharacterSets(ctx context.Context, request ListAutonomousDatabaseCharacterSetsRequest) (response ListAutonomousDatabaseCharacterSetsResponse, err error) { @@ -10981,7 +10981,7 @@ func (client DatabaseClient) listAutonomousDatabaseCharacterSets(ctx context.Con // ListAutonomousDatabaseClones Lists the Autonomous Database clones for the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousDatabaseClones.go.html to see an example of how to use ListAutonomousDatabaseClones API. func (client DatabaseClient) ListAutonomousDatabaseClones(ctx context.Context, request ListAutonomousDatabaseClonesRequest) (response ListAutonomousDatabaseClonesResponse, err error) { @@ -11038,7 +11038,7 @@ func (client DatabaseClient) listAutonomousDatabaseClones(ctx context.Context, r // ListAutonomousDatabaseDataguardAssociations Gets a list of the Autonomous Data Guard-enabled databases associated with the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousDatabaseDataguardAssociations.go.html to see an example of how to use ListAutonomousDatabaseDataguardAssociations API. func (client DatabaseClient) ListAutonomousDatabaseDataguardAssociations(ctx context.Context, request ListAutonomousDatabaseDataguardAssociationsRequest) (response ListAutonomousDatabaseDataguardAssociationsResponse, err error) { @@ -11095,7 +11095,7 @@ func (client DatabaseClient) listAutonomousDatabaseDataguardAssociations(ctx con // ListAutonomousDatabaseRefreshableClones Lists the OCIDs of the Autonomous Database local and connected remote refreshable clones with the region where they exist for the specified source database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousDatabaseRefreshableClones.go.html to see an example of how to use ListAutonomousDatabaseRefreshableClones API. func (client DatabaseClient) ListAutonomousDatabaseRefreshableClones(ctx context.Context, request ListAutonomousDatabaseRefreshableClonesRequest) (response ListAutonomousDatabaseRefreshableClonesResponse, err error) { @@ -11152,7 +11152,7 @@ func (client DatabaseClient) listAutonomousDatabaseRefreshableClones(ctx context // ListAutonomousDatabases Gets a list of Autonomous Databases based on the query parameters specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousDatabases.go.html to see an example of how to use ListAutonomousDatabases API. func (client DatabaseClient) ListAutonomousDatabases(ctx context.Context, request ListAutonomousDatabasesRequest) (response ListAutonomousDatabasesResponse, err error) { @@ -11210,7 +11210,7 @@ func (client DatabaseClient) listAutonomousDatabases(ctx context.Context, reques // ListAutonomousDbPreviewVersions Gets a list of supported Autonomous Database versions. Note that preview version software is only available for // Autonomous Database Serverless (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) databases. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousDbPreviewVersions.go.html to see an example of how to use ListAutonomousDbPreviewVersions API. func (client DatabaseClient) ListAutonomousDbPreviewVersions(ctx context.Context, request ListAutonomousDbPreviewVersionsRequest) (response ListAutonomousDbPreviewVersionsResponse, err error) { @@ -11267,7 +11267,7 @@ func (client DatabaseClient) listAutonomousDbPreviewVersions(ctx context.Context // ListAutonomousDbVersions Gets a list of supported Autonomous Database versions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousDbVersions.go.html to see an example of how to use ListAutonomousDbVersions API. func (client DatabaseClient) ListAutonomousDbVersions(ctx context.Context, request ListAutonomousDbVersionsRequest) (response ListAutonomousDbVersionsResponse, err error) { @@ -11324,7 +11324,7 @@ func (client DatabaseClient) listAutonomousDbVersions(ctx context.Context, reque // ListAutonomousExadataInfrastructureShapes **Deprecated.** // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousExadataInfrastructureShapes.go.html to see an example of how to use ListAutonomousExadataInfrastructureShapes API. func (client DatabaseClient) ListAutonomousExadataInfrastructureShapes(ctx context.Context, request ListAutonomousExadataInfrastructureShapesRequest) (response ListAutonomousExadataInfrastructureShapesResponse, err error) { @@ -11381,7 +11381,7 @@ func (client DatabaseClient) listAutonomousExadataInfrastructureShapes(ctx conte // ListAutonomousExadataInfrastructures **Deprecated.** Use the ListCloudExadataInfrastructures operation to list Exadata Infrastructures in the Oracle cloud and the ListCloudAutonomousVmClusters operation to list Autonomous Exadata VM clusters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousExadataInfrastructures.go.html to see an example of how to use ListAutonomousExadataInfrastructures API. func (client DatabaseClient) ListAutonomousExadataInfrastructures(ctx context.Context, request ListAutonomousExadataInfrastructuresRequest) (response ListAutonomousExadataInfrastructuresResponse, err error) { @@ -11438,7 +11438,7 @@ func (client DatabaseClient) listAutonomousExadataInfrastructures(ctx context.Co // ListAutonomousVirtualMachines Lists the Autonomous Virtual Machines in the specified Autonomous VM Cluster and Compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousVirtualMachines.go.html to see an example of how to use ListAutonomousVirtualMachines API. func (client DatabaseClient) ListAutonomousVirtualMachines(ctx context.Context, request ListAutonomousVirtualMachinesRequest) (response ListAutonomousVirtualMachinesResponse, err error) { @@ -11495,7 +11495,7 @@ func (client DatabaseClient) listAutonomousVirtualMachines(ctx context.Context, // ListAutonomousVmClusters Gets a list of Exadata Cloud@Customer Autonomous VM clusters in the specified compartment. To list Autonomous VM Clusters in the Oracle Cloud, see ListCloudAutonomousVmClusters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListAutonomousVmClusters.go.html to see an example of how to use ListAutonomousVmClusters API. func (client DatabaseClient) ListAutonomousVmClusters(ctx context.Context, request ListAutonomousVmClustersRequest) (response ListAutonomousVmClustersResponse, err error) { @@ -11552,7 +11552,7 @@ func (client DatabaseClient) listAutonomousVmClusters(ctx context.Context, reque // ListBackupDestination Gets a list of backup destinations in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListBackupDestination.go.html to see an example of how to use ListBackupDestination API. func (client DatabaseClient) ListBackupDestination(ctx context.Context, request ListBackupDestinationRequest) (response ListBackupDestinationResponse, err error) { @@ -11609,7 +11609,7 @@ func (client DatabaseClient) listBackupDestination(ctx context.Context, request // ListBackups Gets a list of backups based on the `databaseId` or `compartmentId` specified. Either one of these query parameters must be provided. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListBackups.go.html to see an example of how to use ListBackups API. func (client DatabaseClient) ListBackups(ctx context.Context, request ListBackupsRequest) (response ListBackupsResponse, err error) { @@ -11667,7 +11667,7 @@ func (client DatabaseClient) listBackups(ctx context.Context, request common.OCI // ListCloudAutonomousVmClusterAcdResourceUsage Gets the list of resource usage details for all the Cloud Autonomous Container Database // in the specified Cloud Autonomous Exadata VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListCloudAutonomousVmClusterAcdResourceUsage.go.html to see an example of how to use ListCloudAutonomousVmClusterAcdResourceUsage API. func (client DatabaseClient) ListCloudAutonomousVmClusterAcdResourceUsage(ctx context.Context, request ListCloudAutonomousVmClusterAcdResourceUsageRequest) (response ListCloudAutonomousVmClusterAcdResourceUsageResponse, err error) { @@ -11724,7 +11724,7 @@ func (client DatabaseClient) listCloudAutonomousVmClusterAcdResourceUsage(ctx co // ListCloudAutonomousVmClusters Lists Autonomous Exadata VM clusters in the Oracle cloud. For Exadata Cloud@Customer systems, see ListAutonomousVmClusters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListCloudAutonomousVmClusters.go.html to see an example of how to use ListCloudAutonomousVmClusters API. func (client DatabaseClient) ListCloudAutonomousVmClusters(ctx context.Context, request ListCloudAutonomousVmClustersRequest) (response ListCloudAutonomousVmClustersResponse, err error) { @@ -11781,7 +11781,7 @@ func (client DatabaseClient) listCloudAutonomousVmClusters(ctx context.Context, // ListCloudExadataInfrastructures Gets a list of the cloud Exadata infrastructure resources in the specified compartment. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListCloudExadataInfrastructures.go.html to see an example of how to use ListCloudExadataInfrastructures API. func (client DatabaseClient) ListCloudExadataInfrastructures(ctx context.Context, request ListCloudExadataInfrastructuresRequest) (response ListCloudExadataInfrastructuresResponse, err error) { @@ -11838,7 +11838,7 @@ func (client DatabaseClient) listCloudExadataInfrastructures(ctx context.Context // ListCloudVmClusterUpdateHistoryEntries Gets the history of the maintenance update actions performed on the specified cloud VM cluster. Applies to Exadata Cloud Service instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListCloudVmClusterUpdateHistoryEntries.go.html to see an example of how to use ListCloudVmClusterUpdateHistoryEntries API. func (client DatabaseClient) ListCloudVmClusterUpdateHistoryEntries(ctx context.Context, request ListCloudVmClusterUpdateHistoryEntriesRequest) (response ListCloudVmClusterUpdateHistoryEntriesResponse, err error) { @@ -11895,7 +11895,7 @@ func (client DatabaseClient) listCloudVmClusterUpdateHistoryEntries(ctx context. // ListCloudVmClusterUpdates Lists the maintenance updates that can be applied to the specified cloud VM cluster. Applies to Exadata Cloud Service instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListCloudVmClusterUpdates.go.html to see an example of how to use ListCloudVmClusterUpdates API. func (client DatabaseClient) ListCloudVmClusterUpdates(ctx context.Context, request ListCloudVmClusterUpdatesRequest) (response ListCloudVmClusterUpdatesResponse, err error) { @@ -11952,7 +11952,7 @@ func (client DatabaseClient) listCloudVmClusterUpdates(ctx context.Context, requ // ListCloudVmClusters Gets a list of the cloud VM clusters in the specified compartment. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListCloudVmClusters.go.html to see an example of how to use ListCloudVmClusters API. func (client DatabaseClient) ListCloudVmClusters(ctx context.Context, request ListCloudVmClustersRequest) (response ListCloudVmClustersResponse, err error) { @@ -12009,7 +12009,7 @@ func (client DatabaseClient) listCloudVmClusters(ctx context.Context, request co // ListConsoleConnections Lists the console connections for the specified database node. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListConsoleConnections.go.html to see an example of how to use ListConsoleConnections API. func (client DatabaseClient) ListConsoleConnections(ctx context.Context, request ListConsoleConnectionsRequest) (response ListConsoleConnectionsResponse, err error) { @@ -12066,7 +12066,7 @@ func (client DatabaseClient) listConsoleConnections(ctx context.Context, request // ListContainerDatabasePatches Lists the patches applicable to the requested container database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListContainerDatabasePatches.go.html to see an example of how to use ListContainerDatabasePatches API. func (client DatabaseClient) ListContainerDatabasePatches(ctx context.Context, request ListContainerDatabasePatchesRequest) (response ListContainerDatabasePatchesResponse, err error) { @@ -12123,7 +12123,7 @@ func (client DatabaseClient) listContainerDatabasePatches(ctx context.Context, r // ListDataGuardAssociations Lists all Data Guard associations for the specified database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDataGuardAssociations.go.html to see an example of how to use ListDataGuardAssociations API. func (client DatabaseClient) ListDataGuardAssociations(ctx context.Context, request ListDataGuardAssociationsRequest) (response ListDataGuardAssociationsResponse, err error) { @@ -12180,7 +12180,7 @@ func (client DatabaseClient) listDataGuardAssociations(ctx context.Context, requ // ListDatabaseSoftwareImages Gets a list of the database software images in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDatabaseSoftwareImages.go.html to see an example of how to use ListDatabaseSoftwareImages API. func (client DatabaseClient) ListDatabaseSoftwareImages(ctx context.Context, request ListDatabaseSoftwareImagesRequest) (response ListDatabaseSoftwareImagesResponse, err error) { @@ -12237,7 +12237,7 @@ func (client DatabaseClient) listDatabaseSoftwareImages(ctx context.Context, req // ListDatabaseUpgradeHistoryEntries Gets the upgrade history for a specified database in a bare metal or virtual machine DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDatabaseUpgradeHistoryEntries.go.html to see an example of how to use ListDatabaseUpgradeHistoryEntries API. func (client DatabaseClient) ListDatabaseUpgradeHistoryEntries(ctx context.Context, request ListDatabaseUpgradeHistoryEntriesRequest) (response ListDatabaseUpgradeHistoryEntriesResponse, err error) { @@ -12294,7 +12294,7 @@ func (client DatabaseClient) listDatabaseUpgradeHistoryEntries(ctx context.Conte // ListDatabases Gets a list of the databases in the specified Database Home. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDatabases.go.html to see an example of how to use ListDatabases API. func (client DatabaseClient) ListDatabases(ctx context.Context, request ListDatabasesRequest) (response ListDatabasesResponse, err error) { @@ -12351,7 +12351,7 @@ func (client DatabaseClient) listDatabases(ctx context.Context, request common.O // ListDbHomePatchHistoryEntries Lists the history of patch operations on the specified Database Home. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbHomePatchHistoryEntries.go.html to see an example of how to use ListDbHomePatchHistoryEntries API. func (client DatabaseClient) ListDbHomePatchHistoryEntries(ctx context.Context, request ListDbHomePatchHistoryEntriesRequest) (response ListDbHomePatchHistoryEntriesResponse, err error) { @@ -12408,7 +12408,7 @@ func (client DatabaseClient) listDbHomePatchHistoryEntries(ctx context.Context, // ListDbHomePatches Lists patches applicable to the requested Database Home. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbHomePatches.go.html to see an example of how to use ListDbHomePatches API. func (client DatabaseClient) ListDbHomePatches(ctx context.Context, request ListDbHomePatchesRequest) (response ListDbHomePatchesResponse, err error) { @@ -12465,7 +12465,7 @@ func (client DatabaseClient) listDbHomePatches(ctx context.Context, request comm // ListDbHomes Lists the Database Homes in the specified DB system and compartment. A Database Home is a directory where Oracle Database software is installed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbHomes.go.html to see an example of how to use ListDbHomes API. func (client DatabaseClient) ListDbHomes(ctx context.Context, request ListDbHomesRequest) (response ListDbHomesResponse, err error) { @@ -12522,7 +12522,7 @@ func (client DatabaseClient) listDbHomes(ctx context.Context, request common.OCI // ListDbNodes Lists the database nodes in the specified DB system and compartment. A database node is a server running database software. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbNodes.go.html to see an example of how to use ListDbNodes API. func (client DatabaseClient) ListDbNodes(ctx context.Context, request ListDbNodesRequest) (response ListDbNodesResponse, err error) { @@ -12579,7 +12579,7 @@ func (client DatabaseClient) listDbNodes(ctx context.Context, request common.OCI // ListDbServers Lists the Exadata DB servers in the ExadataInfrastructureId and specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbServers.go.html to see an example of how to use ListDbServers API. func (client DatabaseClient) ListDbServers(ctx context.Context, request ListDbServersRequest) (response ListDbServersResponse, err error) { @@ -12636,7 +12636,7 @@ func (client DatabaseClient) listDbServers(ctx context.Context, request common.O // ListDbSystemComputePerformances Gets a list of expected compute performance parameters for a virtual machine DB system based on system configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbSystemComputePerformances.go.html to see an example of how to use ListDbSystemComputePerformances API. func (client DatabaseClient) ListDbSystemComputePerformances(ctx context.Context, request ListDbSystemComputePerformancesRequest) (response ListDbSystemComputePerformancesResponse, err error) { @@ -12693,7 +12693,7 @@ func (client DatabaseClient) listDbSystemComputePerformances(ctx context.Context // ListDbSystemPatchHistoryEntries Gets the history of the patch actions performed on the specified DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbSystemPatchHistoryEntries.go.html to see an example of how to use ListDbSystemPatchHistoryEntries API. func (client DatabaseClient) ListDbSystemPatchHistoryEntries(ctx context.Context, request ListDbSystemPatchHistoryEntriesRequest) (response ListDbSystemPatchHistoryEntriesResponse, err error) { @@ -12750,7 +12750,7 @@ func (client DatabaseClient) listDbSystemPatchHistoryEntries(ctx context.Context // ListDbSystemPatches Lists the patches applicable to the specified DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbSystemPatches.go.html to see an example of how to use ListDbSystemPatches API. func (client DatabaseClient) ListDbSystemPatches(ctx context.Context, request ListDbSystemPatchesRequest) (response ListDbSystemPatchesResponse, err error) { @@ -12807,7 +12807,7 @@ func (client DatabaseClient) listDbSystemPatches(ctx context.Context, request co // ListDbSystemShapes Gets a list of the shapes that can be used to launch a new DB system. The shape determines resources to allocate to the DB system - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbSystemShapes.go.html to see an example of how to use ListDbSystemShapes API. func (client DatabaseClient) ListDbSystemShapes(ctx context.Context, request ListDbSystemShapesRequest) (response ListDbSystemShapesResponse, err error) { @@ -12864,7 +12864,7 @@ func (client DatabaseClient) listDbSystemShapes(ctx context.Context, request com // ListDbSystemStoragePerformances Gets a list of possible expected storage performance parameters of a VMDB System based on Configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbSystemStoragePerformances.go.html to see an example of how to use ListDbSystemStoragePerformances API. func (client DatabaseClient) ListDbSystemStoragePerformances(ctx context.Context, request ListDbSystemStoragePerformancesRequest) (response ListDbSystemStoragePerformancesResponse, err error) { @@ -12921,7 +12921,7 @@ func (client DatabaseClient) listDbSystemStoragePerformances(ctx context.Context // ListDbSystemUpgradeHistoryEntries Gets the history of the upgrade actions performed on the specified DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbSystemUpgradeHistoryEntries.go.html to see an example of how to use ListDbSystemUpgradeHistoryEntries API. func (client DatabaseClient) ListDbSystemUpgradeHistoryEntries(ctx context.Context, request ListDbSystemUpgradeHistoryEntriesRequest) (response ListDbSystemUpgradeHistoryEntriesResponse, err error) { @@ -12980,7 +12980,7 @@ func (client DatabaseClient) listDbSystemUpgradeHistoryEntries(ctx context.Conte // **Note:** Deprecated for Exadata Cloud Service systems. Use the new resource model APIs (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem.htm#exaflexsystem_topic-resource_model) instead. // For Exadata Cloud Service instances, support for this API will end on May 15th, 2021. See Switching an Exadata DB System to the New Resource Model and APIs (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem_topic-resource_model_conversion.htm) for details on converting existing Exadata DB systems to the new resource model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbSystems.go.html to see an example of how to use ListDbSystems API. func (client DatabaseClient) ListDbSystems(ctx context.Context, request ListDbSystemsRequest) (response ListDbSystemsResponse, err error) { @@ -13037,7 +13037,7 @@ func (client DatabaseClient) listDbSystems(ctx context.Context, request common.O // ListDbVersions Gets a list of supported Oracle Database versions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListDbVersions.go.html to see an example of how to use ListDbVersions API. func (client DatabaseClient) ListDbVersions(ctx context.Context, request ListDbVersionsRequest) (response ListDbVersionsResponse, err error) { @@ -13095,7 +13095,7 @@ func (client DatabaseClient) listDbVersions(ctx context.Context, request common. // ListExadataInfrastructures Lists the Exadata infrastructure resources in the specified compartment. Applies to Exadata Cloud@Customer instances only. // To list the Exadata Cloud Service infrastructure resources in a compartment, use the ListCloudExadataInfrastructures operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListExadataInfrastructures.go.html to see an example of how to use ListExadataInfrastructures API. func (client DatabaseClient) ListExadataInfrastructures(ctx context.Context, request ListExadataInfrastructuresRequest) (response ListExadataInfrastructuresResponse, err error) { @@ -13152,7 +13152,7 @@ func (client DatabaseClient) listExadataInfrastructures(ctx context.Context, req // ListExternalContainerDatabases Gets a list of the external container databases in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListExternalContainerDatabases.go.html to see an example of how to use ListExternalContainerDatabases API. func (client DatabaseClient) ListExternalContainerDatabases(ctx context.Context, request ListExternalContainerDatabasesRequest) (response ListExternalContainerDatabasesResponse, err error) { @@ -13225,7 +13225,7 @@ func (m *listexternaldatabaseconnectorsummary) UnmarshalPolymorphicJSON(data []b // ListExternalDatabaseConnectors Gets a list of the external database connectors in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListExternalDatabaseConnectors.go.html to see an example of how to use ListExternalDatabaseConnectors API. func (client DatabaseClient) ListExternalDatabaseConnectors(ctx context.Context, request ListExternalDatabaseConnectorsRequest) (response ListExternalDatabaseConnectorsResponse, err error) { @@ -13282,7 +13282,7 @@ func (client DatabaseClient) listExternalDatabaseConnectors(ctx context.Context, // ListExternalNonContainerDatabases Gets a list of the ExternalNonContainerDatabases in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListExternalNonContainerDatabases.go.html to see an example of how to use ListExternalNonContainerDatabases API. func (client DatabaseClient) ListExternalNonContainerDatabases(ctx context.Context, request ListExternalNonContainerDatabasesRequest) (response ListExternalNonContainerDatabasesResponse, err error) { @@ -13340,7 +13340,7 @@ func (client DatabaseClient) listExternalNonContainerDatabases(ctx context.Conte // ListExternalPluggableDatabases Gets a list of the CreateExternalPluggableDatabaseDetails // resources in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListExternalPluggableDatabases.go.html to see an example of how to use ListExternalPluggableDatabases API. func (client DatabaseClient) ListExternalPluggableDatabases(ctx context.Context, request ListExternalPluggableDatabasesRequest) (response ListExternalPluggableDatabasesResponse, err error) { @@ -13397,7 +13397,7 @@ func (client DatabaseClient) listExternalPluggableDatabases(ctx context.Context, // ListFlexComponents Gets a list of the flex components that can be used to launch a new DB system. The flex component determines resources to allocate to the DB system - Database Servers and Storage Servers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListFlexComponents.go.html to see an example of how to use ListFlexComponents API. func (client DatabaseClient) ListFlexComponents(ctx context.Context, request ListFlexComponentsRequest) (response ListFlexComponentsResponse, err error) { @@ -13454,7 +13454,7 @@ func (client DatabaseClient) listFlexComponents(ctx context.Context, request com // ListGiVersions Gets a list of supported GI versions for the Exadata Cloud@Customer VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListGiVersions.go.html to see an example of how to use ListGiVersions API. func (client DatabaseClient) ListGiVersions(ctx context.Context, request ListGiVersionsRequest) (response ListGiVersionsResponse, err error) { @@ -13511,7 +13511,7 @@ func (client DatabaseClient) listGiVersions(ctx context.Context, request common. // ListKeyStores Gets a list of key stores in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListKeyStores.go.html to see an example of how to use ListKeyStores API. func (client DatabaseClient) ListKeyStores(ctx context.Context, request ListKeyStoresRequest) (response ListKeyStoresResponse, err error) { @@ -13568,7 +13568,7 @@ func (client DatabaseClient) listKeyStores(ctx context.Context, request common.O // ListMaintenanceRunHistory Gets a list of the maintenance run histories in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListMaintenanceRunHistory.go.html to see an example of how to use ListMaintenanceRunHistory API. func (client DatabaseClient) ListMaintenanceRunHistory(ctx context.Context, request ListMaintenanceRunHistoryRequest) (response ListMaintenanceRunHistoryResponse, err error) { @@ -13625,7 +13625,7 @@ func (client DatabaseClient) listMaintenanceRunHistory(ctx context.Context, requ // ListMaintenanceRuns Gets a list of the maintenance runs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListMaintenanceRuns.go.html to see an example of how to use ListMaintenanceRuns API. func (client DatabaseClient) ListMaintenanceRuns(ctx context.Context, request ListMaintenanceRunsRequest) (response ListMaintenanceRunsResponse, err error) { @@ -13682,7 +13682,7 @@ func (client DatabaseClient) listMaintenanceRuns(ctx context.Context, request co // ListOneoffPatches Lists one-off patches in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListOneoffPatches.go.html to see an example of how to use ListOneoffPatches API. func (client DatabaseClient) ListOneoffPatches(ctx context.Context, request ListOneoffPatchesRequest) (response ListOneoffPatchesResponse, err error) { @@ -13739,7 +13739,7 @@ func (client DatabaseClient) listOneoffPatches(ctx context.Context, request comm // ListPdbConversionHistoryEntries Gets the pluggable database conversion history for a specified database in a bare metal or virtual machine DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListPdbConversionHistoryEntries.go.html to see an example of how to use ListPdbConversionHistoryEntries API. func (client DatabaseClient) ListPdbConversionHistoryEntries(ctx context.Context, request ListPdbConversionHistoryEntriesRequest) (response ListPdbConversionHistoryEntriesResponse, err error) { @@ -13796,7 +13796,7 @@ func (client DatabaseClient) listPdbConversionHistoryEntries(ctx context.Context // ListPluggableDatabases Gets a list of the pluggable databases in a database or compartment. You must provide either a `databaseId` or `compartmentId` value. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListPluggableDatabases.go.html to see an example of how to use ListPluggableDatabases API. func (client DatabaseClient) ListPluggableDatabases(ctx context.Context, request ListPluggableDatabasesRequest) (response ListPluggableDatabasesResponse, err error) { @@ -13853,7 +13853,7 @@ func (client DatabaseClient) listPluggableDatabases(ctx context.Context, request // ListVmClusterNetworks Gets a list of the VM cluster networks in the specified compartment. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListVmClusterNetworks.go.html to see an example of how to use ListVmClusterNetworks API. func (client DatabaseClient) ListVmClusterNetworks(ctx context.Context, request ListVmClusterNetworksRequest) (response ListVmClusterNetworksResponse, err error) { @@ -13910,7 +13910,7 @@ func (client DatabaseClient) listVmClusterNetworks(ctx context.Context, request // ListVmClusterPatchHistoryEntries Gets the history of the patch actions performed on the specified VM cluster in an Exadata Cloud@Customer system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListVmClusterPatchHistoryEntries.go.html to see an example of how to use ListVmClusterPatchHistoryEntries API. func (client DatabaseClient) ListVmClusterPatchHistoryEntries(ctx context.Context, request ListVmClusterPatchHistoryEntriesRequest) (response ListVmClusterPatchHistoryEntriesResponse, err error) { @@ -13967,7 +13967,7 @@ func (client DatabaseClient) listVmClusterPatchHistoryEntries(ctx context.Contex // ListVmClusterPatches Lists the patches applicable to the specified VM cluster in an Exadata Cloud@Customer system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListVmClusterPatches.go.html to see an example of how to use ListVmClusterPatches API. func (client DatabaseClient) ListVmClusterPatches(ctx context.Context, request ListVmClusterPatchesRequest) (response ListVmClusterPatchesResponse, err error) { @@ -14024,7 +14024,7 @@ func (client DatabaseClient) listVmClusterPatches(ctx context.Context, request c // ListVmClusterUpdateHistoryEntries Gets the history of the maintenance update actions performed on the specified VM cluster. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListVmClusterUpdateHistoryEntries.go.html to see an example of how to use ListVmClusterUpdateHistoryEntries API. func (client DatabaseClient) ListVmClusterUpdateHistoryEntries(ctx context.Context, request ListVmClusterUpdateHistoryEntriesRequest) (response ListVmClusterUpdateHistoryEntriesResponse, err error) { @@ -14081,7 +14081,7 @@ func (client DatabaseClient) listVmClusterUpdateHistoryEntries(ctx context.Conte // ListVmClusterUpdates Lists the maintenance updates that can be applied to the specified VM cluster. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListVmClusterUpdates.go.html to see an example of how to use ListVmClusterUpdates API. func (client DatabaseClient) ListVmClusterUpdates(ctx context.Context, request ListVmClusterUpdatesRequest) (response ListVmClusterUpdatesResponse, err error) { @@ -14139,7 +14139,7 @@ func (client DatabaseClient) listVmClusterUpdates(ctx context.Context, request c // ListVmClusters Lists the VM clusters in the specified compartment. Applies to Exadata Cloud@Customer instances only. // To list the cloud VM clusters in an Exadata Cloud Service instance, use the ListCloudVmClusters operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ListVmClusters.go.html to see an example of how to use ListVmClusters API. func (client DatabaseClient) ListVmClusters(ctx context.Context, request ListVmClustersRequest) (response ListVmClustersResponse, err error) { @@ -14196,7 +14196,7 @@ func (client DatabaseClient) listVmClusters(ctx context.Context, request common. // LocalClonePluggableDatabase Clones and starts a pluggable database (PDB) in the same database (CDB) as the source PDB. The source PDB must be in the `READ_WRITE` openMode to perform the clone operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/LocalClonePluggableDatabase.go.html to see an example of how to use LocalClonePluggableDatabase API. func (client DatabaseClient) LocalClonePluggableDatabase(ctx context.Context, request LocalClonePluggableDatabaseRequest) (response LocalClonePluggableDatabaseResponse, err error) { @@ -14259,7 +14259,7 @@ func (client DatabaseClient) localClonePluggableDatabase(ctx context.Context, re // MigrateExadataDbSystemResourceModel Migrates the Exadata DB system to the new Exadata resource model (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem.htm#exaflexsystem_topic-resource_model). // All related resources will be migrated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/MigrateExadataDbSystemResourceModel.go.html to see an example of how to use MigrateExadataDbSystemResourceModel API. func (client DatabaseClient) MigrateExadataDbSystemResourceModel(ctx context.Context, request MigrateExadataDbSystemResourceModelRequest) (response MigrateExadataDbSystemResourceModelResponse, err error) { @@ -14321,7 +14321,7 @@ func (client DatabaseClient) migrateExadataDbSystemResourceModel(ctx context.Con // MigrateVaultKey Changes encryption key management from customer-managed, using the Vault service (https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm), to Oracle-managed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/MigrateVaultKey.go.html to see an example of how to use MigrateVaultKey API. func (client DatabaseClient) MigrateVaultKey(ctx context.Context, request MigrateVaultKeyRequest) (response MigrateVaultKeyResponse, err error) { @@ -14383,7 +14383,7 @@ func (client DatabaseClient) migrateVaultKey(ctx context.Context, request common // ModifyDatabaseManagement Updates one or more attributes of the Database Management service for the database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ModifyDatabaseManagement.go.html to see an example of how to use ModifyDatabaseManagement API. func (client DatabaseClient) ModifyDatabaseManagement(ctx context.Context, request ModifyDatabaseManagementRequest) (response ModifyDatabaseManagementResponse, err error) { @@ -14445,7 +14445,7 @@ func (client DatabaseClient) modifyDatabaseManagement(ctx context.Context, reque // ModifyPluggableDatabaseManagement Updates one or more attributes of the Database Management service for the pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ModifyPluggableDatabaseManagement.go.html to see an example of how to use ModifyPluggableDatabaseManagement API. func (client DatabaseClient) ModifyPluggableDatabaseManagement(ctx context.Context, request ModifyPluggableDatabaseManagementRequest) (response ModifyPluggableDatabaseManagementResponse, err error) { @@ -14507,7 +14507,7 @@ func (client DatabaseClient) modifyPluggableDatabaseManagement(ctx context.Conte // RegisterAutonomousDatabaseDataSafe Asynchronously registers this Autonomous Database with Data Safe. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RegisterAutonomousDatabaseDataSafe.go.html to see an example of how to use RegisterAutonomousDatabaseDataSafe API. func (client DatabaseClient) RegisterAutonomousDatabaseDataSafe(ctx context.Context, request RegisterAutonomousDatabaseDataSafeRequest) (response RegisterAutonomousDatabaseDataSafeResponse, err error) { @@ -14564,7 +14564,7 @@ func (client DatabaseClient) registerAutonomousDatabaseDataSafe(ctx context.Cont // ReinstateAutonomousContainerDatabaseDataguardAssociation Reinstates a disabled standby Autonomous Container Database, identified by the autonomousContainerDatabaseId parameter, to an active standby Autonomous Container Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ReinstateAutonomousContainerDatabaseDataguardAssociation.go.html to see an example of how to use ReinstateAutonomousContainerDatabaseDataguardAssociation API. func (client DatabaseClient) ReinstateAutonomousContainerDatabaseDataguardAssociation(ctx context.Context, request ReinstateAutonomousContainerDatabaseDataguardAssociationRequest) (response ReinstateAutonomousContainerDatabaseDataguardAssociationResponse, err error) { @@ -14621,7 +14621,7 @@ func (client DatabaseClient) reinstateAutonomousContainerDatabaseDataguardAssoci // ReinstateDataGuardAssociation Reinstates the database identified by the `databaseId` parameter into the standby role in a Data Guard association. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ReinstateDataGuardAssociation.go.html to see an example of how to use ReinstateDataGuardAssociation API. func (client DatabaseClient) ReinstateDataGuardAssociation(ctx context.Context, request ReinstateDataGuardAssociationRequest) (response ReinstateDataGuardAssociationResponse, err error) { @@ -14679,7 +14679,7 @@ func (client DatabaseClient) reinstateDataGuardAssociation(ctx context.Context, // RemoteClonePluggableDatabase Clones a pluggable database (PDB) to a different database from the source PDB. The cloned PDB will be started upon completion of the clone operation. The source PDB must be in the `READ_WRITE` openMode when performing the clone. // For Exadata Cloud@Customer instances, the source pluggable database (PDB) must be on the same Exadata Infrastructure as the target container database (CDB) to create a remote clone. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RemoteClonePluggableDatabase.go.html to see an example of how to use RemoteClonePluggableDatabase API. func (client DatabaseClient) RemoteClonePluggableDatabase(ctx context.Context, request RemoteClonePluggableDatabaseRequest) (response RemoteClonePluggableDatabaseResponse, err error) { @@ -14741,7 +14741,7 @@ func (client DatabaseClient) remoteClonePluggableDatabase(ctx context.Context, r // RemoveVirtualMachineFromCloudVmCluster Remove Virtual Machines from the Cloud VM cluster. Applies to Exadata Cloud instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RemoveVirtualMachineFromCloudVmCluster.go.html to see an example of how to use RemoveVirtualMachineFromCloudVmCluster API. func (client DatabaseClient) RemoveVirtualMachineFromCloudVmCluster(ctx context.Context, request RemoveVirtualMachineFromCloudVmClusterRequest) (response RemoveVirtualMachineFromCloudVmClusterResponse, err error) { @@ -14803,7 +14803,7 @@ func (client DatabaseClient) removeVirtualMachineFromCloudVmCluster(ctx context. // RemoveVirtualMachineFromVmCluster Remove Virtual Machines from the VM cluster. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RemoveVirtualMachineFromVmCluster.go.html to see an example of how to use RemoveVirtualMachineFromVmCluster API. func (client DatabaseClient) RemoveVirtualMachineFromVmCluster(ctx context.Context, request RemoveVirtualMachineFromVmClusterRequest) (response RemoveVirtualMachineFromVmClusterResponse, err error) { @@ -14866,7 +14866,7 @@ func (client DatabaseClient) removeVirtualMachineFromVmCluster(ctx context.Conte // ResizeVmClusterNetwork Adds or removes Db server network nodes to extend or shrink the existing VM cluster network. Applies to Exadata // Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ResizeVmClusterNetwork.go.html to see an example of how to use ResizeVmClusterNetwork API. func (client DatabaseClient) ResizeVmClusterNetwork(ctx context.Context, request ResizeVmClusterNetworkRequest) (response ResizeVmClusterNetworkResponse, err error) { @@ -14928,7 +14928,7 @@ func (client DatabaseClient) resizeVmClusterNetwork(ctx context.Context, request // RestartAutonomousContainerDatabase Rolling restarts the specified Autonomous Container Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RestartAutonomousContainerDatabase.go.html to see an example of how to use RestartAutonomousContainerDatabase API. func (client DatabaseClient) RestartAutonomousContainerDatabase(ctx context.Context, request RestartAutonomousContainerDatabaseRequest) (response RestartAutonomousContainerDatabaseResponse, err error) { @@ -14985,7 +14985,7 @@ func (client DatabaseClient) restartAutonomousContainerDatabase(ctx context.Cont // RestartAutonomousDatabase Restarts the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RestartAutonomousDatabase.go.html to see an example of how to use RestartAutonomousDatabase API. func (client DatabaseClient) RestartAutonomousDatabase(ctx context.Context, request RestartAutonomousDatabaseRequest) (response RestartAutonomousDatabaseResponse, err error) { @@ -15042,7 +15042,7 @@ func (client DatabaseClient) restartAutonomousDatabase(ctx context.Context, requ // RestoreAutonomousDatabase Restores an Autonomous Database based on the provided request parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RestoreAutonomousDatabase.go.html to see an example of how to use RestoreAutonomousDatabase API. func (client DatabaseClient) RestoreAutonomousDatabase(ctx context.Context, request RestoreAutonomousDatabaseRequest) (response RestoreAutonomousDatabaseResponse, err error) { @@ -15099,7 +15099,7 @@ func (client DatabaseClient) restoreAutonomousDatabase(ctx context.Context, requ // RestoreDatabase Restore a Database based on the request parameters you provide. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RestoreDatabase.go.html to see an example of how to use RestoreDatabase API. func (client DatabaseClient) RestoreDatabase(ctx context.Context, request RestoreDatabaseRequest) (response RestoreDatabaseResponse, err error) { @@ -15156,7 +15156,7 @@ func (client DatabaseClient) restoreDatabase(ctx context.Context, request common // RotateAutonomousContainerDatabaseEncryptionKey Creates a new version of an existing Vault service (https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotateAutonomousContainerDatabaseEncryptionKey.go.html to see an example of how to use RotateAutonomousContainerDatabaseEncryptionKey API. func (client DatabaseClient) RotateAutonomousContainerDatabaseEncryptionKey(ctx context.Context, request RotateAutonomousContainerDatabaseEncryptionKeyRequest) (response RotateAutonomousContainerDatabaseEncryptionKeyResponse, err error) { @@ -15218,7 +15218,7 @@ func (client DatabaseClient) rotateAutonomousContainerDatabaseEncryptionKey(ctx // RotateAutonomousDatabaseEncryptionKey Rotate existing AutonomousDatabase Vault service (https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotateAutonomousDatabaseEncryptionKey.go.html to see an example of how to use RotateAutonomousDatabaseEncryptionKey API. func (client DatabaseClient) RotateAutonomousDatabaseEncryptionKey(ctx context.Context, request RotateAutonomousDatabaseEncryptionKeyRequest) (response RotateAutonomousDatabaseEncryptionKeyResponse, err error) { @@ -15280,7 +15280,7 @@ func (client DatabaseClient) rotateAutonomousDatabaseEncryptionKey(ctx context.C // RotateAutonomousVmClusterOrdsCerts Rotates the Oracle REST Data Services (ORDS) certificates for Autonomous Exadata VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotateAutonomousVmClusterOrdsCerts.go.html to see an example of how to use RotateAutonomousVmClusterOrdsCerts API. func (client DatabaseClient) RotateAutonomousVmClusterOrdsCerts(ctx context.Context, request RotateAutonomousVmClusterOrdsCertsRequest) (response RotateAutonomousVmClusterOrdsCertsResponse, err error) { @@ -15342,7 +15342,7 @@ func (client DatabaseClient) rotateAutonomousVmClusterOrdsCerts(ctx context.Cont // RotateAutonomousVmClusterSslCerts Rotates the SSL certificates for Autonomous Exadata VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotateAutonomousVmClusterSslCerts.go.html to see an example of how to use RotateAutonomousVmClusterSslCerts API. func (client DatabaseClient) RotateAutonomousVmClusterSslCerts(ctx context.Context, request RotateAutonomousVmClusterSslCertsRequest) (response RotateAutonomousVmClusterSslCertsResponse, err error) { @@ -15404,7 +15404,7 @@ func (client DatabaseClient) rotateAutonomousVmClusterSslCerts(ctx context.Conte // RotateCloudAutonomousVmClusterOrdsCerts Rotates the Oracle REST Data Services (ORDS) certificates for a cloud Autonomous Exadata VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotateCloudAutonomousVmClusterOrdsCerts.go.html to see an example of how to use RotateCloudAutonomousVmClusterOrdsCerts API. func (client DatabaseClient) RotateCloudAutonomousVmClusterOrdsCerts(ctx context.Context, request RotateCloudAutonomousVmClusterOrdsCertsRequest) (response RotateCloudAutonomousVmClusterOrdsCertsResponse, err error) { @@ -15466,7 +15466,7 @@ func (client DatabaseClient) rotateCloudAutonomousVmClusterOrdsCerts(ctx context // RotateCloudAutonomousVmClusterSslCerts Rotates the SSL certficates for a cloud Autonomous Exadata VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotateCloudAutonomousVmClusterSslCerts.go.html to see an example of how to use RotateCloudAutonomousVmClusterSslCerts API. func (client DatabaseClient) RotateCloudAutonomousVmClusterSslCerts(ctx context.Context, request RotateCloudAutonomousVmClusterSslCertsRequest) (response RotateCloudAutonomousVmClusterSslCertsResponse, err error) { @@ -15528,7 +15528,7 @@ func (client DatabaseClient) rotateCloudAutonomousVmClusterSslCerts(ctx context. // RotateOrdsCerts **Deprecated.** Use the RotateCloudAutonomousVmClusterOrdsCerts to rotate Oracle REST Data Services (ORDS) certs for an Autonomous Exadata VM cluster instead. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotateOrdsCerts.go.html to see an example of how to use RotateOrdsCerts API. func (client DatabaseClient) RotateOrdsCerts(ctx context.Context, request RotateOrdsCertsRequest) (response RotateOrdsCertsResponse, err error) { @@ -15590,7 +15590,7 @@ func (client DatabaseClient) rotateOrdsCerts(ctx context.Context, request common // RotatePluggableDatabaseEncryptionKey Create a new version of the existing encryption key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotatePluggableDatabaseEncryptionKey.go.html to see an example of how to use RotatePluggableDatabaseEncryptionKey API. func (client DatabaseClient) RotatePluggableDatabaseEncryptionKey(ctx context.Context, request RotatePluggableDatabaseEncryptionKeyRequest) (response RotatePluggableDatabaseEncryptionKeyResponse, err error) { @@ -15652,7 +15652,7 @@ func (client DatabaseClient) rotatePluggableDatabaseEncryptionKey(ctx context.Co // RotateSslCerts **Deprecated.** Use the RotateCloudAutonomousVmClusterSslCerts to rotate SSL certs for an Autonomous Exadata VM cluster instead. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotateSslCerts.go.html to see an example of how to use RotateSslCerts API. func (client DatabaseClient) RotateSslCerts(ctx context.Context, request RotateSslCertsRequest) (response RotateSslCertsResponse, err error) { @@ -15714,7 +15714,7 @@ func (client DatabaseClient) rotateSslCerts(ctx context.Context, request common. // RotateVaultKey Creates a new version of an existing Vault service (https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm) key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/RotateVaultKey.go.html to see an example of how to use RotateVaultKey API. func (client DatabaseClient) RotateVaultKey(ctx context.Context, request RotateVaultKeyRequest) (response RotateVaultKeyResponse, err error) { @@ -15777,7 +15777,7 @@ func (client DatabaseClient) rotateVaultKey(ctx context.Context, request common. // ScanExternalContainerDatabasePluggableDatabases Scans for pluggable databases in the specified external container database. // This operation will return un-registered pluggable databases in the GetWorkRequest operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ScanExternalContainerDatabasePluggableDatabases.go.html to see an example of how to use ScanExternalContainerDatabasePluggableDatabases API. func (client DatabaseClient) ScanExternalContainerDatabasePluggableDatabases(ctx context.Context, request ScanExternalContainerDatabasePluggableDatabasesRequest) (response ScanExternalContainerDatabasePluggableDatabasesResponse, err error) { @@ -15839,7 +15839,7 @@ func (client DatabaseClient) scanExternalContainerDatabasePluggableDatabases(ctx // ShrinkAutonomousDatabase This operation shrinks the current allocated storage down to the current actual used data storage (actualUsedDataStorageSizeInTBs). The if the base storage value for the database (dataStorageSizeInTBs) is larger than the actualUsedDataStorageSizeInTBs value, you are billed for the base storage value. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ShrinkAutonomousDatabase.go.html to see an example of how to use ShrinkAutonomousDatabase API. func (client DatabaseClient) ShrinkAutonomousDatabase(ctx context.Context, request ShrinkAutonomousDatabaseRequest) (response ShrinkAutonomousDatabaseResponse, err error) { @@ -15896,7 +15896,7 @@ func (client DatabaseClient) shrinkAutonomousDatabase(ctx context.Context, reque // StartAutonomousDatabase Starts the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/StartAutonomousDatabase.go.html to see an example of how to use StartAutonomousDatabase API. func (client DatabaseClient) StartAutonomousDatabase(ctx context.Context, request StartAutonomousDatabaseRequest) (response StartAutonomousDatabaseResponse, err error) { @@ -15953,7 +15953,7 @@ func (client DatabaseClient) startAutonomousDatabase(ctx context.Context, reques // StartPluggableDatabase Starts a stopped pluggable database. The `openMode` value of the pluggable database will be `READ_WRITE` upon completion. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/StartPluggableDatabase.go.html to see an example of how to use StartPluggableDatabase API. func (client DatabaseClient) StartPluggableDatabase(ctx context.Context, request StartPluggableDatabaseRequest) (response StartPluggableDatabaseResponse, err error) { @@ -16015,7 +16015,7 @@ func (client DatabaseClient) startPluggableDatabase(ctx context.Context, request // StopAutonomousDatabase Stops the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/StopAutonomousDatabase.go.html to see an example of how to use StopAutonomousDatabase API. func (client DatabaseClient) StopAutonomousDatabase(ctx context.Context, request StopAutonomousDatabaseRequest) (response StopAutonomousDatabaseResponse, err error) { @@ -16072,7 +16072,7 @@ func (client DatabaseClient) stopAutonomousDatabase(ctx context.Context, request // StopPluggableDatabase Stops a pluggable database. The `openMode` value of the pluggable database will be `MOUNTED` upon completion. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/StopPluggableDatabase.go.html to see an example of how to use StopPluggableDatabase API. func (client DatabaseClient) StopPluggableDatabase(ctx context.Context, request StopPluggableDatabaseRequest) (response StopPluggableDatabaseResponse, err error) { @@ -16135,7 +16135,7 @@ func (client DatabaseClient) stopPluggableDatabase(ctx context.Context, request // SwitchoverAutonomousContainerDatabaseDataguardAssociation Switches over the primary Autonomous Container Database of an Autonomous Data Guard peer association to standby role. The standby Autonomous Container Database associated with autonomousContainerDatabaseDataguardAssociationId assumes the primary Autonomous Container Database role. // A switchover incurs no data loss. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/SwitchoverAutonomousContainerDatabaseDataguardAssociation.go.html to see an example of how to use SwitchoverAutonomousContainerDatabaseDataguardAssociation API. func (client DatabaseClient) SwitchoverAutonomousContainerDatabaseDataguardAssociation(ctx context.Context, request SwitchoverAutonomousContainerDatabaseDataguardAssociationRequest) (response SwitchoverAutonomousContainerDatabaseDataguardAssociationResponse, err error) { @@ -16192,7 +16192,7 @@ func (client DatabaseClient) switchoverAutonomousContainerDatabaseDataguardAssoc // SwitchoverAutonomousDatabase Initiates a switchover of the specified Autonomous Database to the associated standby database. Applicable only to databases with Autonomous Data Guard enabled. To perform a switchover to a standby located in a remote region, specify the OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the remote standby using the `peerDbId` parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/SwitchoverAutonomousDatabase.go.html to see an example of how to use SwitchoverAutonomousDatabase API. func (client DatabaseClient) SwitchoverAutonomousDatabase(ctx context.Context, request SwitchoverAutonomousDatabaseRequest) (response SwitchoverAutonomousDatabaseResponse, err error) { @@ -16256,7 +16256,7 @@ func (client DatabaseClient) switchoverAutonomousDatabase(ctx context.Context, r // standby database associated with the `dataGuardAssociationId` assumes the primary database role. // A switchover guarantees no data loss. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/SwitchoverDataGuardAssociation.go.html to see an example of how to use SwitchoverDataGuardAssociation API. func (client DatabaseClient) SwitchoverDataGuardAssociation(ctx context.Context, request SwitchoverDataGuardAssociationRequest) (response SwitchoverDataGuardAssociationResponse, err error) { @@ -16313,7 +16313,7 @@ func (client DatabaseClient) switchoverDataGuardAssociation(ctx context.Context, // TerminateAutonomousContainerDatabase Terminates an Autonomous Container Database, which permanently deletes the container database and any databases within the container database. The database data is local to the Autonomous Exadata Infrastructure and will be lost when the container database is terminated. Oracle recommends that you back up any data in the Autonomous Container Database prior to terminating it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/TerminateAutonomousContainerDatabase.go.html to see an example of how to use TerminateAutonomousContainerDatabase API. func (client DatabaseClient) TerminateAutonomousContainerDatabase(ctx context.Context, request TerminateAutonomousContainerDatabaseRequest) (response TerminateAutonomousContainerDatabaseResponse, err error) { @@ -16370,7 +16370,7 @@ func (client DatabaseClient) terminateAutonomousContainerDatabase(ctx context.Co // TerminateAutonomousExadataInfrastructure **Deprecated.** To terminate an Exadata Infrastructure resource in the Oracle cloud, use the DeleteCloudExadataInfrastructure operation. To delete an Autonomous Exadata VM cluster in the Oracle cloud, use the DeleteCloudAutonomousVmCluster operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/TerminateAutonomousExadataInfrastructure.go.html to see an example of how to use TerminateAutonomousExadataInfrastructure API. func (client DatabaseClient) TerminateAutonomousExadataInfrastructure(ctx context.Context, request TerminateAutonomousExadataInfrastructureRequest) (response TerminateAutonomousExadataInfrastructureResponse, err error) { @@ -16429,7 +16429,7 @@ func (client DatabaseClient) terminateAutonomousExadataInfrastructure(ctx contex // **Note:** Deprecated for Exadata Cloud Service systems. Use the new resource model APIs (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem.htm#exaflexsystem_topic-resource_model) instead. // For Exadata Cloud Service instances, support for this API will end on May 15th, 2021. See Switching an Exadata DB System to the New Resource Model and APIs (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem_topic-resource_model_conversion.htm) for details on converting existing Exadata DB systems to the new resource model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/TerminateDbSystem.go.html to see an example of how to use TerminateDbSystem API. func (client DatabaseClient) TerminateDbSystem(ctx context.Context, request TerminateDbSystemRequest) (response TerminateDbSystemResponse, err error) { @@ -16486,7 +16486,7 @@ func (client DatabaseClient) terminateDbSystem(ctx context.Context, request comm // UpdateAutonomousContainerDatabase Updates the properties of an Autonomous Container Database, such as display name, maintenance preference, backup retention, and tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateAutonomousContainerDatabase.go.html to see an example of how to use UpdateAutonomousContainerDatabase API. func (client DatabaseClient) UpdateAutonomousContainerDatabase(ctx context.Context, request UpdateAutonomousContainerDatabaseRequest) (response UpdateAutonomousContainerDatabaseResponse, err error) { @@ -16543,7 +16543,7 @@ func (client DatabaseClient) updateAutonomousContainerDatabase(ctx context.Conte // UpdateAutonomousContainerDatabaseDataguardAssociation Update Autonomous Data Guard association. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateAutonomousContainerDatabaseDataguardAssociation.go.html to see an example of how to use UpdateAutonomousContainerDatabaseDataguardAssociation API. func (client DatabaseClient) UpdateAutonomousContainerDatabaseDataguardAssociation(ctx context.Context, request UpdateAutonomousContainerDatabaseDataguardAssociationRequest) (response UpdateAutonomousContainerDatabaseDataguardAssociationResponse, err error) { @@ -16600,7 +16600,7 @@ func (client DatabaseClient) updateAutonomousContainerDatabaseDataguardAssociati // UpdateAutonomousDatabase Updates one or more attributes of the specified Autonomous Database. See the UpdateAutonomousDatabaseDetails resource for a full list of attributes that can be updated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateAutonomousDatabase.go.html to see an example of how to use UpdateAutonomousDatabase API. func (client DatabaseClient) UpdateAutonomousDatabase(ctx context.Context, request UpdateAutonomousDatabaseRequest) (response UpdateAutonomousDatabaseResponse, err error) { @@ -16657,7 +16657,7 @@ func (client DatabaseClient) updateAutonomousDatabase(ctx context.Context, reque // UpdateAutonomousDatabaseBackup Updates the Autonomous Database backup of the specified database based on the request parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateAutonomousDatabaseBackup.go.html to see an example of how to use UpdateAutonomousDatabaseBackup API. func (client DatabaseClient) UpdateAutonomousDatabaseBackup(ctx context.Context, request UpdateAutonomousDatabaseBackupRequest) (response UpdateAutonomousDatabaseBackupResponse, err error) { @@ -16714,7 +16714,7 @@ func (client DatabaseClient) updateAutonomousDatabaseBackup(ctx context.Context, // UpdateAutonomousDatabaseRegionalWallet Updates the Autonomous Database regional wallet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateAutonomousDatabaseRegionalWallet.go.html to see an example of how to use UpdateAutonomousDatabaseRegionalWallet API. func (client DatabaseClient) UpdateAutonomousDatabaseRegionalWallet(ctx context.Context, request UpdateAutonomousDatabaseRegionalWalletRequest) (response UpdateAutonomousDatabaseRegionalWalletResponse, err error) { @@ -16771,7 +16771,7 @@ func (client DatabaseClient) updateAutonomousDatabaseRegionalWallet(ctx context. // UpdateAutonomousDatabaseWallet Updates the wallet for the specified Autonomous Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateAutonomousDatabaseWallet.go.html to see an example of how to use UpdateAutonomousDatabaseWallet API. func (client DatabaseClient) UpdateAutonomousDatabaseWallet(ctx context.Context, request UpdateAutonomousDatabaseWalletRequest) (response UpdateAutonomousDatabaseWalletResponse, err error) { @@ -16828,7 +16828,7 @@ func (client DatabaseClient) updateAutonomousDatabaseWallet(ctx context.Context, // UpdateAutonomousExadataInfrastructure **Deprecated.** Use the UpdateCloudExadataInfrastructure operation to update an Exadata Infrastructure resource and UpdateCloudAutonomousVmCluster operation to update an Autonomous Exadata VM cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateAutonomousExadataInfrastructure.go.html to see an example of how to use UpdateAutonomousExadataInfrastructure API. func (client DatabaseClient) UpdateAutonomousExadataInfrastructure(ctx context.Context, request UpdateAutonomousExadataInfrastructureRequest) (response UpdateAutonomousExadataInfrastructureResponse, err error) { @@ -16885,7 +16885,7 @@ func (client DatabaseClient) updateAutonomousExadataInfrastructure(ctx context.C // UpdateAutonomousVmCluster Updates the specified Autonomous VM cluster for the Exadata Cloud@Customer system.To update an Autonomous VM Cluster in the Oracle cloud, see UpdateCloudAutonomousVmCluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateAutonomousVmCluster.go.html to see an example of how to use UpdateAutonomousVmCluster API. func (client DatabaseClient) UpdateAutonomousVmCluster(ctx context.Context, request UpdateAutonomousVmClusterRequest) (response UpdateAutonomousVmClusterResponse, err error) { @@ -16944,7 +16944,7 @@ func (client DatabaseClient) updateAutonomousVmCluster(ctx context.Context, requ // - For a RECOVERY_APPLIANCE backup destination, updates the connection string and/or the list of VPC users. // - For an NFS backup destination, updates the NFS location. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateBackupDestination.go.html to see an example of how to use UpdateBackupDestination API. func (client DatabaseClient) UpdateBackupDestination(ctx context.Context, request UpdateBackupDestinationRequest) (response UpdateBackupDestinationResponse, err error) { @@ -17001,7 +17001,7 @@ func (client DatabaseClient) updateBackupDestination(ctx context.Context, reques // UpdateCloudAutonomousVmCluster Updates the specified Autonomous Exadata VM cluster in the Oracle cloud. For Exadata Cloud@Customer systems, see UpdateAutonomousVmCluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateCloudAutonomousVmCluster.go.html to see an example of how to use UpdateCloudAutonomousVmCluster API. func (client DatabaseClient) UpdateCloudAutonomousVmCluster(ctx context.Context, request UpdateCloudAutonomousVmClusterRequest) (response UpdateCloudAutonomousVmClusterResponse, err error) { @@ -17058,7 +17058,7 @@ func (client DatabaseClient) updateCloudAutonomousVmCluster(ctx context.Context, // UpdateCloudExadataInfrastructure Updates the Cloud Exadata infrastructure resource. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateCloudExadataInfrastructure.go.html to see an example of how to use UpdateCloudExadataInfrastructure API. func (client DatabaseClient) UpdateCloudExadataInfrastructure(ctx context.Context, request UpdateCloudExadataInfrastructureRequest) (response UpdateCloudExadataInfrastructureResponse, err error) { @@ -17115,7 +17115,7 @@ func (client DatabaseClient) updateCloudExadataInfrastructure(ctx context.Contex // UpdateCloudVmCluster Updates the specified cloud VM cluster. Applies to Exadata Cloud Service instances and Autonomous Database on dedicated Exadata infrastructure only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateCloudVmCluster.go.html to see an example of how to use UpdateCloudVmCluster API. func (client DatabaseClient) UpdateCloudVmCluster(ctx context.Context, request UpdateCloudVmClusterRequest) (response UpdateCloudVmClusterResponse, err error) { @@ -17172,7 +17172,7 @@ func (client DatabaseClient) updateCloudVmCluster(ctx context.Context, request c // UpdateCloudVmClusterIormConfig Updates the IORM settings for the specified cloud VM cluster in an Exadata Cloud Service instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateCloudVmClusterIormConfig.go.html to see an example of how to use UpdateCloudVmClusterIormConfig API. func (client DatabaseClient) UpdateCloudVmClusterIormConfig(ctx context.Context, request UpdateCloudVmClusterIormConfigRequest) (response UpdateCloudVmClusterIormConfigResponse, err error) { @@ -17229,7 +17229,7 @@ func (client DatabaseClient) updateCloudVmClusterIormConfig(ctx context.Context, // UpdateConsoleConnection Updates the specified database node console connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateConsoleConnection.go.html to see an example of how to use UpdateConsoleConnection API. func (client DatabaseClient) UpdateConsoleConnection(ctx context.Context, request UpdateConsoleConnectionRequest) (response UpdateConsoleConnectionResponse, err error) { @@ -17286,7 +17286,7 @@ func (client DatabaseClient) updateConsoleConnection(ctx context.Context, reques // UpdateDataGuardAssociation Updates the Data Guard association the specified database. This API can be used to change the `protectionMode` and `transportType` of the Data Guard association. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateDataGuardAssociation.go.html to see an example of how to use UpdateDataGuardAssociation API. func (client DatabaseClient) UpdateDataGuardAssociation(ctx context.Context, request UpdateDataGuardAssociationRequest) (response UpdateDataGuardAssociationResponse, err error) { @@ -17343,7 +17343,7 @@ func (client DatabaseClient) updateDataGuardAssociation(ctx context.Context, req // UpdateDatabase Update the specified database based on the request parameters provided. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateDatabase.go.html to see an example of how to use UpdateDatabase API. func (client DatabaseClient) UpdateDatabase(ctx context.Context, request UpdateDatabaseRequest) (response UpdateDatabaseResponse, err error) { @@ -17400,7 +17400,7 @@ func (client DatabaseClient) updateDatabase(ctx context.Context, request common. // UpdateDatabaseSoftwareImage Updates the properties of a Database Software Image, like Display Nmae // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateDatabaseSoftwareImage.go.html to see an example of how to use UpdateDatabaseSoftwareImage API. func (client DatabaseClient) UpdateDatabaseSoftwareImage(ctx context.Context, request UpdateDatabaseSoftwareImageRequest) (response UpdateDatabaseSoftwareImageResponse, err error) { @@ -17457,7 +17457,7 @@ func (client DatabaseClient) updateDatabaseSoftwareImage(ctx context.Context, re // UpdateDbHome Patches the specified Database Home. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateDbHome.go.html to see an example of how to use UpdateDbHome API. func (client DatabaseClient) UpdateDbHome(ctx context.Context, request UpdateDbHomeRequest) (response UpdateDbHomeResponse, err error) { @@ -17514,7 +17514,7 @@ func (client DatabaseClient) updateDbHome(ctx context.Context, request common.OC // UpdateDbNode Updates the specified database node. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateDbNode.go.html to see an example of how to use UpdateDbNode API. func (client DatabaseClient) UpdateDbNode(ctx context.Context, request UpdateDbNodeRequest) (response UpdateDbNodeResponse, err error) { @@ -17573,7 +17573,7 @@ func (client DatabaseClient) updateDbNode(ctx context.Context, request common.OC // **Note:** Deprecated for Exadata Cloud Service systems. Use the new resource model APIs (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem.htm#exaflexsystem_topic-resource_model) instead. // For Exadata Cloud Service instances, support for this API will end on May 15th, 2021. See Switching an Exadata DB System to the New Resource Model and APIs (https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaflexsystem_topic-resource_model_conversion.htm) for details on converting existing Exadata DB systems to the new resource model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateDbSystem.go.html to see an example of how to use UpdateDbSystem API. func (client DatabaseClient) UpdateDbSystem(ctx context.Context, request UpdateDbSystemRequest) (response UpdateDbSystemResponse, err error) { @@ -17631,7 +17631,7 @@ func (client DatabaseClient) updateDbSystem(ctx context.Context, request common. // UpdateExadataInfrastructure Updates the Exadata infrastructure resource. Applies to Exadata Cloud@Customer instances only. // To update an Exadata Cloud Service infrastructure resource, use the UpdateCloudExadataInfrastructure operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateExadataInfrastructure.go.html to see an example of how to use UpdateExadataInfrastructure API. func (client DatabaseClient) UpdateExadataInfrastructure(ctx context.Context, request UpdateExadataInfrastructureRequest) (response UpdateExadataInfrastructureResponse, err error) { @@ -17692,7 +17692,7 @@ func (client DatabaseClient) updateExadataInfrastructure(ctx context.Context, re // The UpdateCloudVmClusterIormConfig API is used for Exadata systems using the // new resource model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateExadataIormConfig.go.html to see an example of how to use UpdateExadataIormConfig API. func (client DatabaseClient) UpdateExadataIormConfig(ctx context.Context, request UpdateExadataIormConfigRequest) (response UpdateExadataIormConfigResponse, err error) { @@ -17751,7 +17751,7 @@ func (client DatabaseClient) updateExadataIormConfig(ctx context.Context, reques // an CreateExternalContainerDatabaseDetails resource, // such as the display name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateExternalContainerDatabase.go.html to see an example of how to use UpdateExternalContainerDatabase API. func (client DatabaseClient) UpdateExternalContainerDatabase(ctx context.Context, request UpdateExternalContainerDatabaseRequest) (response UpdateExternalContainerDatabaseResponse, err error) { @@ -17808,7 +17808,7 @@ func (client DatabaseClient) updateExternalContainerDatabase(ctx context.Context // UpdateExternalDatabaseConnector Updates the properties of an external database connector, such as the display name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateExternalDatabaseConnector.go.html to see an example of how to use UpdateExternalDatabaseConnector API. func (client DatabaseClient) UpdateExternalDatabaseConnector(ctx context.Context, request UpdateExternalDatabaseConnectorRequest) (response UpdateExternalDatabaseConnectorResponse, err error) { @@ -17865,7 +17865,7 @@ func (client DatabaseClient) updateExternalDatabaseConnector(ctx context.Context // UpdateExternalNonContainerDatabase Updates the properties of an external non-container database, such as the display name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateExternalNonContainerDatabase.go.html to see an example of how to use UpdateExternalNonContainerDatabase API. func (client DatabaseClient) UpdateExternalNonContainerDatabase(ctx context.Context, request UpdateExternalNonContainerDatabaseRequest) (response UpdateExternalNonContainerDatabaseResponse, err error) { @@ -17924,7 +17924,7 @@ func (client DatabaseClient) updateExternalNonContainerDatabase(ctx context.Cont // CreateExternalPluggableDatabaseDetails resource, // such as the display name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateExternalPluggableDatabase.go.html to see an example of how to use UpdateExternalPluggableDatabase API. func (client DatabaseClient) UpdateExternalPluggableDatabase(ctx context.Context, request UpdateExternalPluggableDatabaseRequest) (response UpdateExternalPluggableDatabaseResponse, err error) { @@ -17981,7 +17981,7 @@ func (client DatabaseClient) updateExternalPluggableDatabase(ctx context.Context // UpdateKeyStore If no database is associated with the key store, edit the key store. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateKeyStore.go.html to see an example of how to use UpdateKeyStore API. func (client DatabaseClient) UpdateKeyStore(ctx context.Context, request UpdateKeyStoreRequest) (response UpdateKeyStoreResponse, err error) { @@ -18038,7 +18038,7 @@ func (client DatabaseClient) updateKeyStore(ctx context.Context, request common. // UpdateMaintenanceRun Updates the properties of a maintenance run, such as the state of a maintenance run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateMaintenanceRun.go.html to see an example of how to use UpdateMaintenanceRun API. func (client DatabaseClient) UpdateMaintenanceRun(ctx context.Context, request UpdateMaintenanceRunRequest) (response UpdateMaintenanceRunResponse, err error) { @@ -18095,7 +18095,7 @@ func (client DatabaseClient) updateMaintenanceRun(ctx context.Context, request c // UpdateOneoffPatch Updates the properties of the specified one-off patch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateOneoffPatch.go.html to see an example of how to use UpdateOneoffPatch API. func (client DatabaseClient) UpdateOneoffPatch(ctx context.Context, request UpdateOneoffPatchRequest) (response UpdateOneoffPatchResponse, err error) { @@ -18152,7 +18152,7 @@ func (client DatabaseClient) updateOneoffPatch(ctx context.Context, request comm // UpdatePluggableDatabase Updates the specified pluggable database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdatePluggableDatabase.go.html to see an example of how to use UpdatePluggableDatabase API. func (client DatabaseClient) UpdatePluggableDatabase(ctx context.Context, request UpdatePluggableDatabaseRequest) (response UpdatePluggableDatabaseResponse, err error) { @@ -18209,7 +18209,7 @@ func (client DatabaseClient) updatePluggableDatabase(ctx context.Context, reques // UpdateVmCluster Updates the specified VM cluster. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateVmCluster.go.html to see an example of how to use UpdateVmCluster API. func (client DatabaseClient) UpdateVmCluster(ctx context.Context, request UpdateVmClusterRequest) (response UpdateVmClusterResponse, err error) { @@ -18267,7 +18267,7 @@ func (client DatabaseClient) updateVmCluster(ctx context.Context, request common // UpdateVmClusterNetwork Updates the specified VM cluster network. Applies to Exadata Cloud@Customer instances only. // To update a cloud VM cluster in an Exadata Cloud Service instance, use the UpdateCloudVmCluster operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpdateVmClusterNetwork.go.html to see an example of how to use UpdateVmClusterNetwork API. func (client DatabaseClient) UpdateVmClusterNetwork(ctx context.Context, request UpdateVmClusterNetworkRequest) (response UpdateVmClusterNetworkResponse, err error) { @@ -18324,7 +18324,7 @@ func (client DatabaseClient) updateVmClusterNetwork(ctx context.Context, request // UpgradeDatabase Upgrades the specified Oracle Database instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpgradeDatabase.go.html to see an example of how to use UpgradeDatabase API. func (client DatabaseClient) UpgradeDatabase(ctx context.Context, request UpgradeDatabaseRequest) (response UpgradeDatabaseResponse, err error) { @@ -18381,7 +18381,7 @@ func (client DatabaseClient) upgradeDatabase(ctx context.Context, request common // UpgradeDbSystem Upgrades the operating system and grid infrastructure of the DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/UpgradeDbSystem.go.html to see an example of how to use UpgradeDbSystem API. func (client DatabaseClient) UpgradeDbSystem(ctx context.Context, request UpgradeDbSystemRequest) (response UpgradeDbSystemResponse, err error) { @@ -18443,7 +18443,7 @@ func (client DatabaseClient) upgradeDbSystem(ctx context.Context, request common // ValidateVmClusterNetwork Validates the specified VM cluster network. Applies to Exadata Cloud@Customer instances only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/ValidateVmClusterNetwork.go.html to see an example of how to use ValidateVmClusterNetwork API. func (client DatabaseClient) ValidateVmClusterNetwork(ctx context.Context, request ValidateVmClusterNetworkRequest) (response ValidateVmClusterNetworkResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_database_software_image_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_database_software_image_details.go index 2ab0b6e713a..a888d2de275 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_database_software_image_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_database_software_image_details.go @@ -27,7 +27,7 @@ type DatabaseUpgradeWithDatabaseSoftwareImageDetails struct { Options *string `mandatory:"false" json:"options"` } -//GetOptions returns Options +// GetOptions returns Options func (m DatabaseUpgradeWithDatabaseSoftwareImageDetails) GetOptions() *string { return m.Options } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_db_home_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_db_home_details.go index ca224d4d002..b7ba34a1dbf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_db_home_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_db_home_details.go @@ -27,7 +27,7 @@ type DatabaseUpgradeWithDbHomeDetails struct { Options *string `mandatory:"false" json:"options"` } -//GetOptions returns Options +// GetOptions returns Options func (m DatabaseUpgradeWithDbHomeDetails) GetOptions() *string { return m.Options } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_db_version_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_db_version_details.go index ba92b6b36d1..24342fcc31a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_db_version_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/database_upgrade_with_db_version_details.go @@ -28,7 +28,7 @@ type DatabaseUpgradeWithDbVersionDetails struct { Options *string `mandatory:"false" json:"options"` } -//GetOptions returns Options +// GetOptions returns Options func (m DatabaseUpgradeWithDbVersionDetails) GetOptions() *string { return m.Options } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/external_macs_connector.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/external_macs_connector.go index 48a23f6f2cf..821d70e3c16 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/external_macs_connector.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/external_macs_connector.go @@ -67,57 +67,57 @@ type ExternalMacsConnector struct { LifecycleState ExternalDatabaseConnectorLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ExternalMacsConnector) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ExternalMacsConnector) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ExternalMacsConnector) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalMacsConnector) GetDisplayName() *string { return m.DisplayName } -//GetId returns Id +// GetId returns Id func (m ExternalMacsConnector) GetId() *string { return m.Id } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalMacsConnector) GetLifecycleState() ExternalDatabaseConnectorLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalMacsConnector) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalMacsConnector) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetExternalDatabaseId returns ExternalDatabaseId +// GetExternalDatabaseId returns ExternalDatabaseId func (m ExternalMacsConnector) GetExternalDatabaseId() *string { return m.ExternalDatabaseId } -//GetConnectionStatus returns ConnectionStatus +// GetConnectionStatus returns ConnectionStatus func (m ExternalMacsConnector) GetConnectionStatus() *string { return m.ConnectionStatus } -//GetTimeConnectionStatusLastUpdated returns TimeConnectionStatusLastUpdated +// GetTimeConnectionStatusLastUpdated returns TimeConnectionStatusLastUpdated func (m ExternalMacsConnector) GetTimeConnectionStatusLastUpdated() *common.SDKTime { return m.TimeConnectionStatusLastUpdated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/external_macs_connector_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/external_macs_connector_summary.go index 93a6989c55b..84ada01e5d4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/external_macs_connector_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/external_macs_connector_summary.go @@ -67,57 +67,57 @@ type ExternalMacsConnectorSummary struct { LifecycleState ExternalDatabaseConnectorLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ExternalMacsConnectorSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ExternalMacsConnectorSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ExternalMacsConnectorSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalMacsConnectorSummary) GetDisplayName() *string { return m.DisplayName } -//GetId returns Id +// GetId returns Id func (m ExternalMacsConnectorSummary) GetId() *string { return m.Id } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalMacsConnectorSummary) GetLifecycleState() ExternalDatabaseConnectorLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalMacsConnectorSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalMacsConnectorSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetExternalDatabaseId returns ExternalDatabaseId +// GetExternalDatabaseId returns ExternalDatabaseId func (m ExternalMacsConnectorSummary) GetExternalDatabaseId() *string { return m.ExternalDatabaseId } -//GetConnectionStatus returns ConnectionStatus +// GetConnectionStatus returns ConnectionStatus func (m ExternalMacsConnectorSummary) GetConnectionStatus() *string { return m.ConnectionStatus } -//GetTimeConnectionStatusLastUpdated returns TimeConnectionStatusLastUpdated +// GetTimeConnectionStatusLastUpdated returns TimeConnectionStatusLastUpdated func (m ExternalMacsConnectorSummary) GetTimeConnectionStatusLastUpdated() *common.SDKTime { return m.TimeConnectionStatusLastUpdated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_details.go index ae2a603a406..11b2ee65c5e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_details.go @@ -163,137 +163,137 @@ type LaunchDbSystemDetails struct { StorageVolumePerformanceMode LaunchDbSystemBaseStorageVolumePerformanceModeEnum `mandatory:"false" json:"storageVolumePerformanceMode,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m LaunchDbSystemDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFaultDomains returns FaultDomains +// GetFaultDomains returns FaultDomains func (m LaunchDbSystemDetails) GetFaultDomains() []string { return m.FaultDomains } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m LaunchDbSystemDetails) GetDisplayName() *string { return m.DisplayName } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m LaunchDbSystemDetails) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m LaunchDbSystemDetails) GetSubnetId() *string { return m.SubnetId } -//GetBackupSubnetId returns BackupSubnetId +// GetBackupSubnetId returns BackupSubnetId func (m LaunchDbSystemDetails) GetBackupSubnetId() *string { return m.BackupSubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m LaunchDbSystemDetails) GetNsgIds() []string { return m.NsgIds } -//GetBackupNetworkNsgIds returns BackupNetworkNsgIds +// GetBackupNetworkNsgIds returns BackupNetworkNsgIds func (m LaunchDbSystemDetails) GetBackupNetworkNsgIds() []string { return m.BackupNetworkNsgIds } -//GetShape returns Shape +// GetShape returns Shape func (m LaunchDbSystemDetails) GetShape() *string { return m.Shape } -//GetTimeZone returns TimeZone +// GetTimeZone returns TimeZone func (m LaunchDbSystemDetails) GetTimeZone() *string { return m.TimeZone } -//GetDbSystemOptions returns DbSystemOptions +// GetDbSystemOptions returns DbSystemOptions func (m LaunchDbSystemDetails) GetDbSystemOptions() *DbSystemOptions { return m.DbSystemOptions } -//GetStorageVolumePerformanceMode returns StorageVolumePerformanceMode +// GetStorageVolumePerformanceMode returns StorageVolumePerformanceMode func (m LaunchDbSystemDetails) GetStorageVolumePerformanceMode() LaunchDbSystemBaseStorageVolumePerformanceModeEnum { return m.StorageVolumePerformanceMode } -//GetSparseDiskgroup returns SparseDiskgroup +// GetSparseDiskgroup returns SparseDiskgroup func (m LaunchDbSystemDetails) GetSparseDiskgroup() *bool { return m.SparseDiskgroup } -//GetSshPublicKeys returns SshPublicKeys +// GetSshPublicKeys returns SshPublicKeys func (m LaunchDbSystemDetails) GetSshPublicKeys() []string { return m.SshPublicKeys } -//GetHostname returns Hostname +// GetHostname returns Hostname func (m LaunchDbSystemDetails) GetHostname() *string { return m.Hostname } -//GetDomain returns Domain +// GetDomain returns Domain func (m LaunchDbSystemDetails) GetDomain() *string { return m.Domain } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m LaunchDbSystemDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetClusterName returns ClusterName +// GetClusterName returns ClusterName func (m LaunchDbSystemDetails) GetClusterName() *string { return m.ClusterName } -//GetDataStoragePercentage returns DataStoragePercentage +// GetDataStoragePercentage returns DataStoragePercentage func (m LaunchDbSystemDetails) GetDataStoragePercentage() *int { return m.DataStoragePercentage } -//GetInitialDataStorageSizeInGB returns InitialDataStorageSizeInGB +// GetInitialDataStorageSizeInGB returns InitialDataStorageSizeInGB func (m LaunchDbSystemDetails) GetInitialDataStorageSizeInGB() *int { return m.InitialDataStorageSizeInGB } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m LaunchDbSystemDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m LaunchDbSystemDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } -//GetNodeCount returns NodeCount +// GetNodeCount returns NodeCount func (m LaunchDbSystemDetails) GetNodeCount() *int { return m.NodeCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m LaunchDbSystemDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m LaunchDbSystemDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateIp returns PrivateIp +// GetPrivateIp returns PrivateIp func (m LaunchDbSystemDetails) GetPrivateIp() *string { return m.PrivateIp } -//GetDataCollectionOptions returns DataCollectionOptions +// GetDataCollectionOptions returns DataCollectionOptions func (m LaunchDbSystemDetails) GetDataCollectionOptions() *DataCollectionOptions { return m.DataCollectionOptions } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_backup_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_backup_details.go index 77bd9722dc7..ef8594e75be 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_backup_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_backup_details.go @@ -161,137 +161,137 @@ type LaunchDbSystemFromBackupDetails struct { StorageVolumePerformanceMode LaunchDbSystemBaseStorageVolumePerformanceModeEnum `mandatory:"false" json:"storageVolumePerformanceMode,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m LaunchDbSystemFromBackupDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFaultDomains returns FaultDomains +// GetFaultDomains returns FaultDomains func (m LaunchDbSystemFromBackupDetails) GetFaultDomains() []string { return m.FaultDomains } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m LaunchDbSystemFromBackupDetails) GetDisplayName() *string { return m.DisplayName } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m LaunchDbSystemFromBackupDetails) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m LaunchDbSystemFromBackupDetails) GetSubnetId() *string { return m.SubnetId } -//GetBackupSubnetId returns BackupSubnetId +// GetBackupSubnetId returns BackupSubnetId func (m LaunchDbSystemFromBackupDetails) GetBackupSubnetId() *string { return m.BackupSubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m LaunchDbSystemFromBackupDetails) GetNsgIds() []string { return m.NsgIds } -//GetBackupNetworkNsgIds returns BackupNetworkNsgIds +// GetBackupNetworkNsgIds returns BackupNetworkNsgIds func (m LaunchDbSystemFromBackupDetails) GetBackupNetworkNsgIds() []string { return m.BackupNetworkNsgIds } -//GetShape returns Shape +// GetShape returns Shape func (m LaunchDbSystemFromBackupDetails) GetShape() *string { return m.Shape } -//GetTimeZone returns TimeZone +// GetTimeZone returns TimeZone func (m LaunchDbSystemFromBackupDetails) GetTimeZone() *string { return m.TimeZone } -//GetDbSystemOptions returns DbSystemOptions +// GetDbSystemOptions returns DbSystemOptions func (m LaunchDbSystemFromBackupDetails) GetDbSystemOptions() *DbSystemOptions { return m.DbSystemOptions } -//GetStorageVolumePerformanceMode returns StorageVolumePerformanceMode +// GetStorageVolumePerformanceMode returns StorageVolumePerformanceMode func (m LaunchDbSystemFromBackupDetails) GetStorageVolumePerformanceMode() LaunchDbSystemBaseStorageVolumePerformanceModeEnum { return m.StorageVolumePerformanceMode } -//GetSparseDiskgroup returns SparseDiskgroup +// GetSparseDiskgroup returns SparseDiskgroup func (m LaunchDbSystemFromBackupDetails) GetSparseDiskgroup() *bool { return m.SparseDiskgroup } -//GetSshPublicKeys returns SshPublicKeys +// GetSshPublicKeys returns SshPublicKeys func (m LaunchDbSystemFromBackupDetails) GetSshPublicKeys() []string { return m.SshPublicKeys } -//GetHostname returns Hostname +// GetHostname returns Hostname func (m LaunchDbSystemFromBackupDetails) GetHostname() *string { return m.Hostname } -//GetDomain returns Domain +// GetDomain returns Domain func (m LaunchDbSystemFromBackupDetails) GetDomain() *string { return m.Domain } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m LaunchDbSystemFromBackupDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetClusterName returns ClusterName +// GetClusterName returns ClusterName func (m LaunchDbSystemFromBackupDetails) GetClusterName() *string { return m.ClusterName } -//GetDataStoragePercentage returns DataStoragePercentage +// GetDataStoragePercentage returns DataStoragePercentage func (m LaunchDbSystemFromBackupDetails) GetDataStoragePercentage() *int { return m.DataStoragePercentage } -//GetInitialDataStorageSizeInGB returns InitialDataStorageSizeInGB +// GetInitialDataStorageSizeInGB returns InitialDataStorageSizeInGB func (m LaunchDbSystemFromBackupDetails) GetInitialDataStorageSizeInGB() *int { return m.InitialDataStorageSizeInGB } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m LaunchDbSystemFromBackupDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m LaunchDbSystemFromBackupDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } -//GetNodeCount returns NodeCount +// GetNodeCount returns NodeCount func (m LaunchDbSystemFromBackupDetails) GetNodeCount() *int { return m.NodeCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m LaunchDbSystemFromBackupDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m LaunchDbSystemFromBackupDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateIp returns PrivateIp +// GetPrivateIp returns PrivateIp func (m LaunchDbSystemFromBackupDetails) GetPrivateIp() *string { return m.PrivateIp } -//GetDataCollectionOptions returns DataCollectionOptions +// GetDataCollectionOptions returns DataCollectionOptions func (m LaunchDbSystemFromBackupDetails) GetDataCollectionOptions() *DataCollectionOptions { return m.DataCollectionOptions } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_database_details.go index 329fe22b87a..3522eff2742 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_database_details.go @@ -161,137 +161,137 @@ type LaunchDbSystemFromDatabaseDetails struct { StorageVolumePerformanceMode LaunchDbSystemBaseStorageVolumePerformanceModeEnum `mandatory:"false" json:"storageVolumePerformanceMode,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m LaunchDbSystemFromDatabaseDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFaultDomains returns FaultDomains +// GetFaultDomains returns FaultDomains func (m LaunchDbSystemFromDatabaseDetails) GetFaultDomains() []string { return m.FaultDomains } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m LaunchDbSystemFromDatabaseDetails) GetDisplayName() *string { return m.DisplayName } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m LaunchDbSystemFromDatabaseDetails) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m LaunchDbSystemFromDatabaseDetails) GetSubnetId() *string { return m.SubnetId } -//GetBackupSubnetId returns BackupSubnetId +// GetBackupSubnetId returns BackupSubnetId func (m LaunchDbSystemFromDatabaseDetails) GetBackupSubnetId() *string { return m.BackupSubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m LaunchDbSystemFromDatabaseDetails) GetNsgIds() []string { return m.NsgIds } -//GetBackupNetworkNsgIds returns BackupNetworkNsgIds +// GetBackupNetworkNsgIds returns BackupNetworkNsgIds func (m LaunchDbSystemFromDatabaseDetails) GetBackupNetworkNsgIds() []string { return m.BackupNetworkNsgIds } -//GetShape returns Shape +// GetShape returns Shape func (m LaunchDbSystemFromDatabaseDetails) GetShape() *string { return m.Shape } -//GetTimeZone returns TimeZone +// GetTimeZone returns TimeZone func (m LaunchDbSystemFromDatabaseDetails) GetTimeZone() *string { return m.TimeZone } -//GetDbSystemOptions returns DbSystemOptions +// GetDbSystemOptions returns DbSystemOptions func (m LaunchDbSystemFromDatabaseDetails) GetDbSystemOptions() *DbSystemOptions { return m.DbSystemOptions } -//GetStorageVolumePerformanceMode returns StorageVolumePerformanceMode +// GetStorageVolumePerformanceMode returns StorageVolumePerformanceMode func (m LaunchDbSystemFromDatabaseDetails) GetStorageVolumePerformanceMode() LaunchDbSystemBaseStorageVolumePerformanceModeEnum { return m.StorageVolumePerformanceMode } -//GetSparseDiskgroup returns SparseDiskgroup +// GetSparseDiskgroup returns SparseDiskgroup func (m LaunchDbSystemFromDatabaseDetails) GetSparseDiskgroup() *bool { return m.SparseDiskgroup } -//GetSshPublicKeys returns SshPublicKeys +// GetSshPublicKeys returns SshPublicKeys func (m LaunchDbSystemFromDatabaseDetails) GetSshPublicKeys() []string { return m.SshPublicKeys } -//GetHostname returns Hostname +// GetHostname returns Hostname func (m LaunchDbSystemFromDatabaseDetails) GetHostname() *string { return m.Hostname } -//GetDomain returns Domain +// GetDomain returns Domain func (m LaunchDbSystemFromDatabaseDetails) GetDomain() *string { return m.Domain } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m LaunchDbSystemFromDatabaseDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetClusterName returns ClusterName +// GetClusterName returns ClusterName func (m LaunchDbSystemFromDatabaseDetails) GetClusterName() *string { return m.ClusterName } -//GetDataStoragePercentage returns DataStoragePercentage +// GetDataStoragePercentage returns DataStoragePercentage func (m LaunchDbSystemFromDatabaseDetails) GetDataStoragePercentage() *int { return m.DataStoragePercentage } -//GetInitialDataStorageSizeInGB returns InitialDataStorageSizeInGB +// GetInitialDataStorageSizeInGB returns InitialDataStorageSizeInGB func (m LaunchDbSystemFromDatabaseDetails) GetInitialDataStorageSizeInGB() *int { return m.InitialDataStorageSizeInGB } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m LaunchDbSystemFromDatabaseDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m LaunchDbSystemFromDatabaseDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } -//GetNodeCount returns NodeCount +// GetNodeCount returns NodeCount func (m LaunchDbSystemFromDatabaseDetails) GetNodeCount() *int { return m.NodeCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m LaunchDbSystemFromDatabaseDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m LaunchDbSystemFromDatabaseDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateIp returns PrivateIp +// GetPrivateIp returns PrivateIp func (m LaunchDbSystemFromDatabaseDetails) GetPrivateIp() *string { return m.PrivateIp } -//GetDataCollectionOptions returns DataCollectionOptions +// GetDataCollectionOptions returns DataCollectionOptions func (m LaunchDbSystemFromDatabaseDetails) GetDataCollectionOptions() *DataCollectionOptions { return m.DataCollectionOptions } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_db_system_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_db_system_details.go index 738cf02696e..0849fbd8532 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_db_system_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/launch_db_system_from_db_system_details.go @@ -155,137 +155,137 @@ type LaunchDbSystemFromDbSystemDetails struct { StorageVolumePerformanceMode LaunchDbSystemBaseStorageVolumePerformanceModeEnum `mandatory:"false" json:"storageVolumePerformanceMode,omitempty"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m LaunchDbSystemFromDbSystemDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFaultDomains returns FaultDomains +// GetFaultDomains returns FaultDomains func (m LaunchDbSystemFromDbSystemDetails) GetFaultDomains() []string { return m.FaultDomains } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m LaunchDbSystemFromDbSystemDetails) GetDisplayName() *string { return m.DisplayName } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m LaunchDbSystemFromDbSystemDetails) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m LaunchDbSystemFromDbSystemDetails) GetSubnetId() *string { return m.SubnetId } -//GetBackupSubnetId returns BackupSubnetId +// GetBackupSubnetId returns BackupSubnetId func (m LaunchDbSystemFromDbSystemDetails) GetBackupSubnetId() *string { return m.BackupSubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m LaunchDbSystemFromDbSystemDetails) GetNsgIds() []string { return m.NsgIds } -//GetBackupNetworkNsgIds returns BackupNetworkNsgIds +// GetBackupNetworkNsgIds returns BackupNetworkNsgIds func (m LaunchDbSystemFromDbSystemDetails) GetBackupNetworkNsgIds() []string { return m.BackupNetworkNsgIds } -//GetShape returns Shape +// GetShape returns Shape func (m LaunchDbSystemFromDbSystemDetails) GetShape() *string { return m.Shape } -//GetTimeZone returns TimeZone +// GetTimeZone returns TimeZone func (m LaunchDbSystemFromDbSystemDetails) GetTimeZone() *string { return m.TimeZone } -//GetDbSystemOptions returns DbSystemOptions +// GetDbSystemOptions returns DbSystemOptions func (m LaunchDbSystemFromDbSystemDetails) GetDbSystemOptions() *DbSystemOptions { return m.DbSystemOptions } -//GetStorageVolumePerformanceMode returns StorageVolumePerformanceMode +// GetStorageVolumePerformanceMode returns StorageVolumePerformanceMode func (m LaunchDbSystemFromDbSystemDetails) GetStorageVolumePerformanceMode() LaunchDbSystemBaseStorageVolumePerformanceModeEnum { return m.StorageVolumePerformanceMode } -//GetSparseDiskgroup returns SparseDiskgroup +// GetSparseDiskgroup returns SparseDiskgroup func (m LaunchDbSystemFromDbSystemDetails) GetSparseDiskgroup() *bool { return m.SparseDiskgroup } -//GetSshPublicKeys returns SshPublicKeys +// GetSshPublicKeys returns SshPublicKeys func (m LaunchDbSystemFromDbSystemDetails) GetSshPublicKeys() []string { return m.SshPublicKeys } -//GetHostname returns Hostname +// GetHostname returns Hostname func (m LaunchDbSystemFromDbSystemDetails) GetHostname() *string { return m.Hostname } -//GetDomain returns Domain +// GetDomain returns Domain func (m LaunchDbSystemFromDbSystemDetails) GetDomain() *string { return m.Domain } -//GetCpuCoreCount returns CpuCoreCount +// GetCpuCoreCount returns CpuCoreCount func (m LaunchDbSystemFromDbSystemDetails) GetCpuCoreCount() *int { return m.CpuCoreCount } -//GetClusterName returns ClusterName +// GetClusterName returns ClusterName func (m LaunchDbSystemFromDbSystemDetails) GetClusterName() *string { return m.ClusterName } -//GetDataStoragePercentage returns DataStoragePercentage +// GetDataStoragePercentage returns DataStoragePercentage func (m LaunchDbSystemFromDbSystemDetails) GetDataStoragePercentage() *int { return m.DataStoragePercentage } -//GetInitialDataStorageSizeInGB returns InitialDataStorageSizeInGB +// GetInitialDataStorageSizeInGB returns InitialDataStorageSizeInGB func (m LaunchDbSystemFromDbSystemDetails) GetInitialDataStorageSizeInGB() *int { return m.InitialDataStorageSizeInGB } -//GetKmsKeyId returns KmsKeyId +// GetKmsKeyId returns KmsKeyId func (m LaunchDbSystemFromDbSystemDetails) GetKmsKeyId() *string { return m.KmsKeyId } -//GetKmsKeyVersionId returns KmsKeyVersionId +// GetKmsKeyVersionId returns KmsKeyVersionId func (m LaunchDbSystemFromDbSystemDetails) GetKmsKeyVersionId() *string { return m.KmsKeyVersionId } -//GetNodeCount returns NodeCount +// GetNodeCount returns NodeCount func (m LaunchDbSystemFromDbSystemDetails) GetNodeCount() *int { return m.NodeCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m LaunchDbSystemFromDbSystemDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m LaunchDbSystemFromDbSystemDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetPrivateIp returns PrivateIp +// GetPrivateIp returns PrivateIp func (m LaunchDbSystemFromDbSystemDetails) GetPrivateIp() *string { return m.PrivateIp } -//GetDataCollectionOptions returns DataCollectionOptions +// GetDataCollectionOptions returns DataCollectionOptions func (m LaunchDbSystemFromDbSystemDetails) GetDataCollectionOptions() *DataCollectionOptions { return m.DataCollectionOptions } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/database/update_external_macs_connector_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/database/update_external_macs_connector_details.go index 49244e0fae1..9f6aa8c122f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/database/update_external_macs_connector_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/database/update_external_macs_connector_details.go @@ -39,17 +39,17 @@ type UpdateExternalMacsConnectorDetails struct { ConnectionCredentials DatabaseConnectionCredentials `mandatory:"false" json:"connectionCredentials"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateExternalMacsConnectorDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateExternalMacsConnectorDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateExternalMacsConnectorDetails) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_collection.go index a938572433c..2d2a3cba526 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_collection.go @@ -37,22 +37,22 @@ type AwrDbCollection struct { Items []AwrDbSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_cpu_usage_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_cpu_usage_collection.go index f0ba59722ec..9adba355180 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_cpu_usage_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_cpu_usage_collection.go @@ -46,22 +46,22 @@ type AwrDbCpuUsageCollection struct { Items []AwrDbCpuUsageSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbCpuUsageCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbCpuUsageCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbCpuUsageCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbCpuUsageCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_metric_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_metric_collection.go index 4734fdb3d38..23fd59a5a77 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_metric_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_metric_collection.go @@ -37,22 +37,22 @@ type AwrDbMetricCollection struct { Items []AwrDbMetricSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbMetricCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbMetricCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbMetricCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbMetricCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_parameter_change_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_parameter_change_collection.go index eb9d23e7ea2..c2acea2e784 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_parameter_change_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_parameter_change_collection.go @@ -37,22 +37,22 @@ type AwrDbParameterChangeCollection struct { Items []AwrDbParameterChangeSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbParameterChangeCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbParameterChangeCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbParameterChangeCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbParameterChangeCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_parameter_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_parameter_collection.go index adb6792d020..0fb67427352 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_parameter_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_parameter_collection.go @@ -37,22 +37,22 @@ type AwrDbParameterCollection struct { Items []AwrDbParameterSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbParameterCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbParameterCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbParameterCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbParameterCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_report.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_report.go index 0639c5be09e..90c187e09d0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_report.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_report.go @@ -40,22 +40,22 @@ type AwrDbReport struct { Format AwrDbReportFormatEnum `mandatory:"false" json:"format,omitempty"` } -//GetName returns Name +// GetName returns Name func (m AwrDbReport) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbReport) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbReport) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbReport) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_snapshot_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_snapshot_collection.go index 87696740998..dbc0c201de8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_snapshot_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_snapshot_collection.go @@ -37,22 +37,22 @@ type AwrDbSnapshotCollection struct { Items []AwrDbSnapshotSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbSnapshotCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbSnapshotCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbSnapshotCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbSnapshotCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_snapshot_range_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_snapshot_range_collection.go index 2622655439b..df9650338f0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_snapshot_range_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_snapshot_range_collection.go @@ -37,22 +37,22 @@ type AwrDbSnapshotRangeCollection struct { Items []AwrDbSnapshotRangeSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbSnapshotRangeCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbSnapshotRangeCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbSnapshotRangeCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbSnapshotRangeCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_sql_report.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_sql_report.go index 57a91c4493e..1584e354eb4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_sql_report.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_sql_report.go @@ -40,22 +40,22 @@ type AwrDbSqlReport struct { Format AwrDbSqlReportFormatEnum `mandatory:"false" json:"format,omitempty"` } -//GetName returns Name +// GetName returns Name func (m AwrDbSqlReport) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbSqlReport) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbSqlReport) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbSqlReport) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_sysstat_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_sysstat_collection.go index 46e9b9d2aea..68372d88135 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_sysstat_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_sysstat_collection.go @@ -37,22 +37,22 @@ type AwrDbSysstatCollection struct { Items []AwrDbSysstatSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbSysstatCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbSysstatCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbSysstatCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbSysstatCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_top_wait_event_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_top_wait_event_collection.go index 384237b1ee8..b281d4e5b27 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_top_wait_event_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_top_wait_event_collection.go @@ -37,22 +37,22 @@ type AwrDbTopWaitEventCollection struct { Items []AwrDbTopWaitEventSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbTopWaitEventCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbTopWaitEventCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbTopWaitEventCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbTopWaitEventCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_wait_event_bucket_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_wait_event_bucket_collection.go index d483e2b9686..71e400129af 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_wait_event_bucket_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_wait_event_bucket_collection.go @@ -40,22 +40,22 @@ type AwrDbWaitEventBucketCollection struct { Items []AwrDbWaitEventBucketSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbWaitEventBucketCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbWaitEventBucketCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbWaitEventBucketCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbWaitEventBucketCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_wait_event_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_wait_event_collection.go index 3fcd5e77ea6..04b2a51a1ef 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_wait_event_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/awr_db_wait_event_collection.go @@ -37,22 +37,22 @@ type AwrDbWaitEventCollection struct { Items []AwrDbWaitEventSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDbWaitEventCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDbWaitEventCollection) GetVersion() *string { return m.Version } -//GetQueryKey returns QueryKey +// GetQueryKey returns QueryKey func (m AwrDbWaitEventCollection) GetQueryKey() *string { return m.QueryKey } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDbWaitEventCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/basic_preferred_credential.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/basic_preferred_credential.go index a19247c7f62..faa4314b212 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/basic_preferred_credential.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/basic_preferred_credential.go @@ -40,17 +40,17 @@ type BasicPreferredCredential struct { Role RoleEnum `mandatory:"false" json:"role,omitempty"` } -//GetCredentialName returns CredentialName +// GetCredentialName returns CredentialName func (m BasicPreferredCredential) GetCredentialName() *string { return m.CredentialName } -//GetStatus returns Status +// GetStatus returns Status func (m BasicPreferredCredential) GetStatus() PreferredCredentialStatusEnum { return m.Status } -//GetIsAccessible returns IsAccessible +// GetIsAccessible returns IsAccessible func (m BasicPreferredCredential) GetIsAccessible() *bool { return m.IsAccessible } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/create_external_db_system_macs_connector_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/create_external_db_system_macs_connector_details.go index 14250fd6990..956dbc76475 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/create_external_db_system_macs_connector_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/create_external_db_system_macs_connector_details.go @@ -35,12 +35,12 @@ type CreateExternalDbSystemMacsConnectorDetails struct { ConnectionInfo ExternalDbSystemConnectionInfo `mandatory:"false" json:"connectionInfo"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateExternalDbSystemMacsConnectorDetails) GetDisplayName() *string { return m.DisplayName } -//GetExternalDbSystemId returns ExternalDbSystemId +// GetExternalDbSystemId returns ExternalDbSystemId func (m CreateExternalDbSystemMacsConnectorDetails) GetExternalDbSystemId() *string { return m.ExternalDbSystemId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/create_sql_job_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/create_sql_job_details.go index 66c66042bce..0ef9ca6d8a5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/create_sql_job_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/create_sql_job_details.go @@ -78,52 +78,52 @@ type CreateSqlJobDetails struct { Role SqlJobRoleEnum `mandatory:"false" json:"role,omitempty"` } -//GetName returns Name +// GetName returns Name func (m CreateSqlJobDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateSqlJobDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateSqlJobDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetManagedDatabaseGroupId returns ManagedDatabaseGroupId +// GetManagedDatabaseGroupId returns ManagedDatabaseGroupId func (m CreateSqlJobDetails) GetManagedDatabaseGroupId() *string { return m.ManagedDatabaseGroupId } -//GetManagedDatabaseId returns ManagedDatabaseId +// GetManagedDatabaseId returns ManagedDatabaseId func (m CreateSqlJobDetails) GetManagedDatabaseId() *string { return m.ManagedDatabaseId } -//GetDatabaseSubType returns DatabaseSubType +// GetDatabaseSubType returns DatabaseSubType func (m CreateSqlJobDetails) GetDatabaseSubType() DatabaseSubTypeEnum { return m.DatabaseSubType } -//GetScheduleType returns ScheduleType +// GetScheduleType returns ScheduleType func (m CreateSqlJobDetails) GetScheduleType() JobScheduleTypeEnum { return m.ScheduleType } -//GetTimeout returns Timeout +// GetTimeout returns Timeout func (m CreateSqlJobDetails) GetTimeout() *string { return m.Timeout } -//GetResultLocation returns ResultLocation +// GetResultLocation returns ResultLocation func (m CreateSqlJobDetails) GetResultLocation() JobExecutionResultLocation { return m.ResultLocation } -//GetScheduleDetails returns ScheduleDetails +// GetScheduleDetails returns ScheduleDetails func (m CreateSqlJobDetails) GetScheduleDetails() *JobScheduleDetails { return m.ScheduleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_dbmanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_dbmanagement_client.go index 774401e1539..61746cf6295 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_dbmanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_dbmanagement_client.go @@ -95,7 +95,7 @@ func (client *DbManagementClient) ConfigurationProvider() *common.ConfigurationP // AddDataFiles Adds data files or temp files to the tablespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/AddDataFiles.go.html to see an example of how to use AddDataFiles API. func (client DbManagementClient) AddDataFiles(ctx context.Context, request AddDataFilesRequest) (response AddDataFilesResponse, err error) { @@ -159,7 +159,7 @@ func (client DbManagementClient) addDataFiles(ctx context.Context, request commo // After the database is added, it will be included in the // management activities performed on the Managed Database Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/AddManagedDatabaseToManagedDatabaseGroup.go.html to see an example of how to use AddManagedDatabaseToManagedDatabaseGroup API. func (client DbManagementClient) AddManagedDatabaseToManagedDatabaseGroup(ctx context.Context, request AddManagedDatabaseToManagedDatabaseGroupRequest) (response AddManagedDatabaseToManagedDatabaseGroupResponse, err error) { @@ -222,7 +222,7 @@ func (client DbManagementClient) addManagedDatabaseToManagedDatabaseGroup(ctx co // AddmTasks Lists the metadata for each ADDM task who's end snapshot time falls within the provided start and end time. Details include // the name of the ADDM task, description, user, status and creation date time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/AddmTasks.go.html to see an example of how to use AddmTasks API. func (client DbManagementClient) AddmTasks(ctx context.Context, request AddmTasksRequest) (response AddmTasksResponse, err error) { @@ -289,7 +289,7 @@ func (client DbManagementClient) addmTasks(ctx context.Context, request common.O // current instance. You must update them manually to be passed to // a future instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ChangeDatabaseParameters.go.html to see an example of how to use ChangeDatabaseParameters API. func (client DbManagementClient) ChangeDatabaseParameters(ctx context.Context, request ChangeDatabaseParametersRequest) (response ChangeDatabaseParametersResponse, err error) { @@ -351,7 +351,7 @@ func (client DbManagementClient) changeDatabaseParameters(ctx context.Context, r // ChangeDbManagementPrivateEndpointCompartment Moves the Database Management private endpoint and its dependent resources to the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ChangeDbManagementPrivateEndpointCompartment.go.html to see an example of how to use ChangeDbManagementPrivateEndpointCompartment API. func (client DbManagementClient) ChangeDbManagementPrivateEndpointCompartment(ctx context.Context, request ChangeDbManagementPrivateEndpointCompartmentRequest) (response ChangeDbManagementPrivateEndpointCompartmentResponse, err error) { @@ -413,7 +413,7 @@ func (client DbManagementClient) changeDbManagementPrivateEndpointCompartment(ct // ChangeExternalDbSystemCompartment Moves the external DB system and its related resources (excluding databases) to the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ChangeExternalDbSystemCompartment.go.html to see an example of how to use ChangeExternalDbSystemCompartment API. // A default retry strategy applies to this operation ChangeExternalDbSystemCompartment() @@ -476,7 +476,7 @@ func (client DbManagementClient) changeExternalDbSystemCompartment(ctx context.C // ChangeExternalExadataInfrastructureCompartment Moves the Exadata infrastructure and its related resources (Exadata storage server, Exadata storage server connectors and Exadata storage server grid) to the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ChangeExternalExadataInfrastructureCompartment.go.html to see an example of how to use ChangeExternalExadataInfrastructureCompartment API. // A default retry strategy applies to this operation ChangeExternalExadataInfrastructureCompartment() @@ -539,7 +539,7 @@ func (client DbManagementClient) changeExternalExadataInfrastructureCompartment( // ChangeJobCompartment Moves a job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ChangeJobCompartment.go.html to see an example of how to use ChangeJobCompartment API. func (client DbManagementClient) ChangeJobCompartment(ctx context.Context, request ChangeJobCompartmentRequest) (response ChangeJobCompartmentResponse, err error) { @@ -603,7 +603,7 @@ func (client DbManagementClient) changeJobCompartment(ctx context.Context, reque // The destination compartment must not have a Managed Database Group // with the same name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ChangeManagedDatabaseGroupCompartment.go.html to see an example of how to use ChangeManagedDatabaseGroupCompartment API. func (client DbManagementClient) ChangeManagedDatabaseGroupCompartment(ctx context.Context, request ChangeManagedDatabaseGroupCompartmentRequest) (response ChangeManagedDatabaseGroupCompartmentResponse, err error) { @@ -668,7 +668,7 @@ func (client DbManagementClient) changeManagedDatabaseGroupCompartment(ctx conte // The database purges plans that have not been used for longer than // the plan retention period. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ChangePlanRetention.go.html to see an example of how to use ChangePlanRetention API. func (client DbManagementClient) ChangePlanRetention(ctx context.Context, request ChangePlanRetentionRequest) (response ChangePlanRetentionResponse, err error) { @@ -726,7 +726,7 @@ func (client DbManagementClient) changePlanRetention(ctx context.Context, reques // ChangeSpaceBudget Changes the disk space limit for the SQL Management Base. The allowable // range for this limit is between 1% and 50%. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ChangeSpaceBudget.go.html to see an example of how to use ChangeSpaceBudget API. func (client DbManagementClient) ChangeSpaceBudget(ctx context.Context, request ChangeSpaceBudgetRequest) (response ChangeSpaceBudgetResponse, err error) { @@ -783,7 +783,7 @@ func (client DbManagementClient) changeSpaceBudget(ctx context.Context, request // ChangeSqlPlanBaselinesAttributes Changes one or more attributes of a single plan or all plans associated with a SQL statement. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ChangeSqlPlanBaselinesAttributes.go.html to see an example of how to use ChangeSqlPlanBaselinesAttributes API. func (client DbManagementClient) ChangeSqlPlanBaselinesAttributes(ctx context.Context, request ChangeSqlPlanBaselinesAttributesRequest) (response ChangeSqlPlanBaselinesAttributesResponse, err error) { @@ -841,7 +841,7 @@ func (client DbManagementClient) changeSqlPlanBaselinesAttributes(ctx context.Co // CheckExternalDbSystemConnectorConnectionStatus Checks the status of the external DB system component connection specified in this connector. // This operation will refresh the connectionStatus and timeConnectionStatusLastUpdated fields. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CheckExternalDbSystemConnectorConnectionStatus.go.html to see an example of how to use CheckExternalDbSystemConnectorConnectionStatus API. // A default retry strategy applies to this operation CheckExternalDbSystemConnectorConnectionStatus() @@ -904,7 +904,7 @@ func (client DbManagementClient) checkExternalDbSystemConnectorConnectionStatus( // CheckExternalExadataStorageConnector Checks the status of the Exadata storage server connection specified by exadataStorageConnectorId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CheckExternalExadataStorageConnector.go.html to see an example of how to use CheckExternalExadataStorageConnector API. // A default retry strategy applies to this operation CheckExternalExadataStorageConnector() @@ -968,7 +968,7 @@ func (client DbManagementClient) checkExternalExadataStorageConnector(ctx contex // ConfigureAutomaticCaptureFilters Configures automatic capture filters to capture only those statements // that match the filter criteria. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ConfigureAutomaticCaptureFilters.go.html to see an example of how to use ConfigureAutomaticCaptureFilters API. func (client DbManagementClient) ConfigureAutomaticCaptureFilters(ctx context.Context, request ConfigureAutomaticCaptureFiltersRequest) (response ConfigureAutomaticCaptureFiltersResponse, err error) { @@ -1027,7 +1027,7 @@ func (client DbManagementClient) configureAutomaticCaptureFilters(ctx context.Co // by specifying task parameters. As the task is owned by `SYS`, only `SYS` can // set task parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ConfigureAutomaticSpmEvolveAdvisorTask.go.html to see an example of how to use ConfigureAutomaticSpmEvolveAdvisorTask API. func (client DbManagementClient) ConfigureAutomaticSpmEvolveAdvisorTask(ctx context.Context, request ConfigureAutomaticSpmEvolveAdvisorTaskRequest) (response ConfigureAutomaticSpmEvolveAdvisorTaskResponse, err error) { @@ -1084,7 +1084,7 @@ func (client DbManagementClient) configureAutomaticSpmEvolveAdvisorTask(ctx cont // CreateDbManagementPrivateEndpoint Creates a new Database Management private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateDbManagementPrivateEndpoint.go.html to see an example of how to use CreateDbManagementPrivateEndpoint API. func (client DbManagementClient) CreateDbManagementPrivateEndpoint(ctx context.Context, request CreateDbManagementPrivateEndpointRequest) (response CreateDbManagementPrivateEndpointResponse, err error) { @@ -1146,7 +1146,7 @@ func (client DbManagementClient) createDbManagementPrivateEndpoint(ctx context.C // CreateExternalDbSystem Creates an external DB system and its related resources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateExternalDbSystem.go.html to see an example of how to use CreateExternalDbSystem API. // A default retry strategy applies to this operation CreateExternalDbSystem() @@ -1209,7 +1209,7 @@ func (client DbManagementClient) createExternalDbSystem(ctx context.Context, req // CreateExternalDbSystemConnector Creates a new external connector. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateExternalDbSystemConnector.go.html to see an example of how to use CreateExternalDbSystemConnector API. // A default retry strategy applies to this operation CreateExternalDbSystemConnector() @@ -1272,7 +1272,7 @@ func (client DbManagementClient) createExternalDbSystemConnector(ctx context.Con // CreateExternalDbSystemDiscovery Creates an external DB system discovery resource and initiates the discovery process. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateExternalDbSystemDiscovery.go.html to see an example of how to use CreateExternalDbSystemDiscovery API. // A default retry strategy applies to this operation CreateExternalDbSystemDiscovery() @@ -1335,12 +1335,13 @@ func (client DbManagementClient) createExternalDbSystemDiscovery(ctx context.Con // CreateExternalExadataInfrastructure Creates an OCI resource for the Exadata infrastructure and enables the Monitoring service for the Exadata infrastructure. // The following resource/subresources are created: -// Infrastructure -// Storage server connectors -// Storage servers -// Storage grids // -// See also +// Infrastructure +// Storage server connectors +// Storage servers +// Storage grids +// +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateExternalExadataInfrastructure.go.html to see an example of how to use CreateExternalExadataInfrastructure API. // A default retry strategy applies to this operation CreateExternalExadataInfrastructure() @@ -1403,7 +1404,7 @@ func (client DbManagementClient) createExternalExadataInfrastructure(ctx context // CreateExternalExadataStorageConnector Creates the Exadata storage server connector after validating the connection information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateExternalExadataStorageConnector.go.html to see an example of how to use CreateExternalExadataStorageConnector API. // A default retry strategy applies to this operation CreateExternalExadataStorageConnector() @@ -1468,7 +1469,7 @@ func (client DbManagementClient) createExternalExadataStorageConnector(ctx conte // of the parameters, managedDatabaseId or managedDatabaseGroupId should be provided as // input in CreateJobDetails resource in request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateJob.go.html to see an example of how to use CreateJob API. func (client DbManagementClient) CreateJob(ctx context.Context, request CreateJobRequest) (response CreateJobResponse, err error) { @@ -1531,7 +1532,7 @@ func (client DbManagementClient) createJob(ctx context.Context, request common.O // CreateManagedDatabaseGroup Creates a Managed Database Group. The group does not contain any // Managed Databases when it is created, and they must be added later. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateManagedDatabaseGroup.go.html to see an example of how to use CreateManagedDatabaseGroup API. func (client DbManagementClient) CreateManagedDatabaseGroup(ctx context.Context, request CreateManagedDatabaseGroupRequest) (response CreateManagedDatabaseGroupResponse, err error) { @@ -1593,7 +1594,7 @@ func (client DbManagementClient) createManagedDatabaseGroup(ctx context.Context, // CreateTablespace Creates a tablespace within the Managed Database specified by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateTablespace.go.html to see an example of how to use CreateTablespace API. func (client DbManagementClient) CreateTablespace(ctx context.Context, request CreateTablespaceRequest) (response CreateTablespaceResponse, err error) { @@ -1655,7 +1656,7 @@ func (client DbManagementClient) createTablespace(ctx context.Context, request c // DeleteDbManagementPrivateEndpoint Deletes a specific Database Management private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DeleteDbManagementPrivateEndpoint.go.html to see an example of how to use DeleteDbManagementPrivateEndpoint API. func (client DbManagementClient) DeleteDbManagementPrivateEndpoint(ctx context.Context, request DeleteDbManagementPrivateEndpointRequest) (response DeleteDbManagementPrivateEndpointResponse, err error) { @@ -1712,7 +1713,7 @@ func (client DbManagementClient) deleteDbManagementPrivateEndpoint(ctx context.C // DeleteExternalDbSystem Deletes the external DB system specified by `externalDbSystemId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DeleteExternalDbSystem.go.html to see an example of how to use DeleteExternalDbSystem API. func (client DbManagementClient) DeleteExternalDbSystem(ctx context.Context, request DeleteExternalDbSystemRequest) (response DeleteExternalDbSystemResponse, err error) { @@ -1769,7 +1770,7 @@ func (client DbManagementClient) deleteExternalDbSystem(ctx context.Context, req // DeleteExternalDbSystemConnector Deletes the external connector specified by `externalDbSystemConnectorId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DeleteExternalDbSystemConnector.go.html to see an example of how to use DeleteExternalDbSystemConnector API. func (client DbManagementClient) DeleteExternalDbSystemConnector(ctx context.Context, request DeleteExternalDbSystemConnectorRequest) (response DeleteExternalDbSystemConnectorResponse, err error) { @@ -1826,7 +1827,7 @@ func (client DbManagementClient) deleteExternalDbSystemConnector(ctx context.Con // DeleteExternalDbSystemDiscovery Deletes the external DB system discovery resource specified by `externalDbSystemDiscoveryId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DeleteExternalDbSystemDiscovery.go.html to see an example of how to use DeleteExternalDbSystemDiscovery API. func (client DbManagementClient) DeleteExternalDbSystemDiscovery(ctx context.Context, request DeleteExternalDbSystemDiscoveryRequest) (response DeleteExternalDbSystemDiscoveryResponse, err error) { @@ -1883,7 +1884,7 @@ func (client DbManagementClient) deleteExternalDbSystemDiscovery(ctx context.Con // DeleteExternalExadataInfrastructure Deletes the Exadata infrastructure specified by externalExadataInfrastructureId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DeleteExternalExadataInfrastructure.go.html to see an example of how to use DeleteExternalExadataInfrastructure API. func (client DbManagementClient) DeleteExternalExadataInfrastructure(ctx context.Context, request DeleteExternalExadataInfrastructureRequest) (response DeleteExternalExadataInfrastructureResponse, err error) { @@ -1940,7 +1941,7 @@ func (client DbManagementClient) deleteExternalExadataInfrastructure(ctx context // DeleteExternalExadataStorageConnector Deletes the Exadata storage server connector specified by exadataStorageConnectorId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DeleteExternalExadataStorageConnector.go.html to see an example of how to use DeleteExternalExadataStorageConnector API. func (client DbManagementClient) DeleteExternalExadataStorageConnector(ctx context.Context, request DeleteExternalExadataStorageConnectorRequest) (response DeleteExternalExadataStorageConnectorResponse, err error) { @@ -1997,7 +1998,7 @@ func (client DbManagementClient) deleteExternalExadataStorageConnector(ctx conte // DeleteJob Deletes the job specified by jobId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DeleteJob.go.html to see an example of how to use DeleteJob API. func (client DbManagementClient) DeleteJob(ctx context.Context, request DeleteJobRequest) (response DeleteJobResponse, err error) { @@ -2055,7 +2056,7 @@ func (client DbManagementClient) deleteJob(ctx context.Context, request common.O // DeleteManagedDatabaseGroup Deletes the Managed Database Group specified by managedDatabaseGroupId. // If the group contains Managed Databases, then it cannot be deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DeleteManagedDatabaseGroup.go.html to see an example of how to use DeleteManagedDatabaseGroup API. func (client DbManagementClient) DeleteManagedDatabaseGroup(ctx context.Context, request DeleteManagedDatabaseGroupRequest) (response DeleteManagedDatabaseGroupResponse, err error) { @@ -2112,7 +2113,7 @@ func (client DbManagementClient) deleteManagedDatabaseGroup(ctx context.Context, // DeletePreferredCredential Deletes the preferred credential based on the credentialName. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DeletePreferredCredential.go.html to see an example of how to use DeletePreferredCredential API. func (client DbManagementClient) DeletePreferredCredential(ctx context.Context, request DeletePreferredCredentialRequest) (response DeletePreferredCredentialResponse, err error) { @@ -2169,7 +2170,7 @@ func (client DbManagementClient) deletePreferredCredential(ctx context.Context, // DisableAutomaticInitialPlanCapture Disables automatic initial plan capture. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DisableAutomaticInitialPlanCapture.go.html to see an example of how to use DisableAutomaticInitialPlanCapture API. func (client DbManagementClient) DisableAutomaticInitialPlanCapture(ctx context.Context, request DisableAutomaticInitialPlanCaptureRequest) (response DisableAutomaticInitialPlanCaptureResponse, err error) { @@ -2228,7 +2229,7 @@ func (client DbManagementClient) disableAutomaticInitialPlanCapture(ctx context. // One client controls both Automatic SQL Tuning Advisor and Automatic SPM Evolve Advisor. // Thus, the same task enables or disables both. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DisableAutomaticSpmEvolveAdvisorTask.go.html to see an example of how to use DisableAutomaticSpmEvolveAdvisorTask API. func (client DbManagementClient) DisableAutomaticSpmEvolveAdvisorTask(ctx context.Context, request DisableAutomaticSpmEvolveAdvisorTaskRequest) (response DisableAutomaticSpmEvolveAdvisorTaskResponse, err error) { @@ -2286,7 +2287,7 @@ func (client DbManagementClient) disableAutomaticSpmEvolveAdvisorTask(ctx contex // DisableExternalDbSystemDatabaseManagement Disables Database Management service for all the components of the specified // external DB system (except databases). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DisableExternalDbSystemDatabaseManagement.go.html to see an example of how to use DisableExternalDbSystemDatabaseManagement API. // A default retry strategy applies to this operation DisableExternalDbSystemDatabaseManagement() @@ -2350,7 +2351,7 @@ func (client DbManagementClient) disableExternalDbSystemDatabaseManagement(ctx c // DisableExternalDbSystemStackMonitoring Disables Stack Monitoring for all the components of the specified // external DB system (except databases). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DisableExternalDbSystemStackMonitoring.go.html to see an example of how to use DisableExternalDbSystemStackMonitoring API. // A default retry strategy applies to this operation DisableExternalDbSystemStackMonitoring() @@ -2418,7 +2419,7 @@ func (client DbManagementClient) disableExternalDbSystemStackMonitoring(ctx cont // - Exadata storage server // Note that Database Management will not be disabled for the DB systems within the Exadata infrastructure and should be disabled explicitly, if required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DisableExternalExadataInfrastructureManagement.go.html to see an example of how to use DisableExternalExadataInfrastructureManagement API. // A default retry strategy applies to this operation DisableExternalExadataInfrastructureManagement() @@ -2483,7 +2484,7 @@ func (client DbManagementClient) disableExternalExadataInfrastructureManagement( // It is available only on Oracle Exadata Database Machine, Oracle Database Exadata // Cloud Service (ExaCS) and Oracle Database Exadata Cloud@Customer (ExaCC). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DisableHighFrequencyAutomaticSpmEvolveAdvisorTask.go.html to see an example of how to use DisableHighFrequencyAutomaticSpmEvolveAdvisorTask API. func (client DbManagementClient) DisableHighFrequencyAutomaticSpmEvolveAdvisorTask(ctx context.Context, request DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest) (response DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse, err error) { @@ -2541,7 +2542,7 @@ func (client DbManagementClient) disableHighFrequencyAutomaticSpmEvolveAdvisorTa // DisableSqlPlanBaselinesUsage Disables the use of SQL plan baselines stored in SQL Management Base. // When disabled, the optimizer does not use any SQL plan baselines. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DisableSqlPlanBaselinesUsage.go.html to see an example of how to use DisableSqlPlanBaselinesUsage API. func (client DbManagementClient) DisableSqlPlanBaselinesUsage(ctx context.Context, request DisableSqlPlanBaselinesUsageRequest) (response DisableSqlPlanBaselinesUsageResponse, err error) { @@ -2607,12 +2608,15 @@ func (client DbManagementClient) disableSqlPlanBaselinesUsage(ctx context.Contex // - Exadata storage grid for all Exadata storage servers // - Exadata infrastructure // The same API covers both new discovery and rediscovery cases. -// For the new discovery case, new managed resources/sub-resources are created or the existing ones are overridden. -// For rediscovery case, the existing managed resources/sub-resources are checked to find out which ones should be added or which ones +// +// For the new discovery case, new managed resources/sub-resources are created or the existing ones are overridden. +// For rediscovery case, the existing managed resources/sub-resources are checked to find out which ones should be added or which ones +// // should be -// removed based on the unique key defined for each resource/sub-resource. // -// See also +// removed based on the unique key defined for each resource/sub-resource. +// +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DiscoverExternalExadataInfrastructure.go.html to see an example of how to use DiscoverExternalExadataInfrastructure API. // A default retry strategy applies to this operation DiscoverExternalExadataInfrastructure() @@ -2675,7 +2679,7 @@ func (client DbManagementClient) discoverExternalExadataInfrastructure(ctx conte // DropSqlPlanBaselines Drops a single plan or all plans associated with a SQL statement. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DropSqlPlanBaselines.go.html to see an example of how to use DropSqlPlanBaselines API. func (client DbManagementClient) DropSqlPlanBaselines(ctx context.Context, request DropSqlPlanBaselinesRequest) (response DropSqlPlanBaselinesResponse, err error) { @@ -2732,7 +2736,7 @@ func (client DbManagementClient) dropSqlPlanBaselines(ctx context.Context, reque // DropTablespace Drops the tablespace specified by tablespaceName within the Managed Database specified by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DropTablespace.go.html to see an example of how to use DropTablespace API. func (client DbManagementClient) DropTablespace(ctx context.Context, request DropTablespaceRequest) (response DropTablespaceResponse, err error) { @@ -2800,7 +2804,7 @@ func (client DbManagementClient) dropTablespace(ctx context.Context, request com // may result in the creation of an extremely large number of plan baselines. To limit // the statements that are eligible for plan baselines, configure filters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/EnableAutomaticInitialPlanCapture.go.html to see an example of how to use EnableAutomaticInitialPlanCapture API. func (client DbManagementClient) EnableAutomaticInitialPlanCapture(ctx context.Context, request EnableAutomaticInitialPlanCaptureRequest) (response EnableAutomaticInitialPlanCaptureResponse, err error) { @@ -2866,7 +2870,7 @@ func (client DbManagementClient) enableAutomaticInitialPlanCapture(ctx context.C // One client controls both Automatic SQL Tuning Advisor and Automatic SPM Evolve Advisor. // Thus, the same task enables or disables both. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/EnableAutomaticSpmEvolveAdvisorTask.go.html to see an example of how to use EnableAutomaticSpmEvolveAdvisorTask API. func (client DbManagementClient) EnableAutomaticSpmEvolveAdvisorTask(ctx context.Context, request EnableAutomaticSpmEvolveAdvisorTaskRequest) (response EnableAutomaticSpmEvolveAdvisorTaskResponse, err error) { @@ -2924,7 +2928,7 @@ func (client DbManagementClient) enableAutomaticSpmEvolveAdvisorTask(ctx context // EnableExternalDbSystemDatabaseManagement Enables Database Management service for all the components of the specified // external DB system (except databases). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/EnableExternalDbSystemDatabaseManagement.go.html to see an example of how to use EnableExternalDbSystemDatabaseManagement API. // A default retry strategy applies to this operation EnableExternalDbSystemDatabaseManagement() @@ -2988,7 +2992,7 @@ func (client DbManagementClient) enableExternalDbSystemDatabaseManagement(ctx co // EnableExternalDbSystemStackMonitoring Enables Stack Monitoring for all the components of the specified // external DB system (except databases). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/EnableExternalDbSystemStackMonitoring.go.html to see an example of how to use EnableExternalDbSystemStackMonitoring API. // A default retry strategy applies to this operation EnableExternalDbSystemStackMonitoring() @@ -3055,7 +3059,7 @@ func (client DbManagementClient) enableExternalDbSystemStackMonitoring(ctx conte // - Exadata storage grid // - Exadata storage server // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/EnableExternalExadataInfrastructureManagement.go.html to see an example of how to use EnableExternalExadataInfrastructureManagement API. // A default retry strategy applies to this operation EnableExternalExadataInfrastructureManagement() @@ -3124,7 +3128,7 @@ func (client DbManagementClient) enableExternalExadataInfrastructureManagement(c // It is available only on Oracle Exadata Database Machine, Oracle Database Exadata // Cloud Service (ExaCS) and Oracle Database Exadata Cloud@Customer (ExaCC). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/EnableHighFrequencyAutomaticSpmEvolveAdvisorTask.go.html to see an example of how to use EnableHighFrequencyAutomaticSpmEvolveAdvisorTask API. func (client DbManagementClient) EnableHighFrequencyAutomaticSpmEvolveAdvisorTask(ctx context.Context, request EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest) (response EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse, err error) { @@ -3183,7 +3187,7 @@ func (client DbManagementClient) enableHighFrequencyAutomaticSpmEvolveAdvisorTas // When enabled, the optimizer uses SQL plan baselines to select plans // to avoid potential performance regressions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/EnableSqlPlanBaselinesUsage.go.html to see an example of how to use EnableSqlPlanBaselinesUsage API. func (client DbManagementClient) EnableSqlPlanBaselinesUsage(ctx context.Context, request EnableSqlPlanBaselinesUsageRequest) (response EnableSqlPlanBaselinesUsageResponse, err error) { @@ -3240,7 +3244,7 @@ func (client DbManagementClient) enableSqlPlanBaselinesUsage(ctx context.Context // GenerateAwrSnapshot Creates an AWR snapshot for the target database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GenerateAwrSnapshot.go.html to see an example of how to use GenerateAwrSnapshot API. func (client DbManagementClient) GenerateAwrSnapshot(ctx context.Context, request GenerateAwrSnapshotRequest) (response GenerateAwrSnapshotResponse, err error) { @@ -3302,7 +3306,7 @@ func (client DbManagementClient) generateAwrSnapshot(ctx context.Context, reques // GetAwrDbReport Gets the AWR report for the specific database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetAwrDbReport.go.html to see an example of how to use GetAwrDbReport API. func (client DbManagementClient) GetAwrDbReport(ctx context.Context, request GetAwrDbReportRequest) (response GetAwrDbReportResponse, err error) { @@ -3364,7 +3368,7 @@ func (client DbManagementClient) getAwrDbReport(ctx context.Context, request com // GetAwrDbSqlReport Gets the SQL health check report for one SQL of the specific database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetAwrDbSqlReport.go.html to see an example of how to use GetAwrDbSqlReport API. func (client DbManagementClient) GetAwrDbSqlReport(ctx context.Context, request GetAwrDbSqlReportRequest) (response GetAwrDbSqlReportResponse, err error) { @@ -3428,7 +3432,7 @@ func (client DbManagementClient) getAwrDbSqlReport(ctx context.Context, request // Real Application Clusters (Oracle RAC) database specified // by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetClusterCacheMetric.go.html to see an example of how to use GetClusterCacheMetric API. func (client DbManagementClient) GetClusterCacheMetric(ctx context.Context, request GetClusterCacheMetricRequest) (response GetClusterCacheMetricResponse, err error) { @@ -3486,7 +3490,7 @@ func (client DbManagementClient) getClusterCacheMetric(ctx context.Context, requ // GetDatabaseFleetHealthMetrics Gets the health metrics for a fleet of databases in a compartment or in a Managed Database Group. // Either the CompartmentId or the ManagedDatabaseGroupId query parameters must be provided to retrieve the health metrics. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetDatabaseFleetHealthMetrics.go.html to see an example of how to use GetDatabaseFleetHealthMetrics API. func (client DbManagementClient) GetDatabaseFleetHealthMetrics(ctx context.Context, request GetDatabaseFleetHealthMetricsRequest) (response GetDatabaseFleetHealthMetricsResponse, err error) { @@ -3543,7 +3547,7 @@ func (client DbManagementClient) getDatabaseFleetHealthMetrics(ctx context.Conte // GetDatabaseHomeMetrics Gets a summary of the activity and resource usage metrics like DB Time, CPU, User I/O, Wait, Storage, and Memory for a Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetDatabaseHomeMetrics.go.html to see an example of how to use GetDatabaseHomeMetrics API. func (client DbManagementClient) GetDatabaseHomeMetrics(ctx context.Context, request GetDatabaseHomeMetricsRequest) (response GetDatabaseHomeMetricsResponse, err error) { @@ -3600,7 +3604,7 @@ func (client DbManagementClient) getDatabaseHomeMetrics(ctx context.Context, req // GetDbManagementPrivateEndpoint Gets the details of a specific Database Management private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetDbManagementPrivateEndpoint.go.html to see an example of how to use GetDbManagementPrivateEndpoint API. func (client DbManagementClient) GetDbManagementPrivateEndpoint(ctx context.Context, request GetDbManagementPrivateEndpointRequest) (response GetDbManagementPrivateEndpointResponse, err error) { @@ -3657,7 +3661,7 @@ func (client DbManagementClient) getDbManagementPrivateEndpoint(ctx context.Cont // GetExternalAsm Gets the details for the external ASM specified by `externalAsmId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalAsm.go.html to see an example of how to use GetExternalAsm API. // A default retry strategy applies to this operation GetExternalAsm() @@ -3715,7 +3719,7 @@ func (client DbManagementClient) getExternalAsm(ctx context.Context, request com // GetExternalAsmConfiguration Gets configuration details including disk groups for the external ASM specified by `externalAsmId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalAsmConfiguration.go.html to see an example of how to use GetExternalAsmConfiguration API. // A default retry strategy applies to this operation GetExternalAsmConfiguration() @@ -3773,7 +3777,7 @@ func (client DbManagementClient) getExternalAsmConfiguration(ctx context.Context // GetExternalAsmInstance Gets the details for the external ASM instance specified by `externalAsmInstanceId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalAsmInstance.go.html to see an example of how to use GetExternalAsmInstance API. // A default retry strategy applies to this operation GetExternalAsmInstance() @@ -3831,7 +3835,7 @@ func (client DbManagementClient) getExternalAsmInstance(ctx context.Context, req // GetExternalCluster Gets the details for the external cluster specified by `externalClusterId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalCluster.go.html to see an example of how to use GetExternalCluster API. // A default retry strategy applies to this operation GetExternalCluster() @@ -3889,7 +3893,7 @@ func (client DbManagementClient) getExternalCluster(ctx context.Context, request // GetExternalClusterInstance Gets the details for the external cluster instance specified by `externalClusterInstanceId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalClusterInstance.go.html to see an example of how to use GetExternalClusterInstance API. // A default retry strategy applies to this operation GetExternalClusterInstance() @@ -3947,7 +3951,7 @@ func (client DbManagementClient) getExternalClusterInstance(ctx context.Context, // GetExternalDbHome Gets the details for the external DB home specified by `externalDbHomeId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalDbHome.go.html to see an example of how to use GetExternalDbHome API. // A default retry strategy applies to this operation GetExternalDbHome() @@ -4005,7 +4009,7 @@ func (client DbManagementClient) getExternalDbHome(ctx context.Context, request // GetExternalDbNode Gets the details for the external DB node specified by `externalDbNodeId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalDbNode.go.html to see an example of how to use GetExternalDbNode API. // A default retry strategy applies to this operation GetExternalDbNode() @@ -4063,7 +4067,7 @@ func (client DbManagementClient) getExternalDbNode(ctx context.Context, request // GetExternalDbSystem Gets the details for the external DB system specified by `externalDbSystemId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalDbSystem.go.html to see an example of how to use GetExternalDbSystem API. // A default retry strategy applies to this operation GetExternalDbSystem() @@ -4121,7 +4125,7 @@ func (client DbManagementClient) getExternalDbSystem(ctx context.Context, reques // GetExternalDbSystemConnector Gets the details for the external connector specified by `externalDbSystemConnectorId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalDbSystemConnector.go.html to see an example of how to use GetExternalDbSystemConnector API. // A default retry strategy applies to this operation GetExternalDbSystemConnector() @@ -4179,7 +4183,7 @@ func (client DbManagementClient) getExternalDbSystemConnector(ctx context.Contex // GetExternalDbSystemDiscovery Gets the details for the external DB system discovery resource specified by `externalDbSystemDiscoveryId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalDbSystemDiscovery.go.html to see an example of how to use GetExternalDbSystemDiscovery API. // A default retry strategy applies to this operation GetExternalDbSystemDiscovery() @@ -4238,7 +4242,7 @@ func (client DbManagementClient) getExternalDbSystemDiscovery(ctx context.Contex // GetExternalExadataInfrastructure Gets the details for the Exadata infrastructure specified by externalExadataInfrastructureId. It includes the DB systems and storage grid within the // Exadata infrastructure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalExadataInfrastructure.go.html to see an example of how to use GetExternalExadataInfrastructure API. // A default retry strategy applies to this operation GetExternalExadataInfrastructure() @@ -4296,7 +4300,7 @@ func (client DbManagementClient) getExternalExadataInfrastructure(ctx context.Co // GetExternalExadataStorageConnector Gets the details for the Exadata storage server connector specified by exadataStorageConnectorId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalExadataStorageConnector.go.html to see an example of how to use GetExternalExadataStorageConnector API. // A default retry strategy applies to this operation GetExternalExadataStorageConnector() @@ -4354,7 +4358,7 @@ func (client DbManagementClient) getExternalExadataStorageConnector(ctx context. // GetExternalExadataStorageGrid Gets the details for the Exadata storage server grid specified by exadataStorageGridId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalExadataStorageGrid.go.html to see an example of how to use GetExternalExadataStorageGrid API. // A default retry strategy applies to this operation GetExternalExadataStorageGrid() @@ -4412,7 +4416,7 @@ func (client DbManagementClient) getExternalExadataStorageGrid(ctx context.Conte // GetExternalExadataStorageServer Gets the summary for the Exadata storage server specified by exadataStorageServerId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalExadataStorageServer.go.html to see an example of how to use GetExternalExadataStorageServer API. // A default retry strategy applies to this operation GetExternalExadataStorageServer() @@ -4470,7 +4474,7 @@ func (client DbManagementClient) getExternalExadataStorageServer(ctx context.Con // GetExternalListener Gets the details for the external listener specified by `externalListenerId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExternalListener.go.html to see an example of how to use GetExternalListener API. // A default retry strategy applies to this operation GetExternalListener() @@ -4528,7 +4532,7 @@ func (client DbManagementClient) getExternalListener(ctx context.Context, reques // GetIormPlan Get the IORM plan from the specific Exadata storage server. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetIormPlan.go.html to see an example of how to use GetIormPlan API. // A default retry strategy applies to this operation GetIormPlan() @@ -4586,7 +4590,7 @@ func (client DbManagementClient) getIormPlan(ctx context.Context, request common // GetJob Gets the details for the job specified by jobId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetJob.go.html to see an example of how to use GetJob API. func (client DbManagementClient) GetJob(ctx context.Context, request GetJobRequest) (response GetJobResponse, err error) { @@ -4643,7 +4647,7 @@ func (client DbManagementClient) getJob(ctx context.Context, request common.OCIR // GetJobExecution Gets the details for the job execution specified by jobExecutionId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetJobExecution.go.html to see an example of how to use GetJobExecution API. func (client DbManagementClient) GetJobExecution(ctx context.Context, request GetJobExecutionRequest) (response GetJobExecutionResponse, err error) { @@ -4700,7 +4704,7 @@ func (client DbManagementClient) getJobExecution(ctx context.Context, request co // GetJobRun Gets the details for the job run specified by jobRunId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetJobRun.go.html to see an example of how to use GetJobRun API. func (client DbManagementClient) GetJobRun(ctx context.Context, request GetJobRunRequest) (response GetJobRunResponse, err error) { @@ -4757,7 +4761,7 @@ func (client DbManagementClient) getJobRun(ctx context.Context, request common.O // GetManagedDatabase Gets the details for the Managed Database specified by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetManagedDatabase.go.html to see an example of how to use GetManagedDatabase API. func (client DbManagementClient) GetManagedDatabase(ctx context.Context, request GetManagedDatabaseRequest) (response GetManagedDatabaseResponse, err error) { @@ -4814,7 +4818,7 @@ func (client DbManagementClient) getManagedDatabase(ctx context.Context, request // GetManagedDatabaseGroup Gets the details for the Managed Database Group specified by managedDatabaseGroupId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetManagedDatabaseGroup.go.html to see an example of how to use GetManagedDatabaseGroup API. func (client DbManagementClient) GetManagedDatabaseGroup(ctx context.Context, request GetManagedDatabaseGroupRequest) (response GetManagedDatabaseGroupResponse, err error) { @@ -4871,7 +4875,7 @@ func (client DbManagementClient) getManagedDatabaseGroup(ctx context.Context, re // GetOpenAlertHistory Gets the open alerts from the specified Exadata storage server. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetOpenAlertHistory.go.html to see an example of how to use GetOpenAlertHistory API. // A default retry strategy applies to this operation GetOpenAlertHistory() @@ -4930,7 +4934,7 @@ func (client DbManagementClient) getOpenAlertHistory(ctx context.Context, reques // GetOptimizerStatisticsAdvisorExecution Gets a comprehensive report of the Optimizer Statistics Advisor execution, which includes details of the // Managed Database, findings, recommendations, rationale, and examples. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetOptimizerStatisticsAdvisorExecution.go.html to see an example of how to use GetOptimizerStatisticsAdvisorExecution API. func (client DbManagementClient) GetOptimizerStatisticsAdvisorExecution(ctx context.Context, request GetOptimizerStatisticsAdvisorExecutionRequest) (response GetOptimizerStatisticsAdvisorExecutionResponse, err error) { @@ -4987,7 +4991,7 @@ func (client DbManagementClient) getOptimizerStatisticsAdvisorExecution(ctx cont // GetOptimizerStatisticsAdvisorExecutionScript Gets the Oracle system-generated script for the specified Optimizer Statistics Advisor execution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetOptimizerStatisticsAdvisorExecutionScript.go.html to see an example of how to use GetOptimizerStatisticsAdvisorExecutionScript API. func (client DbManagementClient) GetOptimizerStatisticsAdvisorExecutionScript(ctx context.Context, request GetOptimizerStatisticsAdvisorExecutionScriptRequest) (response GetOptimizerStatisticsAdvisorExecutionScriptResponse, err error) { @@ -5044,7 +5048,7 @@ func (client DbManagementClient) getOptimizerStatisticsAdvisorExecutionScript(ct // GetOptimizerStatisticsCollectionOperation Gets a detailed report of the Optimizer Statistics Collection operation for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetOptimizerStatisticsCollectionOperation.go.html to see an example of how to use GetOptimizerStatisticsCollectionOperation API. func (client DbManagementClient) GetOptimizerStatisticsCollectionOperation(ctx context.Context, request GetOptimizerStatisticsCollectionOperationRequest) (response GetOptimizerStatisticsCollectionOperationResponse, err error) { @@ -5104,7 +5108,7 @@ func (client DbManagementClient) getOptimizerStatisticsCollectionOperation(ctx c // each PDB (within the CDB) in the specified compartment are retrieved. // If compartmentId is not specified, then the metrics for all the PDBs within the CDB are retrieved. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetPdbMetrics.go.html to see an example of how to use GetPdbMetrics API. func (client DbManagementClient) GetPdbMetrics(ctx context.Context, request GetPdbMetricsRequest) (response GetPdbMetricsResponse, err error) { @@ -5161,7 +5165,7 @@ func (client DbManagementClient) getPdbMetrics(ctx context.Context, request comm // GetPreferredCredential Gets the preferred credential details for a Managed Database based on credentialName. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetPreferredCredential.go.html to see an example of how to use GetPreferredCredential API. func (client DbManagementClient) GetPreferredCredential(ctx context.Context, request GetPreferredCredentialRequest) (response GetPreferredCredentialResponse, err error) { @@ -5218,7 +5222,7 @@ func (client DbManagementClient) getPreferredCredential(ctx context.Context, req // GetSqlPlanBaseline Gets the SQL plan baseline details for the specified planName. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetSqlPlanBaseline.go.html to see an example of how to use GetSqlPlanBaseline API. // A default retry strategy applies to this operation GetSqlPlanBaseline() @@ -5278,7 +5282,7 @@ func (client DbManagementClient) getSqlPlanBaseline(ctx context.Context, request // Managed Database. The details include the settings for the capture and use of // SQL plan baselines, SPM Evolve Advisor task, and SQL Management Base. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetSqlPlanBaselineConfiguration.go.html to see an example of how to use GetSqlPlanBaselineConfiguration API. // A default retry strategy applies to this operation GetSqlPlanBaselineConfiguration() @@ -5336,7 +5340,7 @@ func (client DbManagementClient) getSqlPlanBaselineConfiguration(ctx context.Con // GetTablespace Gets the details of the tablespace specified by tablespaceName within the Managed Database specified by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetTablespace.go.html to see an example of how to use GetTablespace API. func (client DbManagementClient) GetTablespace(ctx context.Context, request GetTablespaceRequest) (response GetTablespaceResponse, err error) { @@ -5393,7 +5397,7 @@ func (client DbManagementClient) getTablespace(ctx context.Context, request comm // GetTopSqlCpuActivity Gets the SQL IDs with the top CPU activity from the Exadata storage server. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetTopSqlCpuActivity.go.html to see an example of how to use GetTopSqlCpuActivity API. // A default retry strategy applies to this operation GetTopSqlCpuActivity() @@ -5451,7 +5455,7 @@ func (client DbManagementClient) getTopSqlCpuActivity(ctx context.Context, reque // GetUser Gets the details of the user specified by managedDatabaseId and userName. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetUser.go.html to see an example of how to use GetUser API. func (client DbManagementClient) GetUser(ctx context.Context, request GetUserRequest) (response GetUserResponse, err error) { @@ -5508,7 +5512,7 @@ func (client DbManagementClient) getUser(ctx context.Context, request common.OCI // GetWorkRequest Gets the status of the work request with the given Work Request ID // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client DbManagementClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -5565,7 +5569,7 @@ func (client DbManagementClient) getWorkRequest(ctx context.Context, request com // ImplementOptimizerStatisticsAdvisorRecommendations Asynchronously implements the findings and recommendations of the Optimizer Statistics Advisor execution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ImplementOptimizerStatisticsAdvisorRecommendations.go.html to see an example of how to use ImplementOptimizerStatisticsAdvisorRecommendations API. func (client DbManagementClient) ImplementOptimizerStatisticsAdvisorRecommendations(ctx context.Context, request ImplementOptimizerStatisticsAdvisorRecommendationsRequest) (response ImplementOptimizerStatisticsAdvisorRecommendationsResponse, err error) { @@ -5622,7 +5626,7 @@ func (client DbManagementClient) implementOptimizerStatisticsAdvisorRecommendati // ListAsmProperties Gets the list of ASM properties for the specified managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListAsmProperties.go.html to see an example of how to use ListAsmProperties API. func (client DbManagementClient) ListAsmProperties(ctx context.Context, request ListAsmPropertiesRequest) (response ListAsmPropertiesResponse, err error) { @@ -5679,7 +5683,7 @@ func (client DbManagementClient) listAsmProperties(ctx context.Context, request // ListAssociatedDatabases Gets the list of databases using a specific Database Management private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListAssociatedDatabases.go.html to see an example of how to use ListAssociatedDatabases API. func (client DbManagementClient) ListAssociatedDatabases(ctx context.Context, request ListAssociatedDatabasesRequest) (response ListAssociatedDatabasesResponse, err error) { @@ -5736,7 +5740,7 @@ func (client DbManagementClient) listAssociatedDatabases(ctx context.Context, re // ListAwrDbSnapshots Lists AWR snapshots for the specified database in the AWR. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListAwrDbSnapshots.go.html to see an example of how to use ListAwrDbSnapshots API. func (client DbManagementClient) ListAwrDbSnapshots(ctx context.Context, request ListAwrDbSnapshotsRequest) (response ListAwrDbSnapshotsResponse, err error) { @@ -5798,7 +5802,7 @@ func (client DbManagementClient) listAwrDbSnapshots(ctx context.Context, request // ListAwrDbs Gets the list of databases and their snapshot summary details available in the AWR of the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListAwrDbs.go.html to see an example of how to use ListAwrDbs API. func (client DbManagementClient) ListAwrDbs(ctx context.Context, request ListAwrDbsRequest) (response ListAwrDbsResponse, err error) { @@ -5860,7 +5864,7 @@ func (client DbManagementClient) listAwrDbs(ctx context.Context, request common. // ListConsumerGroupPrivileges Gets the list of consumer group privileges granted to a specific user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListConsumerGroupPrivileges.go.html to see an example of how to use ListConsumerGroupPrivileges API. func (client DbManagementClient) ListConsumerGroupPrivileges(ctx context.Context, request ListConsumerGroupPrivilegesRequest) (response ListConsumerGroupPrivilegesResponse, err error) { @@ -5917,7 +5921,7 @@ func (client DbManagementClient) listConsumerGroupPrivileges(ctx context.Context // ListCursorCacheStatements Lists the SQL statements from shared SQL area, also called the cursor cache. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListCursorCacheStatements.go.html to see an example of how to use ListCursorCacheStatements API. // A default retry strategy applies to this operation ListCursorCacheStatements() @@ -5975,7 +5979,7 @@ func (client DbManagementClient) listCursorCacheStatements(ctx context.Context, // ListDataAccessContainers Gets the list of containers for a specific user. This is only applicable if ALL_CONTAINERS !='Y'. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListDataAccessContainers.go.html to see an example of how to use ListDataAccessContainers API. func (client DbManagementClient) ListDataAccessContainers(ctx context.Context, request ListDataAccessContainersRequest) (response ListDataAccessContainersResponse, err error) { @@ -6032,7 +6036,7 @@ func (client DbManagementClient) listDataAccessContainers(ctx context.Context, r // ListDatabaseParameters Gets the list of database parameters for the specified Managed Database. The parameters are listed in alphabetical order, along with their current values. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListDatabaseParameters.go.html to see an example of how to use ListDatabaseParameters API. func (client DbManagementClient) ListDatabaseParameters(ctx context.Context, request ListDatabaseParametersRequest) (response ListDatabaseParametersResponse, err error) { @@ -6089,7 +6093,7 @@ func (client DbManagementClient) listDatabaseParameters(ctx context.Context, req // ListDbManagementPrivateEndpoints Gets a list of Database Management private endpoints. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListDbManagementPrivateEndpoints.go.html to see an example of how to use ListDbManagementPrivateEndpoints API. func (client DbManagementClient) ListDbManagementPrivateEndpoints(ctx context.Context, request ListDbManagementPrivateEndpointsRequest) (response ListDbManagementPrivateEndpointsResponse, err error) { @@ -6146,7 +6150,7 @@ func (client DbManagementClient) listDbManagementPrivateEndpoints(ctx context.Co // ListExternalAsmDiskGroups Lists ASM disk groups for the external ASM specified by `externalAsmId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalAsmDiskGroups.go.html to see an example of how to use ListExternalAsmDiskGroups API. // A default retry strategy applies to this operation ListExternalAsmDiskGroups() @@ -6204,7 +6208,7 @@ func (client DbManagementClient) listExternalAsmDiskGroups(ctx context.Context, // ListExternalAsmInstances Lists the ASM instances in the specified external ASM. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalAsmInstances.go.html to see an example of how to use ListExternalAsmInstances API. // A default retry strategy applies to this operation ListExternalAsmInstances() @@ -6262,7 +6266,7 @@ func (client DbManagementClient) listExternalAsmInstances(ctx context.Context, r // ListExternalAsmUsers Lists ASM users for the external ASM specified by `externalAsmId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalAsmUsers.go.html to see an example of how to use ListExternalAsmUsers API. // A default retry strategy applies to this operation ListExternalAsmUsers() @@ -6320,7 +6324,7 @@ func (client DbManagementClient) listExternalAsmUsers(ctx context.Context, reque // ListExternalAsms Lists the ASMs in the specified external DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalAsms.go.html to see an example of how to use ListExternalAsms API. // A default retry strategy applies to this operation ListExternalAsms() @@ -6378,7 +6382,7 @@ func (client DbManagementClient) listExternalAsms(ctx context.Context, request c // ListExternalClusterInstances Lists the cluster instances in the specified external cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalClusterInstances.go.html to see an example of how to use ListExternalClusterInstances API. // A default retry strategy applies to this operation ListExternalClusterInstances() @@ -6436,7 +6440,7 @@ func (client DbManagementClient) listExternalClusterInstances(ctx context.Contex // ListExternalClusters Lists the clusters in the specified external DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalClusters.go.html to see an example of how to use ListExternalClusters API. // A default retry strategy applies to this operation ListExternalClusters() @@ -6494,7 +6498,7 @@ func (client DbManagementClient) listExternalClusters(ctx context.Context, reque // ListExternalDatabases Lists the external databases in the specified compartment or in the specified DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalDatabases.go.html to see an example of how to use ListExternalDatabases API. // A default retry strategy applies to this operation ListExternalDatabases() @@ -6552,7 +6556,7 @@ func (client DbManagementClient) listExternalDatabases(ctx context.Context, requ // ListExternalDbHomes Lists the DB homes in the specified external DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalDbHomes.go.html to see an example of how to use ListExternalDbHomes API. // A default retry strategy applies to this operation ListExternalDbHomes() @@ -6610,7 +6614,7 @@ func (client DbManagementClient) listExternalDbHomes(ctx context.Context, reques // ListExternalDbNodes Lists the external DB nodes in the specified external DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalDbNodes.go.html to see an example of how to use ListExternalDbNodes API. // A default retry strategy applies to this operation ListExternalDbNodes() @@ -6668,7 +6672,7 @@ func (client DbManagementClient) listExternalDbNodes(ctx context.Context, reques // ListExternalDbSystemConnectors Lists the external connectors in the specified external DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalDbSystemConnectors.go.html to see an example of how to use ListExternalDbSystemConnectors API. // A default retry strategy applies to this operation ListExternalDbSystemConnectors() @@ -6726,7 +6730,7 @@ func (client DbManagementClient) listExternalDbSystemConnectors(ctx context.Cont // ListExternalDbSystemDiscoveries Lists the external DB system discovery resources in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalDbSystemDiscoveries.go.html to see an example of how to use ListExternalDbSystemDiscoveries API. // A default retry strategy applies to this operation ListExternalDbSystemDiscoveries() @@ -6784,7 +6788,7 @@ func (client DbManagementClient) listExternalDbSystemDiscoveries(ctx context.Con // ListExternalDbSystems Lists the external DB systems in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalDbSystems.go.html to see an example of how to use ListExternalDbSystems API. // A default retry strategy applies to this operation ListExternalDbSystems() @@ -6842,7 +6846,7 @@ func (client DbManagementClient) listExternalDbSystems(ctx context.Context, requ // ListExternalExadataInfrastructures Lists the Exadata infrastructure resources in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalExadataInfrastructures.go.html to see an example of how to use ListExternalExadataInfrastructures API. // A default retry strategy applies to this operation ListExternalExadataInfrastructures() @@ -6900,7 +6904,7 @@ func (client DbManagementClient) listExternalExadataInfrastructures(ctx context. // ListExternalExadataStorageConnectors Lists the Exadata storage server connectors for the specified Exadata infrastructure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalExadataStorageConnectors.go.html to see an example of how to use ListExternalExadataStorageConnectors API. // A default retry strategy applies to this operation ListExternalExadataStorageConnectors() @@ -6958,7 +6962,7 @@ func (client DbManagementClient) listExternalExadataStorageConnectors(ctx contex // ListExternalExadataStorageServers Lists the Exadata storage servers for the specified Exadata infrastructure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalExadataStorageServers.go.html to see an example of how to use ListExternalExadataStorageServers API. // A default retry strategy applies to this operation ListExternalExadataStorageServers() @@ -7017,7 +7021,7 @@ func (client DbManagementClient) listExternalExadataStorageServers(ctx context.C // ListExternalListenerServices Lists the database services registered with the specified external listener // for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalListenerServices.go.html to see an example of how to use ListExternalListenerServices API. // A default retry strategy applies to this operation ListExternalListenerServices() @@ -7075,7 +7079,7 @@ func (client DbManagementClient) listExternalListenerServices(ctx context.Contex // ListExternalListeners Lists the listeners in the specified external DB system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListExternalListeners.go.html to see an example of how to use ListExternalListeners API. // A default retry strategy applies to this operation ListExternalListeners() @@ -7136,7 +7140,7 @@ func (client DbManagementClient) listExternalListeners(ctx context.Context, requ // If none of these parameters is provided, all the job executions in the compartment are listed. Job executions can also be filtered // based on the name and status parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListJobExecutions.go.html to see an example of how to use ListJobExecutions API. func (client DbManagementClient) ListJobExecutions(ctx context.Context, request ListJobExecutionsRequest) (response ListJobExecutionsResponse, err error) { @@ -7196,7 +7200,7 @@ func (client DbManagementClient) listJobExecutions(ctx context.Context, request // should be provided. If none of these parameters is provided, all the job runs in the compartment are listed. // Job runs can also be filtered based on name and runStatus parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListJobRuns.go.html to see an example of how to use ListJobRuns API. func (client DbManagementClient) ListJobRuns(ctx context.Context, request ListJobRunsRequest) (response ListJobRunsResponse, err error) { @@ -7256,7 +7260,7 @@ func (client DbManagementClient) listJobRuns(ctx context.Context, request common // should be provided. If none of these parameters is provided, all the jobs in the compartment are listed. // Jobs can also be filtered based on the name and lifecycleState parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListJobs.go.html to see an example of how to use ListJobs API. func (client DbManagementClient) ListJobs(ctx context.Context, request ListJobsRequest) (response ListJobsResponse, err error) { @@ -7316,7 +7320,7 @@ func (client DbManagementClient) listJobs(ctx context.Context, request common.OC // Only one of the parameters, ID or name should be provided. If none of these parameters is provided, // all the Managed Database Groups in the compartment are listed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListManagedDatabaseGroups.go.html to see an example of how to use ListManagedDatabaseGroups API. func (client DbManagementClient) ListManagedDatabaseGroups(ctx context.Context, request ListManagedDatabaseGroupsRequest) (response ListManagedDatabaseGroupsResponse, err error) { @@ -7378,7 +7382,7 @@ func (client DbManagementClient) listManagedDatabaseGroups(ctx context.Context, // If the deployment type is not specified or if it is `ONPREMISE`, then the management option is not // considered and Managed Databases with `ADVANCED` management option are listed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListManagedDatabases.go.html to see an example of how to use ListManagedDatabases API. func (client DbManagementClient) ListManagedDatabases(ctx context.Context, request ListManagedDatabasesRequest) (response ListManagedDatabasesResponse, err error) { @@ -7435,7 +7439,7 @@ func (client DbManagementClient) listManagedDatabases(ctx context.Context, reque // ListObjectPrivileges Gets the list of object privileges granted to a specific user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListObjectPrivileges.go.html to see an example of how to use ListObjectPrivileges API. func (client DbManagementClient) ListObjectPrivileges(ctx context.Context, request ListObjectPrivilegesRequest) (response ListObjectPrivilegesResponse, err error) { @@ -7494,7 +7498,7 @@ func (client DbManagementClient) listObjectPrivileges(ctx context.Context, reque // Optionally, you can specify a date-time range (of seven days) to obtain the list of executions that fall within the specified time range. // If the date-time range is not specified, then the executions in the last seven days are listed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListOptimizerStatisticsAdvisorExecutions.go.html to see an example of how to use ListOptimizerStatisticsAdvisorExecutions API. func (client DbManagementClient) ListOptimizerStatisticsAdvisorExecutions(ctx context.Context, request ListOptimizerStatisticsAdvisorExecutionsRequest) (response ListOptimizerStatisticsAdvisorExecutionsResponse, err error) { @@ -7556,7 +7560,7 @@ func (client DbManagementClient) listOptimizerStatisticsAdvisorExecutions(ctx co // You can further filter the results by providing the optional type of TaskTypeQueryParam. // If the task type not provided, then both Auto and Manual tasks are considered for aggregation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListOptimizerStatisticsCollectionAggregations.go.html to see an example of how to use ListOptimizerStatisticsCollectionAggregations API. func (client DbManagementClient) ListOptimizerStatisticsCollectionAggregations(ctx context.Context, request ListOptimizerStatisticsCollectionAggregationsRequest) (response ListOptimizerStatisticsCollectionAggregationsResponse, err error) { @@ -7619,7 +7623,7 @@ func (client DbManagementClient) listOptimizerStatisticsCollectionAggregations(c // If you use the same header value in a consecutive request, the next page records are returned. // To obtain the required results, you can apply the different types of filters supported by this API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListOptimizerStatisticsCollectionOperations.go.html to see an example of how to use ListOptimizerStatisticsCollectionOperations API. func (client DbManagementClient) ListOptimizerStatisticsCollectionOperations(ctx context.Context, request ListOptimizerStatisticsCollectionOperationsRequest) (response ListOptimizerStatisticsCollectionOperationsResponse, err error) { @@ -7676,7 +7680,7 @@ func (client DbManagementClient) listOptimizerStatisticsCollectionOperations(ctx // ListPreferredCredentials Gets the list of preferred credentials for a given Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListPreferredCredentials.go.html to see an example of how to use ListPreferredCredentials API. func (client DbManagementClient) ListPreferredCredentials(ctx context.Context, request ListPreferredCredentialsRequest) (response ListPreferredCredentialsResponse, err error) { @@ -7733,7 +7737,7 @@ func (client DbManagementClient) listPreferredCredentials(ctx context.Context, r // ListProxiedForUsers Gets the list of users on whose behalf the current user acts as proxy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListProxiedForUsers.go.html to see an example of how to use ListProxiedForUsers API. func (client DbManagementClient) ListProxiedForUsers(ctx context.Context, request ListProxiedForUsersRequest) (response ListProxiedForUsersResponse, err error) { @@ -7790,7 +7794,7 @@ func (client DbManagementClient) listProxiedForUsers(ctx context.Context, reques // ListProxyUsers Gets the list of proxy users for the current user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListProxyUsers.go.html to see an example of how to use ListProxyUsers API. func (client DbManagementClient) ListProxyUsers(ctx context.Context, request ListProxyUsersRequest) (response ListProxyUsersResponse, err error) { @@ -7847,7 +7851,7 @@ func (client DbManagementClient) listProxyUsers(ctx context.Context, request com // ListRoles Gets the list of roles granted to a specific user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListRoles.go.html to see an example of how to use ListRoles API. func (client DbManagementClient) ListRoles(ctx context.Context, request ListRolesRequest) (response ListRolesResponse, err error) { @@ -7904,7 +7908,7 @@ func (client DbManagementClient) listRoles(ctx context.Context, request common.O // ListSqlPlanBaselineJobs Lists the database jobs used for loading SQL plan baselines in the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListSqlPlanBaselineJobs.go.html to see an example of how to use ListSqlPlanBaselineJobs API. // A default retry strategy applies to this operation ListSqlPlanBaselineJobs() @@ -7962,7 +7966,7 @@ func (client DbManagementClient) listSqlPlanBaselineJobs(ctx context.Context, re // ListSqlPlanBaselines Lists the SQL plan baselines for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListSqlPlanBaselines.go.html to see an example of how to use ListSqlPlanBaselines API. // A default retry strategy applies to this operation ListSqlPlanBaselines() @@ -8020,7 +8024,7 @@ func (client DbManagementClient) listSqlPlanBaselines(ctx context.Context, reque // ListSystemPrivileges Gets the list of system privileges granted to a specific user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListSystemPrivileges.go.html to see an example of how to use ListSystemPrivileges API. func (client DbManagementClient) ListSystemPrivileges(ctx context.Context, request ListSystemPrivilegesRequest) (response ListSystemPrivilegesResponse, err error) { @@ -8078,7 +8082,7 @@ func (client DbManagementClient) listSystemPrivileges(ctx context.Context, reque // ListTableStatistics Lists the database table statistics grouped by different statuses such as Not Stale Stats, Stale Stats, and No Stats. // This also includes the percentage of each status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListTableStatistics.go.html to see an example of how to use ListTableStatistics API. func (client DbManagementClient) ListTableStatistics(ctx context.Context, request ListTableStatisticsRequest) (response ListTableStatisticsResponse, err error) { @@ -8135,7 +8139,7 @@ func (client DbManagementClient) listTableStatistics(ctx context.Context, reques // ListTablespaces Gets the list of tablespaces for the specified managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListTablespaces.go.html to see an example of how to use ListTablespaces API. func (client DbManagementClient) ListTablespaces(ctx context.Context, request ListTablespacesRequest) (response ListTablespacesResponse, err error) { @@ -8192,7 +8196,7 @@ func (client DbManagementClient) listTablespaces(ctx context.Context, request co // ListUsers Gets the list of users for the specified managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListUsers.go.html to see an example of how to use ListUsers API. func (client DbManagementClient) ListUsers(ctx context.Context, request ListUsersRequest) (response ListUsersResponse, err error) { @@ -8249,7 +8253,7 @@ func (client DbManagementClient) listUsers(ctx context.Context, request common.O // ListWorkRequestErrors Returns a paginated list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client DbManagementClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -8306,7 +8310,7 @@ func (client DbManagementClient) listWorkRequestErrors(ctx context.Context, requ // ListWorkRequestLogs Returns a paginated list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client DbManagementClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -8363,7 +8367,7 @@ func (client DbManagementClient) listWorkRequestLogs(ctx context.Context, reques // ListWorkRequests The list of work requests in a specific compartment was retrieved successfully. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client DbManagementClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -8424,7 +8428,7 @@ func (client DbManagementClient) listWorkRequests(ctx context.Context, request c // default, the optimizer uses the loaded plans the next time that the database // executes the SQL statements. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/LoadSqlPlanBaselinesFromAwr.go.html to see an example of how to use LoadSqlPlanBaselinesFromAwr API. func (client DbManagementClient) LoadSqlPlanBaselinesFromAwr(ctx context.Context, request LoadSqlPlanBaselinesFromAwrRequest) (response LoadSqlPlanBaselinesFromAwrResponse, err error) { @@ -8483,7 +8487,7 @@ func (client DbManagementClient) loadSqlPlanBaselinesFromAwr(ctx context.Context // the cursor cache. By applying a filter on the module name, the schema, or // the SQL ID you identify the SQL statement or set of SQL statements to load. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/LoadSqlPlanBaselinesFromCursorCache.go.html to see an example of how to use LoadSqlPlanBaselinesFromCursorCache API. func (client DbManagementClient) LoadSqlPlanBaselinesFromCursorCache(ctx context.Context, request LoadSqlPlanBaselinesFromCursorCacheRequest) (response LoadSqlPlanBaselinesFromCursorCacheResponse, err error) { @@ -8540,7 +8544,7 @@ func (client DbManagementClient) loadSqlPlanBaselinesFromCursorCache(ctx context // PatchExternalDbSystemDiscovery Patches the external DB system discovery specified by `externalDbSystemDiscoveryId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/PatchExternalDbSystemDiscovery.go.html to see an example of how to use PatchExternalDbSystemDiscovery API. func (client DbManagementClient) PatchExternalDbSystemDiscovery(ctx context.Context, request PatchExternalDbSystemDiscoveryRequest) (response PatchExternalDbSystemDiscoveryResponse, err error) { @@ -8597,7 +8601,7 @@ func (client DbManagementClient) patchExternalDbSystemDiscovery(ctx context.Cont // RemoveDataFile Removes a data file or temp file from the tablespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/RemoveDataFile.go.html to see an example of how to use RemoveDataFile API. func (client DbManagementClient) RemoveDataFile(ctx context.Context, request RemoveDataFileRequest) (response RemoveDataFileResponse, err error) { @@ -8662,7 +8666,7 @@ func (client DbManagementClient) removeDataFile(ctx context.Context, request com // run to completion. However, any activities scheduled to run in the future // will not be performed on this database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/RemoveManagedDatabaseFromManagedDatabaseGroup.go.html to see an example of how to use RemoveManagedDatabaseFromManagedDatabaseGroup API. func (client DbManagementClient) RemoveManagedDatabaseFromManagedDatabaseGroup(ctx context.Context, request RemoveManagedDatabaseFromManagedDatabaseGroupRequest) (response RemoveManagedDatabaseFromManagedDatabaseGroupResponse, err error) { @@ -8724,7 +8728,7 @@ func (client DbManagementClient) removeManagedDatabaseFromManagedDatabaseGroup(c // ResetDatabaseParameters Resets database parameter values to their default or startup values. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ResetDatabaseParameters.go.html to see an example of how to use ResetDatabaseParameters API. func (client DbManagementClient) ResetDatabaseParameters(ctx context.Context, request ResetDatabaseParametersRequest) (response ResetDatabaseParametersResponse, err error) { @@ -8786,7 +8790,7 @@ func (client DbManagementClient) resetDatabaseParameters(ctx context.Context, re // ResizeDataFile Resizes a data file or temp file within the tablespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ResizeDataFile.go.html to see an example of how to use ResizeDataFile API. func (client DbManagementClient) ResizeDataFile(ctx context.Context, request ResizeDataFileRequest) (response ResizeDataFileResponse, err error) { @@ -8849,7 +8853,7 @@ func (client DbManagementClient) resizeDataFile(ctx context.Context, request com // RunHistoricAddm Creates and executes a historic ADDM task using the specified AWR snapshot IDs. If an existing ADDM task // uses the provided awr snapshot IDs, the existing task will be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/RunHistoricAddm.go.html to see an example of how to use RunHistoricAddm API. func (client DbManagementClient) RunHistoricAddm(ctx context.Context, request RunHistoricAddmRequest) (response RunHistoricAddmResponse, err error) { @@ -8911,7 +8915,7 @@ func (client DbManagementClient) runHistoricAddm(ctx context.Context, request co // SummarizeAwrDbCpuUsages Summarizes the AWR CPU resource limits and metrics for the specified database in AWR. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAwrDbCpuUsages.go.html to see an example of how to use SummarizeAwrDbCpuUsages API. func (client DbManagementClient) SummarizeAwrDbCpuUsages(ctx context.Context, request SummarizeAwrDbCpuUsagesRequest) (response SummarizeAwrDbCpuUsagesResponse, err error) { @@ -8973,7 +8977,7 @@ func (client DbManagementClient) summarizeAwrDbCpuUsages(ctx context.Context, re // SummarizeAwrDbMetrics Summarizes the metric samples for the specified database in the AWR. The metric samples are summarized based on the Time dimension for each metric. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAwrDbMetrics.go.html to see an example of how to use SummarizeAwrDbMetrics API. func (client DbManagementClient) SummarizeAwrDbMetrics(ctx context.Context, request SummarizeAwrDbMetricsRequest) (response SummarizeAwrDbMetricsResponse, err error) { @@ -9039,7 +9043,7 @@ func (client DbManagementClient) summarizeAwrDbMetrics(ctx context.Context, requ // To get a list of all the database parameters whose values were changed during a specified time range, use the following API endpoint: // /managedDatabases/{managedDatabaseId}/awrDbs/{awrDbId}/awrDbParameters // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAwrDbParameterChanges.go.html to see an example of how to use SummarizeAwrDbParameterChanges API. func (client DbManagementClient) SummarizeAwrDbParameterChanges(ctx context.Context, request SummarizeAwrDbParameterChangesRequest) (response SummarizeAwrDbParameterChangesResponse, err error) { @@ -9109,7 +9113,7 @@ func (client DbManagementClient) summarizeAwrDbParameterChanges(ctx context.Cont // Note that this API does not return information on the number of times each database parameter has been changed within the time range. To get the database parameter value change history for a specific parameter, use the following API endpoint: // /managedDatabases/{managedDatabaseId}/awrDbs/{awrDbId}/awrDbParameterChanges // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAwrDbParameters.go.html to see an example of how to use SummarizeAwrDbParameters API. func (client DbManagementClient) SummarizeAwrDbParameters(ctx context.Context, request SummarizeAwrDbParametersRequest) (response SummarizeAwrDbParametersResponse, err error) { @@ -9171,7 +9175,7 @@ func (client DbManagementClient) summarizeAwrDbParameters(ctx context.Context, r // SummarizeAwrDbSnapshotRanges Summarizes the AWR snapshot ranges that contain continuous snapshots, for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAwrDbSnapshotRanges.go.html to see an example of how to use SummarizeAwrDbSnapshotRanges API. func (client DbManagementClient) SummarizeAwrDbSnapshotRanges(ctx context.Context, request SummarizeAwrDbSnapshotRangesRequest) (response SummarizeAwrDbSnapshotRangesResponse, err error) { @@ -9233,7 +9237,7 @@ func (client DbManagementClient) summarizeAwrDbSnapshotRanges(ctx context.Contex // SummarizeAwrDbSysstats Summarizes the AWR SYSSTAT sample data for the specified database in AWR. The statistical data is summarized based on the Time dimension for each statistic. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAwrDbSysstats.go.html to see an example of how to use SummarizeAwrDbSysstats API. func (client DbManagementClient) SummarizeAwrDbSysstats(ctx context.Context, request SummarizeAwrDbSysstatsRequest) (response SummarizeAwrDbSysstatsResponse, err error) { @@ -9295,7 +9299,7 @@ func (client DbManagementClient) summarizeAwrDbSysstats(ctx context.Context, req // SummarizeAwrDbTopWaitEvents Summarizes the AWR top wait events. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAwrDbTopWaitEvents.go.html to see an example of how to use SummarizeAwrDbTopWaitEvents API. func (client DbManagementClient) SummarizeAwrDbTopWaitEvents(ctx context.Context, request SummarizeAwrDbTopWaitEventsRequest) (response SummarizeAwrDbTopWaitEventsResponse, err error) { @@ -9357,7 +9361,7 @@ func (client DbManagementClient) summarizeAwrDbTopWaitEvents(ctx context.Context // SummarizeAwrDbWaitEventBuckets Summarizes AWR wait event data into value buckets and frequency, for the specified database in the AWR. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAwrDbWaitEventBuckets.go.html to see an example of how to use SummarizeAwrDbWaitEventBuckets API. func (client DbManagementClient) SummarizeAwrDbWaitEventBuckets(ctx context.Context, request SummarizeAwrDbWaitEventBucketsRequest) (response SummarizeAwrDbWaitEventBucketsResponse, err error) { @@ -9419,7 +9423,7 @@ func (client DbManagementClient) summarizeAwrDbWaitEventBuckets(ctx context.Cont // SummarizeAwrDbWaitEvents Summarizes the AWR wait event sample data for the specified database in the AWR. The event data is summarized based on the Time dimension for each event. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAwrDbWaitEvents.go.html to see an example of how to use SummarizeAwrDbWaitEvents API. func (client DbManagementClient) SummarizeAwrDbWaitEvents(ctx context.Context, request SummarizeAwrDbWaitEventsRequest) (response SummarizeAwrDbWaitEventsResponse, err error) { @@ -9481,7 +9485,7 @@ func (client DbManagementClient) summarizeAwrDbWaitEvents(ctx context.Context, r // SummarizeExternalAsmMetrics Gets metrics for the external ASM specified by `externalAsmId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeExternalAsmMetrics.go.html to see an example of how to use SummarizeExternalAsmMetrics API. // A default retry strategy applies to this operation SummarizeExternalAsmMetrics() @@ -9539,7 +9543,7 @@ func (client DbManagementClient) summarizeExternalAsmMetrics(ctx context.Context // SummarizeExternalClusterMetrics Gets metrics for the external cluster specified by `externalClusterId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeExternalClusterMetrics.go.html to see an example of how to use SummarizeExternalClusterMetrics API. // A default retry strategy applies to this operation SummarizeExternalClusterMetrics() @@ -9597,7 +9601,7 @@ func (client DbManagementClient) summarizeExternalClusterMetrics(ctx context.Con // SummarizeExternalDbNodeMetrics Gets metrics for the external DB node specified by `externalDbNodeId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeExternalDbNodeMetrics.go.html to see an example of how to use SummarizeExternalDbNodeMetrics API. // A default retry strategy applies to this operation SummarizeExternalDbNodeMetrics() @@ -9655,7 +9659,7 @@ func (client DbManagementClient) summarizeExternalDbNodeMetrics(ctx context.Cont // SummarizeExternalDbSystemAvailabilityMetrics Gets availability metrics for the components present in the external DB system specified by `externalDbSystemId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeExternalDbSystemAvailabilityMetrics.go.html to see an example of how to use SummarizeExternalDbSystemAvailabilityMetrics API. // A default retry strategy applies to this operation SummarizeExternalDbSystemAvailabilityMetrics() @@ -9713,7 +9717,7 @@ func (client DbManagementClient) summarizeExternalDbSystemAvailabilityMetrics(ct // SummarizeExternalListenerMetrics Gets metrics for the external listener specified by `externalListenerId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeExternalListenerMetrics.go.html to see an example of how to use SummarizeExternalListenerMetrics API. // A default retry strategy applies to this operation SummarizeExternalListenerMetrics() @@ -9771,7 +9775,7 @@ func (client DbManagementClient) summarizeExternalListenerMetrics(ctx context.Co // SummarizeJobExecutionsStatuses Gets the number of job executions grouped by status for a job, Managed Database, or Database Group in a specific compartment. Only one of the parameters, jobId, managedDatabaseId, or managedDatabaseGroupId should be provided. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeJobExecutionsStatuses.go.html to see an example of how to use SummarizeJobExecutionsStatuses API. func (client DbManagementClient) SummarizeJobExecutionsStatuses(ctx context.Context, request SummarizeJobExecutionsStatusesRequest) (response SummarizeJobExecutionsStatusesResponse, err error) { @@ -9829,7 +9833,7 @@ func (client DbManagementClient) summarizeJobExecutionsStatuses(ctx context.Cont // SummarizeManagedDatabaseAvailabilityMetrics Gets the availability metrics related to managed database for the Oracle // database specified by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeManagedDatabaseAvailabilityMetrics.go.html to see an example of how to use SummarizeManagedDatabaseAvailabilityMetrics API. // A default retry strategy applies to this operation SummarizeManagedDatabaseAvailabilityMetrics() @@ -9887,7 +9891,7 @@ func (client DbManagementClient) summarizeManagedDatabaseAvailabilityMetrics(ctx // SummarizeSqlPlanBaselines Gets the number of SQL plan baselines aggregated by their attributes. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeSqlPlanBaselines.go.html to see an example of how to use SummarizeSqlPlanBaselines API. // A default retry strategy applies to this operation SummarizeSqlPlanBaselines() @@ -9945,7 +9949,7 @@ func (client DbManagementClient) summarizeSqlPlanBaselines(ctx context.Context, // SummarizeSqlPlanBaselinesByLastExecution Gets the number of SQL plan baselines aggregated by the age of their last execution in weeks. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeSqlPlanBaselinesByLastExecution.go.html to see an example of how to use SummarizeSqlPlanBaselinesByLastExecution API. // A default retry strategy applies to this operation SummarizeSqlPlanBaselinesByLastExecution() @@ -10003,7 +10007,7 @@ func (client DbManagementClient) summarizeSqlPlanBaselinesByLastExecution(ctx co // TestPreferredCredential Tests the preferred credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/TestPreferredCredential.go.html to see an example of how to use TestPreferredCredential API. func (client DbManagementClient) TestPreferredCredential(ctx context.Context, request TestPreferredCredentialRequest) (response TestPreferredCredentialResponse, err error) { @@ -10060,7 +10064,7 @@ func (client DbManagementClient) testPreferredCredential(ctx context.Context, re // UpdateDbManagementPrivateEndpoint Updates one or more attributes of a specific Database Management private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateDbManagementPrivateEndpoint.go.html to see an example of how to use UpdateDbManagementPrivateEndpoint API. func (client DbManagementClient) UpdateDbManagementPrivateEndpoint(ctx context.Context, request UpdateDbManagementPrivateEndpointRequest) (response UpdateDbManagementPrivateEndpointResponse, err error) { @@ -10117,7 +10121,7 @@ func (client DbManagementClient) updateDbManagementPrivateEndpoint(ctx context.C // UpdateExternalAsm Updates the external ASM specified by `externalAsmId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalAsm.go.html to see an example of how to use UpdateExternalAsm API. func (client DbManagementClient) UpdateExternalAsm(ctx context.Context, request UpdateExternalAsmRequest) (response UpdateExternalAsmResponse, err error) { @@ -10174,7 +10178,7 @@ func (client DbManagementClient) updateExternalAsm(ctx context.Context, request // UpdateExternalCluster Updates the external cluster specified by `externalClusterId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalCluster.go.html to see an example of how to use UpdateExternalCluster API. func (client DbManagementClient) UpdateExternalCluster(ctx context.Context, request UpdateExternalClusterRequest) (response UpdateExternalClusterResponse, err error) { @@ -10231,7 +10235,7 @@ func (client DbManagementClient) updateExternalCluster(ctx context.Context, requ // UpdateExternalClusterInstance Updates the external cluster instance specified by `externalClusterInstanceId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalClusterInstance.go.html to see an example of how to use UpdateExternalClusterInstance API. func (client DbManagementClient) UpdateExternalClusterInstance(ctx context.Context, request UpdateExternalClusterInstanceRequest) (response UpdateExternalClusterInstanceResponse, err error) { @@ -10288,7 +10292,7 @@ func (client DbManagementClient) updateExternalClusterInstance(ctx context.Conte // UpdateExternalDbNode Updates the external DB node specified by `externalDbNodeId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalDbNode.go.html to see an example of how to use UpdateExternalDbNode API. func (client DbManagementClient) UpdateExternalDbNode(ctx context.Context, request UpdateExternalDbNodeRequest) (response UpdateExternalDbNodeResponse, err error) { @@ -10345,7 +10349,7 @@ func (client DbManagementClient) updateExternalDbNode(ctx context.Context, reque // UpdateExternalDbSystem Updates the external DB system specified by `externalDbSystemId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalDbSystem.go.html to see an example of how to use UpdateExternalDbSystem API. func (client DbManagementClient) UpdateExternalDbSystem(ctx context.Context, request UpdateExternalDbSystemRequest) (response UpdateExternalDbSystemResponse, err error) { @@ -10402,7 +10406,7 @@ func (client DbManagementClient) updateExternalDbSystem(ctx context.Context, req // UpdateExternalDbSystemConnector Updates the external connector specified by `externalDbSystemConnectorId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalDbSystemConnector.go.html to see an example of how to use UpdateExternalDbSystemConnector API. func (client DbManagementClient) UpdateExternalDbSystemConnector(ctx context.Context, request UpdateExternalDbSystemConnectorRequest) (response UpdateExternalDbSystemConnectorResponse, err error) { @@ -10459,7 +10463,7 @@ func (client DbManagementClient) updateExternalDbSystemConnector(ctx context.Con // UpdateExternalDbSystemDiscovery Updates the external DB system discovery specified by `externalDbSystemDiscoveryId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalDbSystemDiscovery.go.html to see an example of how to use UpdateExternalDbSystemDiscovery API. func (client DbManagementClient) UpdateExternalDbSystemDiscovery(ctx context.Context, request UpdateExternalDbSystemDiscoveryRequest) (response UpdateExternalDbSystemDiscoveryResponse, err error) { @@ -10516,7 +10520,7 @@ func (client DbManagementClient) updateExternalDbSystemDiscovery(ctx context.Con // UpdateExternalExadataInfrastructure Updates the details for the Exadata infrastructure specified by externalExadataInfrastructureId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalExadataInfrastructure.go.html to see an example of how to use UpdateExternalExadataInfrastructure API. // A default retry strategy applies to this operation UpdateExternalExadataInfrastructure() @@ -10579,7 +10583,7 @@ func (client DbManagementClient) updateExternalExadataInfrastructure(ctx context // UpdateExternalExadataStorageConnector Updates the Exadata storage server connector specified by exadataStorageConnectorId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalExadataStorageConnector.go.html to see an example of how to use UpdateExternalExadataStorageConnector API. func (client DbManagementClient) UpdateExternalExadataStorageConnector(ctx context.Context, request UpdateExternalExadataStorageConnectorRequest) (response UpdateExternalExadataStorageConnectorResponse, err error) { @@ -10636,7 +10640,7 @@ func (client DbManagementClient) updateExternalExadataStorageConnector(ctx conte // UpdateExternalListener Updates the external listener specified by `externalListenerId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateExternalListener.go.html to see an example of how to use UpdateExternalListener API. func (client DbManagementClient) UpdateExternalListener(ctx context.Context, request UpdateExternalListenerRequest) (response UpdateExternalListenerResponse, err error) { @@ -10693,7 +10697,7 @@ func (client DbManagementClient) updateExternalListener(ctx context.Context, req // UpdateJob Updates the details for the recurring scheduled job specified by jobId. Note that non-recurring (one time) jobs cannot be updated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateJob.go.html to see an example of how to use UpdateJob API. func (client DbManagementClient) UpdateJob(ctx context.Context, request UpdateJobRequest) (response UpdateJobResponse, err error) { @@ -10750,7 +10754,7 @@ func (client DbManagementClient) updateJob(ctx context.Context, request common.O // UpdateManagedDatabaseGroup Updates the Managed Database Group specified by managedDatabaseGroupId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateManagedDatabaseGroup.go.html to see an example of how to use UpdateManagedDatabaseGroup API. func (client DbManagementClient) UpdateManagedDatabaseGroup(ctx context.Context, request UpdateManagedDatabaseGroupRequest) (response UpdateManagedDatabaseGroupResponse, err error) { @@ -10807,7 +10811,7 @@ func (client DbManagementClient) updateManagedDatabaseGroup(ctx context.Context, // UpdatePreferredCredential Updates the preferred credential based on the credentialName. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdatePreferredCredential.go.html to see an example of how to use UpdatePreferredCredential API. func (client DbManagementClient) UpdatePreferredCredential(ctx context.Context, request UpdatePreferredCredentialRequest) (response UpdatePreferredCredentialResponse, err error) { @@ -10864,7 +10868,7 @@ func (client DbManagementClient) updatePreferredCredential(ctx context.Context, // UpdateTablespace Updates the attributes of the tablespace specified by tablespaceName within the Managed Database specified by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/UpdateTablespace.go.html to see an example of how to use UpdateTablespace API. func (client DbManagementClient) UpdateTablespace(ctx context.Context, request UpdateTablespaceRequest) (response UpdateTablespaceResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_diagnosability_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_diagnosability_client.go index 6f2c77018bc..1ef8eb359d7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_diagnosability_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_diagnosability_client.go @@ -95,7 +95,7 @@ func (client *DiagnosabilityClient) ConfigurationProvider() *common.Configuratio // ListAlertLogs Lists the alert logs for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListAlertLogs.go.html to see an example of how to use ListAlertLogs API. func (client DiagnosabilityClient) ListAlertLogs(ctx context.Context, request ListAlertLogsRequest) (response ListAlertLogsResponse, err error) { @@ -152,7 +152,7 @@ func (client DiagnosabilityClient) listAlertLogs(ctx context.Context, request co // ListAttentionLogs Lists the attention logs for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListAttentionLogs.go.html to see an example of how to use ListAttentionLogs API. func (client DiagnosabilityClient) ListAttentionLogs(ctx context.Context, request ListAttentionLogsRequest) (response ListAttentionLogsResponse, err error) { @@ -209,7 +209,7 @@ func (client DiagnosabilityClient) listAttentionLogs(ctx context.Context, reques // SummarizeAlertLogCounts Get the counts of alert logs for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAlertLogCounts.go.html to see an example of how to use SummarizeAlertLogCounts API. func (client DiagnosabilityClient) SummarizeAlertLogCounts(ctx context.Context, request SummarizeAlertLogCountsRequest) (response SummarizeAlertLogCountsResponse, err error) { @@ -266,7 +266,7 @@ func (client DiagnosabilityClient) summarizeAlertLogCounts(ctx context.Context, // SummarizeAttentionLogCounts Get the counts of attention logs for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SummarizeAttentionLogCounts.go.html to see an example of how to use SummarizeAttentionLogCounts API. func (client DiagnosabilityClient) SummarizeAttentionLogCounts(ctx context.Context, request SummarizeAttentionLogCountsRequest) (response SummarizeAttentionLogCountsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_perfhub_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_perfhub_client.go index 027207e4791..fffad30e691 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_perfhub_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_perfhub_client.go @@ -95,7 +95,7 @@ func (client *PerfhubClient) ConfigurationProvider() *common.ConfigurationProvid // ModifySnapshotSettings Modifies the snapshot settings for the specified Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ModifySnapshotSettings.go.html to see an example of how to use ModifySnapshotSettings API. func (client PerfhubClient) ModifySnapshotSettings(ctx context.Context, request ModifySnapshotSettingsRequest) (response ModifySnapshotSettingsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_sqltuning_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_sqltuning_client.go index 2fc2b086201..f6d8dc34b06 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_sqltuning_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/databasemanagement_sqltuning_client.go @@ -95,7 +95,7 @@ func (client *SqlTuningClient) ConfigurationProvider() *common.ConfigurationProv // CloneSqlTuningTask Clones and runs a SQL tuning task in the database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CloneSqlTuningTask.go.html to see an example of how to use CloneSqlTuningTask API. func (client SqlTuningClient) CloneSqlTuningTask(ctx context.Context, request CloneSqlTuningTaskRequest) (response CloneSqlTuningTaskResponse, err error) { @@ -157,7 +157,7 @@ func (client SqlTuningClient) cloneSqlTuningTask(ctx context.Context, request co // CreateSqlTuningSet Creates an empty Sql tuning set within the Managed Database specified by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/CreateSqlTuningSet.go.html to see an example of how to use CreateSqlTuningSet API. // A default retry strategy applies to this operation CreateSqlTuningSet() @@ -220,7 +220,7 @@ func (client SqlTuningClient) createSqlTuningSet(ctx context.Context, request co // DropSqlTuningSet Drops the Sql tuning set specified by sqlTuningSet within the Managed Database specified by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DropSqlTuningSet.go.html to see an example of how to use DropSqlTuningSet API. // A default retry strategy applies to this operation DropSqlTuningSet() @@ -283,7 +283,7 @@ func (client SqlTuningClient) dropSqlTuningSet(ctx context.Context, request comm // DropSqlTuningTask Drops a SQL tuning task and its related results from the database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DropSqlTuningTask.go.html to see an example of how to use DropSqlTuningTask API. func (client SqlTuningClient) DropSqlTuningTask(ctx context.Context, request DropSqlTuningTaskRequest) (response DropSqlTuningTaskResponse, err error) { @@ -346,7 +346,7 @@ func (client SqlTuningClient) dropSqlTuningTask(ctx context.Context, request com // DropSqlsInSqlTuningSet Deletes the Sqls in the specified Sql tuning set that matches the filter criteria provided in the basicFilter. // If basicFilter criteria is not provided, then entire Sqls in the Sql tuning set is deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/DropSqlsInSqlTuningSet.go.html to see an example of how to use DropSqlsInSqlTuningSet API. // A default retry strategy applies to this operation DropSqlsInSqlTuningSet() @@ -409,7 +409,7 @@ func (client SqlTuningClient) dropSqlsInSqlTuningSet(ctx context.Context, reques // FetchSqlTuningSet Fetch the details of Sql statements in the Sql tuning set specified by name, owner and optional filter parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/FetchSqlTuningSet.go.html to see an example of how to use FetchSqlTuningSet API. // A default retry strategy applies to this operation FetchSqlTuningSet() @@ -474,7 +474,7 @@ func (client SqlTuningClient) fetchSqlTuningSet(ctx context.Context, request com // A SQL tuning task may suggest a new execution plan for a SQL, // and this API retrieves the comparison report of the statistics of the two plans. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetExecutionPlanStatsComparision.go.html to see an example of how to use GetExecutionPlanStatsComparision API. func (client SqlTuningClient) GetExecutionPlanStatsComparision(ctx context.Context, request GetExecutionPlanStatsComparisionRequest) (response GetExecutionPlanStatsComparisionResponse, err error) { @@ -531,7 +531,7 @@ func (client SqlTuningClient) getExecutionPlanStatsComparision(ctx context.Conte // GetSqlExecutionPlan Retrieves a SQL execution plan for the SQL being tuned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetSqlExecutionPlan.go.html to see an example of how to use GetSqlExecutionPlan API. func (client SqlTuningClient) GetSqlExecutionPlan(ctx context.Context, request GetSqlExecutionPlanRequest) (response GetSqlExecutionPlanResponse, err error) { @@ -588,7 +588,7 @@ func (client SqlTuningClient) getSqlExecutionPlan(ctx context.Context, request c // GetSqlTuningAdvisorTaskSummaryReport Gets the summary report for the specified SQL Tuning Advisor task. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/GetSqlTuningAdvisorTaskSummaryReport.go.html to see an example of how to use GetSqlTuningAdvisorTaskSummaryReport API. func (client SqlTuningClient) GetSqlTuningAdvisorTaskSummaryReport(ctx context.Context, request GetSqlTuningAdvisorTaskSummaryReportRequest) (response GetSqlTuningAdvisorTaskSummaryReportResponse, err error) { @@ -645,7 +645,7 @@ func (client SqlTuningClient) getSqlTuningAdvisorTaskSummaryReport(ctx context.C // ListSqlTuningAdvisorTaskFindings Gets an array of the details of the findings that match specific filters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListSqlTuningAdvisorTaskFindings.go.html to see an example of how to use ListSqlTuningAdvisorTaskFindings API. func (client SqlTuningClient) ListSqlTuningAdvisorTaskFindings(ctx context.Context, request ListSqlTuningAdvisorTaskFindingsRequest) (response ListSqlTuningAdvisorTaskFindingsResponse, err error) { @@ -703,7 +703,7 @@ func (client SqlTuningClient) listSqlTuningAdvisorTaskFindings(ctx context.Conte // ListSqlTuningAdvisorTaskRecommendations Gets the findings and possible actions for a given object in a SQL tuning task. // The task ID and object ID are used to retrieve the findings and recommendations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListSqlTuningAdvisorTaskRecommendations.go.html to see an example of how to use ListSqlTuningAdvisorTaskRecommendations API. func (client SqlTuningClient) ListSqlTuningAdvisorTaskRecommendations(ctx context.Context, request ListSqlTuningAdvisorTaskRecommendationsRequest) (response ListSqlTuningAdvisorTaskRecommendationsResponse, err error) { @@ -760,7 +760,7 @@ func (client SqlTuningClient) listSqlTuningAdvisorTaskRecommendations(ctx contex // ListSqlTuningAdvisorTasks Lists the SQL Tuning Advisor tasks for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListSqlTuningAdvisorTasks.go.html to see an example of how to use ListSqlTuningAdvisorTasks API. func (client SqlTuningClient) ListSqlTuningAdvisorTasks(ctx context.Context, request ListSqlTuningAdvisorTasksRequest) (response ListSqlTuningAdvisorTasksResponse, err error) { @@ -817,7 +817,7 @@ func (client SqlTuningClient) listSqlTuningAdvisorTasks(ctx context.Context, req // ListSqlTuningSets Lists the SQL tuning sets for the specified Managed Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ListSqlTuningSets.go.html to see an example of how to use ListSqlTuningSets API. func (client SqlTuningClient) ListSqlTuningSets(ctx context.Context, request ListSqlTuningSetsRequest) (response ListSqlTuningSetsResponse, err error) { @@ -874,7 +874,7 @@ func (client SqlTuningClient) listSqlTuningSets(ctx context.Context, request com // LoadSqlTuningSet Load Sql statements into the Sql tuning set specified by name and optional filter parameters within the Managed Database specified by managedDatabaseId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/LoadSqlTuningSet.go.html to see an example of how to use LoadSqlTuningSet API. // A default retry strategy applies to this operation LoadSqlTuningSet() @@ -937,7 +937,7 @@ func (client SqlTuningClient) loadSqlTuningSet(ctx context.Context, request comm // SaveSqlTuningSetAs Saves the specified list of Sqls statements into another new Sql tuning set or loads into an existing Sql tuning set'. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/SaveSqlTuningSetAs.go.html to see an example of how to use SaveSqlTuningSetAs API. // A default retry strategy applies to this operation SaveSqlTuningSetAs() @@ -1000,7 +1000,7 @@ func (client SqlTuningClient) saveSqlTuningSetAs(ctx context.Context, request co // StartSqlTuningTask Starts a SQL tuning task for a given set of SQL statements from the active session history top SQL statements. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/StartSqlTuningTask.go.html to see an example of how to use StartSqlTuningTask API. func (client SqlTuningClient) StartSqlTuningTask(ctx context.Context, request StartSqlTuningTaskRequest) (response StartSqlTuningTaskResponse, err error) { @@ -1062,7 +1062,7 @@ func (client SqlTuningClient) startSqlTuningTask(ctx context.Context, request co // ValidateBasicFilter Executes a SQL query to check whether user entered basic filter criteria is valid or not. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemanagement/ValidateBasicFilter.go.html to see an example of how to use ValidateBasicFilter API. // A default retry strategy applies to this operation ValidateBasicFilter() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_asm.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_asm.go index 98d9a4dde57..2359923962b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_asm.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_asm.go @@ -56,37 +56,37 @@ type DiscoveredExternalAsm struct { Status DiscoveredExternalDbSystemComponentStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetComponentId returns ComponentId +// GetComponentId returns ComponentId func (m DiscoveredExternalAsm) GetComponentId() *string { return m.ComponentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DiscoveredExternalAsm) GetDisplayName() *string { return m.DisplayName } -//GetComponentName returns ComponentName +// GetComponentName returns ComponentName func (m DiscoveredExternalAsm) GetComponentName() *string { return m.ComponentName } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m DiscoveredExternalAsm) GetResourceId() *string { return m.ResourceId } -//GetIsSelectedForMonitoring returns IsSelectedForMonitoring +// GetIsSelectedForMonitoring returns IsSelectedForMonitoring func (m DiscoveredExternalAsm) GetIsSelectedForMonitoring() *bool { return m.IsSelectedForMonitoring } -//GetStatus returns Status +// GetStatus returns Status func (m DiscoveredExternalAsm) GetStatus() DiscoveredExternalDbSystemComponentStatusEnum { return m.Status } -//GetAssociatedComponents returns AssociatedComponents +// GetAssociatedComponents returns AssociatedComponents func (m DiscoveredExternalAsm) GetAssociatedComponents() []AssociatedComponent { return m.AssociatedComponents } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_asm_instance.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_asm_instance.go index abc8e6fb123..0287d38dbae 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_asm_instance.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_asm_instance.go @@ -52,37 +52,37 @@ type DiscoveredExternalAsmInstance struct { Status DiscoveredExternalDbSystemComponentStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetComponentId returns ComponentId +// GetComponentId returns ComponentId func (m DiscoveredExternalAsmInstance) GetComponentId() *string { return m.ComponentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DiscoveredExternalAsmInstance) GetDisplayName() *string { return m.DisplayName } -//GetComponentName returns ComponentName +// GetComponentName returns ComponentName func (m DiscoveredExternalAsmInstance) GetComponentName() *string { return m.ComponentName } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m DiscoveredExternalAsmInstance) GetResourceId() *string { return m.ResourceId } -//GetIsSelectedForMonitoring returns IsSelectedForMonitoring +// GetIsSelectedForMonitoring returns IsSelectedForMonitoring func (m DiscoveredExternalAsmInstance) GetIsSelectedForMonitoring() *bool { return m.IsSelectedForMonitoring } -//GetStatus returns Status +// GetStatus returns Status func (m DiscoveredExternalAsmInstance) GetStatus() DiscoveredExternalDbSystemComponentStatusEnum { return m.Status } -//GetAssociatedComponents returns AssociatedComponents +// GetAssociatedComponents returns AssociatedComponents func (m DiscoveredExternalAsmInstance) GetAssociatedComponents() []AssociatedComponent { return m.AssociatedComponents } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_cluster.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_cluster.go index fc72146af83..aaf93f2f622 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_cluster.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_cluster.go @@ -66,37 +66,37 @@ type DiscoveredExternalCluster struct { Status DiscoveredExternalDbSystemComponentStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetComponentId returns ComponentId +// GetComponentId returns ComponentId func (m DiscoveredExternalCluster) GetComponentId() *string { return m.ComponentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DiscoveredExternalCluster) GetDisplayName() *string { return m.DisplayName } -//GetComponentName returns ComponentName +// GetComponentName returns ComponentName func (m DiscoveredExternalCluster) GetComponentName() *string { return m.ComponentName } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m DiscoveredExternalCluster) GetResourceId() *string { return m.ResourceId } -//GetIsSelectedForMonitoring returns IsSelectedForMonitoring +// GetIsSelectedForMonitoring returns IsSelectedForMonitoring func (m DiscoveredExternalCluster) GetIsSelectedForMonitoring() *bool { return m.IsSelectedForMonitoring } -//GetStatus returns Status +// GetStatus returns Status func (m DiscoveredExternalCluster) GetStatus() DiscoveredExternalDbSystemComponentStatusEnum { return m.Status } -//GetAssociatedComponents returns AssociatedComponents +// GetAssociatedComponents returns AssociatedComponents func (m DiscoveredExternalCluster) GetAssociatedComponents() []AssociatedComponent { return m.AssociatedComponents } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_cluster_instance.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_cluster_instance.go index a3e564c21de..fac39b90ac5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_cluster_instance.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_cluster_instance.go @@ -60,37 +60,37 @@ type DiscoveredExternalClusterInstance struct { Status DiscoveredExternalDbSystemComponentStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetComponentId returns ComponentId +// GetComponentId returns ComponentId func (m DiscoveredExternalClusterInstance) GetComponentId() *string { return m.ComponentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DiscoveredExternalClusterInstance) GetDisplayName() *string { return m.DisplayName } -//GetComponentName returns ComponentName +// GetComponentName returns ComponentName func (m DiscoveredExternalClusterInstance) GetComponentName() *string { return m.ComponentName } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m DiscoveredExternalClusterInstance) GetResourceId() *string { return m.ResourceId } -//GetIsSelectedForMonitoring returns IsSelectedForMonitoring +// GetIsSelectedForMonitoring returns IsSelectedForMonitoring func (m DiscoveredExternalClusterInstance) GetIsSelectedForMonitoring() *bool { return m.IsSelectedForMonitoring } -//GetStatus returns Status +// GetStatus returns Status func (m DiscoveredExternalClusterInstance) GetStatus() DiscoveredExternalDbSystemComponentStatusEnum { return m.Status } -//GetAssociatedComponents returns AssociatedComponents +// GetAssociatedComponents returns AssociatedComponents func (m DiscoveredExternalClusterInstance) GetAssociatedComponents() []AssociatedComponent { return m.AssociatedComponents } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_database.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_database.go index 75e1bbfe0de..c131193ee76 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_database.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_database.go @@ -76,37 +76,37 @@ type DiscoveredExternalDatabase struct { DbType DatabaseSubTypeEnum `mandatory:"false" json:"dbType,omitempty"` } -//GetComponentId returns ComponentId +// GetComponentId returns ComponentId func (m DiscoveredExternalDatabase) GetComponentId() *string { return m.ComponentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DiscoveredExternalDatabase) GetDisplayName() *string { return m.DisplayName } -//GetComponentName returns ComponentName +// GetComponentName returns ComponentName func (m DiscoveredExternalDatabase) GetComponentName() *string { return m.ComponentName } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m DiscoveredExternalDatabase) GetResourceId() *string { return m.ResourceId } -//GetIsSelectedForMonitoring returns IsSelectedForMonitoring +// GetIsSelectedForMonitoring returns IsSelectedForMonitoring func (m DiscoveredExternalDatabase) GetIsSelectedForMonitoring() *bool { return m.IsSelectedForMonitoring } -//GetStatus returns Status +// GetStatus returns Status func (m DiscoveredExternalDatabase) GetStatus() DiscoveredExternalDbSystemComponentStatusEnum { return m.Status } -//GetAssociatedComponents returns AssociatedComponents +// GetAssociatedComponents returns AssociatedComponents func (m DiscoveredExternalDatabase) GetAssociatedComponents() []AssociatedComponent { return m.AssociatedComponents } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_db_home.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_db_home.go index f6dd10501b9..25627e906a6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_db_home.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_db_home.go @@ -46,37 +46,37 @@ type DiscoveredExternalDbHome struct { Status DiscoveredExternalDbSystemComponentStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetComponentId returns ComponentId +// GetComponentId returns ComponentId func (m DiscoveredExternalDbHome) GetComponentId() *string { return m.ComponentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DiscoveredExternalDbHome) GetDisplayName() *string { return m.DisplayName } -//GetComponentName returns ComponentName +// GetComponentName returns ComponentName func (m DiscoveredExternalDbHome) GetComponentName() *string { return m.ComponentName } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m DiscoveredExternalDbHome) GetResourceId() *string { return m.ResourceId } -//GetIsSelectedForMonitoring returns IsSelectedForMonitoring +// GetIsSelectedForMonitoring returns IsSelectedForMonitoring func (m DiscoveredExternalDbHome) GetIsSelectedForMonitoring() *bool { return m.IsSelectedForMonitoring } -//GetStatus returns Status +// GetStatus returns Status func (m DiscoveredExternalDbHome) GetStatus() DiscoveredExternalDbSystemComponentStatusEnum { return m.Status } -//GetAssociatedComponents returns AssociatedComponents +// GetAssociatedComponents returns AssociatedComponents func (m DiscoveredExternalDbHome) GetAssociatedComponents() []AssociatedComponent { return m.AssociatedComponents } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_db_node.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_db_node.go index 0b8b6f482f5..6885fb2e26c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_db_node.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_db_node.go @@ -54,37 +54,37 @@ type DiscoveredExternalDbNode struct { Status DiscoveredExternalDbSystemComponentStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetComponentId returns ComponentId +// GetComponentId returns ComponentId func (m DiscoveredExternalDbNode) GetComponentId() *string { return m.ComponentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DiscoveredExternalDbNode) GetDisplayName() *string { return m.DisplayName } -//GetComponentName returns ComponentName +// GetComponentName returns ComponentName func (m DiscoveredExternalDbNode) GetComponentName() *string { return m.ComponentName } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m DiscoveredExternalDbNode) GetResourceId() *string { return m.ResourceId } -//GetIsSelectedForMonitoring returns IsSelectedForMonitoring +// GetIsSelectedForMonitoring returns IsSelectedForMonitoring func (m DiscoveredExternalDbNode) GetIsSelectedForMonitoring() *bool { return m.IsSelectedForMonitoring } -//GetStatus returns Status +// GetStatus returns Status func (m DiscoveredExternalDbNode) GetStatus() DiscoveredExternalDbSystemComponentStatusEnum { return m.Status } -//GetAssociatedComponents returns AssociatedComponents +// GetAssociatedComponents returns AssociatedComponents func (m DiscoveredExternalDbNode) GetAssociatedComponents() []AssociatedComponent { return m.AssociatedComponents } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_listener.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_listener.go index 8f3ed60ef71..974273bef10 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_listener.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_listener.go @@ -75,37 +75,37 @@ type DiscoveredExternalListener struct { Status DiscoveredExternalDbSystemComponentStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetComponentId returns ComponentId +// GetComponentId returns ComponentId func (m DiscoveredExternalListener) GetComponentId() *string { return m.ComponentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DiscoveredExternalListener) GetDisplayName() *string { return m.DisplayName } -//GetComponentName returns ComponentName +// GetComponentName returns ComponentName func (m DiscoveredExternalListener) GetComponentName() *string { return m.ComponentName } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m DiscoveredExternalListener) GetResourceId() *string { return m.ResourceId } -//GetIsSelectedForMonitoring returns IsSelectedForMonitoring +// GetIsSelectedForMonitoring returns IsSelectedForMonitoring func (m DiscoveredExternalListener) GetIsSelectedForMonitoring() *bool { return m.IsSelectedForMonitoring } -//GetStatus returns Status +// GetStatus returns Status func (m DiscoveredExternalListener) GetStatus() DiscoveredExternalDbSystemComponentStatusEnum { return m.Status } -//GetAssociatedComponents returns AssociatedComponents +// GetAssociatedComponents returns AssociatedComponents func (m DiscoveredExternalListener) GetAssociatedComponents() []AssociatedComponent { return m.AssociatedComponents } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_pluggable_database.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_pluggable_database.go index b88bb624351..8ed086cc2ce 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_pluggable_database.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/discovered_external_pluggable_database.go @@ -54,37 +54,37 @@ type DiscoveredExternalPluggableDatabase struct { Status DiscoveredExternalDbSystemComponentStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetComponentId returns ComponentId +// GetComponentId returns ComponentId func (m DiscoveredExternalPluggableDatabase) GetComponentId() *string { return m.ComponentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DiscoveredExternalPluggableDatabase) GetDisplayName() *string { return m.DisplayName } -//GetComponentName returns ComponentName +// GetComponentName returns ComponentName func (m DiscoveredExternalPluggableDatabase) GetComponentName() *string { return m.ComponentName } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m DiscoveredExternalPluggableDatabase) GetResourceId() *string { return m.ResourceId } -//GetIsSelectedForMonitoring returns IsSelectedForMonitoring +// GetIsSelectedForMonitoring returns IsSelectedForMonitoring func (m DiscoveredExternalPluggableDatabase) GetIsSelectedForMonitoring() *bool { return m.IsSelectedForMonitoring } -//GetStatus returns Status +// GetStatus returns Status func (m DiscoveredExternalPluggableDatabase) GetStatus() DiscoveredExternalDbSystemComponentStatusEnum { return m.Status } -//GetAssociatedComponents returns AssociatedComponents +// GetAssociatedComponents returns AssociatedComponents func (m DiscoveredExternalPluggableDatabase) GetAssociatedComponents() []AssociatedComponent { return m.AssociatedComponents } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_database_system_discovery_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_database_system_discovery_summary.go index 113765bc0aa..cef885537f9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_database_system_discovery_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_database_system_discovery_summary.go @@ -64,52 +64,52 @@ type ExternalDatabaseSystemDiscoverySummary struct { DiscoverStatus EntityDiscoveredDiscoverStatusEnum `mandatory:"false" json:"discoverStatus,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalDatabaseSystemDiscoverySummary) GetId() *string { return m.Id } -//GetAgentId returns AgentId +// GetAgentId returns AgentId func (m ExternalDatabaseSystemDiscoverySummary) GetAgentId() *string { return m.AgentId } -//GetConnectorId returns ConnectorId +// GetConnectorId returns ConnectorId func (m ExternalDatabaseSystemDiscoverySummary) GetConnectorId() *string { return m.ConnectorId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalDatabaseSystemDiscoverySummary) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalDatabaseSystemDiscoverySummary) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalDatabaseSystemDiscoverySummary) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalDatabaseSystemDiscoverySummary) GetStatus() *string { return m.Status } -//GetDiscoverStatus returns DiscoverStatus +// GetDiscoverStatus returns DiscoverStatus func (m ExternalDatabaseSystemDiscoverySummary) GetDiscoverStatus() EntityDiscoveredDiscoverStatusEnum { return m.DiscoverStatus } -//GetDiscoverErrorCode returns DiscoverErrorCode +// GetDiscoverErrorCode returns DiscoverErrorCode func (m ExternalDatabaseSystemDiscoverySummary) GetDiscoverErrorCode() *string { return m.DiscoverErrorCode } -//GetDiscoverErrorMsg returns DiscoverErrorMsg +// GetDiscoverErrorMsg returns DiscoverErrorMsg func (m ExternalDatabaseSystemDiscoverySummary) GetDiscoverErrorMsg() *string { return m.DiscoverErrorMsg } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_db_system_discovery_macs_connector.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_db_system_discovery_macs_connector.go index 9bdbf229948..a7ac620b0f2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_db_system_discovery_macs_connector.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_db_system_discovery_macs_connector.go @@ -43,22 +43,22 @@ type ExternalDbSystemDiscoveryMacsConnector struct { ConnectionInfo ExternalDbSystemConnectionInfo `mandatory:"false" json:"connectionInfo"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalDbSystemDiscoveryMacsConnector) GetDisplayName() *string { return m.DisplayName } -//GetConnectionStatus returns ConnectionStatus +// GetConnectionStatus returns ConnectionStatus func (m ExternalDbSystemDiscoveryMacsConnector) GetConnectionStatus() *string { return m.ConnectionStatus } -//GetConnectionFailureMessage returns ConnectionFailureMessage +// GetConnectionFailureMessage returns ConnectionFailureMessage func (m ExternalDbSystemDiscoveryMacsConnector) GetConnectionFailureMessage() *string { return m.ConnectionFailureMessage } -//GetTimeConnectionStatusLastUpdated returns TimeConnectionStatusLastUpdated +// GetTimeConnectionStatusLastUpdated returns TimeConnectionStatusLastUpdated func (m ExternalDbSystemDiscoveryMacsConnector) GetTimeConnectionStatusLastUpdated() *common.SDKTime { return m.TimeConnectionStatusLastUpdated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_db_system_macs_connector.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_db_system_macs_connector.go index 0baa9662a98..4e9e3149e68 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_db_system_macs_connector.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_db_system_macs_connector.go @@ -64,57 +64,57 @@ type ExternalDbSystemMacsConnector struct { LifecycleState ExternalDbSystemConnectorLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m ExternalDbSystemMacsConnector) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalDbSystemMacsConnector) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ExternalDbSystemMacsConnector) GetCompartmentId() *string { return m.CompartmentId } -//GetExternalDbSystemId returns ExternalDbSystemId +// GetExternalDbSystemId returns ExternalDbSystemId func (m ExternalDbSystemMacsConnector) GetExternalDbSystemId() *string { return m.ExternalDbSystemId } -//GetConnectionStatus returns ConnectionStatus +// GetConnectionStatus returns ConnectionStatus func (m ExternalDbSystemMacsConnector) GetConnectionStatus() *string { return m.ConnectionStatus } -//GetConnectionFailureMessage returns ConnectionFailureMessage +// GetConnectionFailureMessage returns ConnectionFailureMessage func (m ExternalDbSystemMacsConnector) GetConnectionFailureMessage() *string { return m.ConnectionFailureMessage } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalDbSystemMacsConnector) GetLifecycleState() ExternalDbSystemConnectorLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalDbSystemMacsConnector) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeConnectionStatusLastUpdated returns TimeConnectionStatusLastUpdated +// GetTimeConnectionStatusLastUpdated returns TimeConnectionStatusLastUpdated func (m ExternalDbSystemMacsConnector) GetTimeConnectionStatusLastUpdated() *common.SDKTime { return m.TimeConnectionStatusLastUpdated } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalDbSystemMacsConnector) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalDbSystemMacsConnector) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_database_system_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_database_system_summary.go index d6c93aca07d..6834b385228 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_database_system_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_database_system_summary.go @@ -59,52 +59,52 @@ type ExternalExadataDatabaseSystemSummary struct { LifecycleState DbmResourceLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataDatabaseSystemSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataDatabaseSystemSummary) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataDatabaseSystemSummary) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataDatabaseSystemSummary) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataDatabaseSystemSummary) GetStatus() *string { return m.Status } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalExadataDatabaseSystemSummary) GetLifecycleState() DbmResourceLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalExadataDatabaseSystemSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalExadataDatabaseSystemSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalExadataDatabaseSystemSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetAdditionalDetails returns AdditionalDetails +// GetAdditionalDetails returns AdditionalDetails func (m ExternalExadataDatabaseSystemSummary) GetAdditionalDetails() map[string]string { return m.AdditionalDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure.go index 0ebf49b1c4e..50fd5162217 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure.go @@ -70,52 +70,52 @@ type ExternalExadataInfrastructure struct { LifecycleState DbmResourceLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataInfrastructure) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataInfrastructure) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataInfrastructure) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataInfrastructure) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataInfrastructure) GetStatus() *string { return m.Status } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalExadataInfrastructure) GetLifecycleState() DbmResourceLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalExadataInfrastructure) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalExadataInfrastructure) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalExadataInfrastructure) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetAdditionalDetails returns AdditionalDetails +// GetAdditionalDetails returns AdditionalDetails func (m ExternalExadataInfrastructure) GetAdditionalDetails() map[string]string { return m.AdditionalDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_discovery.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_discovery.go index f5b7eddd42b..a7fe71f013f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_discovery.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_discovery.go @@ -75,52 +75,52 @@ type ExternalExadataInfrastructureDiscovery struct { DiscoverStatus EntityDiscoveredDiscoverStatusEnum `mandatory:"false" json:"discoverStatus,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataInfrastructureDiscovery) GetId() *string { return m.Id } -//GetAgentId returns AgentId +// GetAgentId returns AgentId func (m ExternalExadataInfrastructureDiscovery) GetAgentId() *string { return m.AgentId } -//GetConnectorId returns ConnectorId +// GetConnectorId returns ConnectorId func (m ExternalExadataInfrastructureDiscovery) GetConnectorId() *string { return m.ConnectorId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataInfrastructureDiscovery) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataInfrastructureDiscovery) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataInfrastructureDiscovery) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataInfrastructureDiscovery) GetStatus() *string { return m.Status } -//GetDiscoverStatus returns DiscoverStatus +// GetDiscoverStatus returns DiscoverStatus func (m ExternalExadataInfrastructureDiscovery) GetDiscoverStatus() EntityDiscoveredDiscoverStatusEnum { return m.DiscoverStatus } -//GetDiscoverErrorCode returns DiscoverErrorCode +// GetDiscoverErrorCode returns DiscoverErrorCode func (m ExternalExadataInfrastructureDiscovery) GetDiscoverErrorCode() *string { return m.DiscoverErrorCode } -//GetDiscoverErrorMsg returns DiscoverErrorMsg +// GetDiscoverErrorMsg returns DiscoverErrorMsg func (m ExternalExadataInfrastructureDiscovery) GetDiscoverErrorMsg() *string { return m.DiscoverErrorMsg } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_discovery_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_discovery_summary.go index d2a5c23a9ec..46c936965f9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_discovery_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_discovery_summary.go @@ -55,52 +55,52 @@ type ExternalExadataInfrastructureDiscoverySummary struct { DiscoverStatus EntityDiscoveredDiscoverStatusEnum `mandatory:"false" json:"discoverStatus,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataInfrastructureDiscoverySummary) GetId() *string { return m.Id } -//GetAgentId returns AgentId +// GetAgentId returns AgentId func (m ExternalExadataInfrastructureDiscoverySummary) GetAgentId() *string { return m.AgentId } -//GetConnectorId returns ConnectorId +// GetConnectorId returns ConnectorId func (m ExternalExadataInfrastructureDiscoverySummary) GetConnectorId() *string { return m.ConnectorId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataInfrastructureDiscoverySummary) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataInfrastructureDiscoverySummary) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataInfrastructureDiscoverySummary) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataInfrastructureDiscoverySummary) GetStatus() *string { return m.Status } -//GetDiscoverStatus returns DiscoverStatus +// GetDiscoverStatus returns DiscoverStatus func (m ExternalExadataInfrastructureDiscoverySummary) GetDiscoverStatus() EntityDiscoveredDiscoverStatusEnum { return m.DiscoverStatus } -//GetDiscoverErrorCode returns DiscoverErrorCode +// GetDiscoverErrorCode returns DiscoverErrorCode func (m ExternalExadataInfrastructureDiscoverySummary) GetDiscoverErrorCode() *string { return m.DiscoverErrorCode } -//GetDiscoverErrorMsg returns DiscoverErrorMsg +// GetDiscoverErrorMsg returns DiscoverErrorMsg func (m ExternalExadataInfrastructureDiscoverySummary) GetDiscoverErrorMsg() *string { return m.DiscoverErrorMsg } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_summary.go index 440de1eeed3..49241f48166 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_infrastructure_summary.go @@ -65,52 +65,52 @@ type ExternalExadataInfrastructureSummary struct { LifecycleState DbmResourceLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataInfrastructureSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataInfrastructureSummary) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataInfrastructureSummary) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataInfrastructureSummary) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataInfrastructureSummary) GetStatus() *string { return m.Status } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalExadataInfrastructureSummary) GetLifecycleState() DbmResourceLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalExadataInfrastructureSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalExadataInfrastructureSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalExadataInfrastructureSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetAdditionalDetails returns AdditionalDetails +// GetAdditionalDetails returns AdditionalDetails func (m ExternalExadataInfrastructureSummary) GetAdditionalDetails() map[string]string { return m.AdditionalDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_connector.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_connector.go index b280c720caf..a51c43daea3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_connector.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_connector.go @@ -65,52 +65,52 @@ type ExternalExadataStorageConnector struct { LifecycleState DbmResourceLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataStorageConnector) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataStorageConnector) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataStorageConnector) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataStorageConnector) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataStorageConnector) GetStatus() *string { return m.Status } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalExadataStorageConnector) GetLifecycleState() DbmResourceLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalExadataStorageConnector) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalExadataStorageConnector) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalExadataStorageConnector) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetAdditionalDetails returns AdditionalDetails +// GetAdditionalDetails returns AdditionalDetails func (m ExternalExadataStorageConnector) GetAdditionalDetails() map[string]string { return m.AdditionalDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_connector_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_connector_summary.go index 2b8ea85e491..6829ec46ae4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_connector_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_connector_summary.go @@ -62,52 +62,52 @@ type ExternalExadataStorageConnectorSummary struct { LifecycleState DbmResourceLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataStorageConnectorSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataStorageConnectorSummary) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataStorageConnectorSummary) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataStorageConnectorSummary) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataStorageConnectorSummary) GetStatus() *string { return m.Status } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalExadataStorageConnectorSummary) GetLifecycleState() DbmResourceLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalExadataStorageConnectorSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalExadataStorageConnectorSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalExadataStorageConnectorSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetAdditionalDetails returns AdditionalDetails +// GetAdditionalDetails returns AdditionalDetails func (m ExternalExadataStorageConnectorSummary) GetAdditionalDetails() map[string]string { return m.AdditionalDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_grid.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_grid.go index 83ec6b44ef3..369763cdb65 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_grid.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_grid.go @@ -62,52 +62,52 @@ type ExternalExadataStorageGrid struct { LifecycleState DbmResourceLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataStorageGrid) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataStorageGrid) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataStorageGrid) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataStorageGrid) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataStorageGrid) GetStatus() *string { return m.Status } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalExadataStorageGrid) GetLifecycleState() DbmResourceLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalExadataStorageGrid) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalExadataStorageGrid) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalExadataStorageGrid) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetAdditionalDetails returns AdditionalDetails +// GetAdditionalDetails returns AdditionalDetails func (m ExternalExadataStorageGrid) GetAdditionalDetails() map[string]string { return m.AdditionalDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_grid_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_grid_summary.go index 138797faa2b..d6cd46b0488 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_grid_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_grid_summary.go @@ -56,52 +56,52 @@ type ExternalExadataStorageGridSummary struct { LifecycleState DbmResourceLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataStorageGridSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataStorageGridSummary) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataStorageGridSummary) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataStorageGridSummary) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataStorageGridSummary) GetStatus() *string { return m.Status } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalExadataStorageGridSummary) GetLifecycleState() DbmResourceLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalExadataStorageGridSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalExadataStorageGridSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalExadataStorageGridSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetAdditionalDetails returns AdditionalDetails +// GetAdditionalDetails returns AdditionalDetails func (m ExternalExadataStorageGridSummary) GetAdditionalDetails() map[string]string { return m.AdditionalDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_server.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_server.go index 66be0f56632..a17f435ce31 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_server.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_server.go @@ -85,52 +85,52 @@ type ExternalExadataStorageServer struct { LifecycleState DbmResourceLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataStorageServer) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataStorageServer) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataStorageServer) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataStorageServer) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataStorageServer) GetStatus() *string { return m.Status } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalExadataStorageServer) GetLifecycleState() DbmResourceLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalExadataStorageServer) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalExadataStorageServer) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalExadataStorageServer) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetAdditionalDetails returns AdditionalDetails +// GetAdditionalDetails returns AdditionalDetails func (m ExternalExadataStorageServer) GetAdditionalDetails() map[string]string { return m.AdditionalDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_server_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_server_summary.go index d9e23945a6d..7642e16064b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_server_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_exadata_storage_server_summary.go @@ -80,52 +80,52 @@ type ExternalExadataStorageServerSummary struct { LifecycleState DbmResourceLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalExadataStorageServerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalExadataStorageServerSummary) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalExadataStorageServerSummary) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalExadataStorageServerSummary) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalExadataStorageServerSummary) GetStatus() *string { return m.Status } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ExternalExadataStorageServerSummary) GetLifecycleState() DbmResourceLifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ExternalExadataStorageServerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ExternalExadataStorageServerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ExternalExadataStorageServerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetAdditionalDetails returns AdditionalDetails +// GetAdditionalDetails returns AdditionalDetails func (m ExternalExadataStorageServerSummary) GetAdditionalDetails() map[string]string { return m.AdditionalDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_ipc_endpoint.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_ipc_endpoint.go index a8f4e330973..fa6b41e26cd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_ipc_endpoint.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_ipc_endpoint.go @@ -28,7 +28,7 @@ type ExternalListenerIpcEndpoint struct { Services []string `mandatory:"false" json:"services"` } -//GetServices returns Services +// GetServices returns Services func (m ExternalListenerIpcEndpoint) GetServices() []string { return m.Services } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_tcp_endpoint.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_tcp_endpoint.go index 49b0dcff99f..84d16eb16c2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_tcp_endpoint.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_tcp_endpoint.go @@ -31,7 +31,7 @@ type ExternalListenerTcpEndpoint struct { Services []string `mandatory:"false" json:"services"` } -//GetServices returns Services +// GetServices returns Services func (m ExternalListenerTcpEndpoint) GetServices() []string { return m.Services } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_tcps_endpoint.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_tcps_endpoint.go index b2113670a73..39f09b6667d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_tcps_endpoint.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_listener_tcps_endpoint.go @@ -31,7 +31,7 @@ type ExternalListenerTcpsEndpoint struct { Services []string `mandatory:"false" json:"services"` } -//GetServices returns Services +// GetServices returns Services func (m ExternalListenerTcpsEndpoint) GetServices() []string { return m.Services } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_storage_grid_discovery_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_storage_grid_discovery_summary.go index 0cef3c80ced..5e067cdb7b0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_storage_grid_discovery_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_storage_grid_discovery_summary.go @@ -55,52 +55,52 @@ type ExternalStorageGridDiscoverySummary struct { DiscoverStatus EntityDiscoveredDiscoverStatusEnum `mandatory:"false" json:"discoverStatus,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalStorageGridDiscoverySummary) GetId() *string { return m.Id } -//GetAgentId returns AgentId +// GetAgentId returns AgentId func (m ExternalStorageGridDiscoverySummary) GetAgentId() *string { return m.AgentId } -//GetConnectorId returns ConnectorId +// GetConnectorId returns ConnectorId func (m ExternalStorageGridDiscoverySummary) GetConnectorId() *string { return m.ConnectorId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalStorageGridDiscoverySummary) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalStorageGridDiscoverySummary) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalStorageGridDiscoverySummary) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalStorageGridDiscoverySummary) GetStatus() *string { return m.Status } -//GetDiscoverStatus returns DiscoverStatus +// GetDiscoverStatus returns DiscoverStatus func (m ExternalStorageGridDiscoverySummary) GetDiscoverStatus() EntityDiscoveredDiscoverStatusEnum { return m.DiscoverStatus } -//GetDiscoverErrorCode returns DiscoverErrorCode +// GetDiscoverErrorCode returns DiscoverErrorCode func (m ExternalStorageGridDiscoverySummary) GetDiscoverErrorCode() *string { return m.DiscoverErrorCode } -//GetDiscoverErrorMsg returns DiscoverErrorMsg +// GetDiscoverErrorMsg returns DiscoverErrorMsg func (m ExternalStorageGridDiscoverySummary) GetDiscoverErrorMsg() *string { return m.DiscoverErrorMsg } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_storage_server_discovery_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_storage_server_discovery_summary.go index 6253e1df56d..a24eabff915 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_storage_server_discovery_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/external_storage_server_discovery_summary.go @@ -67,52 +67,52 @@ type ExternalStorageServerDiscoverySummary struct { DiscoverStatus EntityDiscoveredDiscoverStatusEnum `mandatory:"false" json:"discoverStatus,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ExternalStorageServerDiscoverySummary) GetId() *string { return m.Id } -//GetAgentId returns AgentId +// GetAgentId returns AgentId func (m ExternalStorageServerDiscoverySummary) GetAgentId() *string { return m.AgentId } -//GetConnectorId returns ConnectorId +// GetConnectorId returns ConnectorId func (m ExternalStorageServerDiscoverySummary) GetConnectorId() *string { return m.ConnectorId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExternalStorageServerDiscoverySummary) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m ExternalStorageServerDiscoverySummary) GetVersion() *string { return m.Version } -//GetInternalId returns InternalId +// GetInternalId returns InternalId func (m ExternalStorageServerDiscoverySummary) GetInternalId() *string { return m.InternalId } -//GetStatus returns Status +// GetStatus returns Status func (m ExternalStorageServerDiscoverySummary) GetStatus() *string { return m.Status } -//GetDiscoverStatus returns DiscoverStatus +// GetDiscoverStatus returns DiscoverStatus func (m ExternalStorageServerDiscoverySummary) GetDiscoverStatus() EntityDiscoveredDiscoverStatusEnum { return m.DiscoverStatus } -//GetDiscoverErrorCode returns DiscoverErrorCode +// GetDiscoverErrorCode returns DiscoverErrorCode func (m ExternalStorageServerDiscoverySummary) GetDiscoverErrorCode() *string { return m.DiscoverErrorCode } -//GetDiscoverErrorMsg returns DiscoverErrorMsg +// GetDiscoverErrorMsg returns DiscoverErrorMsg func (m ExternalStorageServerDiscoverySummary) GetDiscoverErrorMsg() *string { return m.DiscoverErrorMsg } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/managed_database_password_credential.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/managed_database_password_credential.go index 2520b94da4e..fd4e229e115 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/managed_database_password_credential.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/managed_database_password_credential.go @@ -31,12 +31,12 @@ type ManagedDatabasePasswordCredential struct { Role ManagedDatabaseCredentialRoleEnum `mandatory:"true" json:"role"` } -//GetUsername returns Username +// GetUsername returns Username func (m ManagedDatabasePasswordCredential) GetUsername() *string { return m.Username } -//GetRole returns Role +// GetRole returns Role func (m ManagedDatabasePasswordCredential) GetRole() ManagedDatabaseCredentialRoleEnum { return m.Role } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/managed_database_secret_credential.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/managed_database_secret_credential.go index cefea037782..d1b53e4b584 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/managed_database_secret_credential.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/managed_database_secret_credential.go @@ -32,12 +32,12 @@ type ManagedDatabaseSecretCredential struct { Role ManagedDatabaseCredentialRoleEnum `mandatory:"true" json:"role"` } -//GetUsername returns Username +// GetUsername returns Username func (m ManagedDatabaseSecretCredential) GetUsername() *string { return m.Username } -//GetRole returns Role +// GetRole returns Role func (m ManagedDatabaseSecretCredential) GetRole() ManagedDatabaseCredentialRoleEnum { return m.Role } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/patch_merge_instruction.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/patch_merge_instruction.go index 9bda6f896d7..8a5d59f95af 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/patch_merge_instruction.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/patch_merge_instruction.go @@ -36,7 +36,7 @@ type PatchMergeInstruction struct { Value *interface{} `mandatory:"false" json:"value"` } -//GetSelection returns Selection +// GetSelection returns Selection func (m PatchMergeInstruction) GetSelection() *string { return m.Selection } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_job.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_job.go index 4f2a64f8670..65f9003bf3d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_job.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_job.go @@ -88,82 +88,82 @@ type SqlJob struct { LifecycleState JobLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m SqlJob) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m SqlJob) GetCompartmentId() *string { return m.CompartmentId } -//GetName returns Name +// GetName returns Name func (m SqlJob) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m SqlJob) GetDescription() *string { return m.Description } -//GetManagedDatabaseGroupId returns ManagedDatabaseGroupId +// GetManagedDatabaseGroupId returns ManagedDatabaseGroupId func (m SqlJob) GetManagedDatabaseGroupId() *string { return m.ManagedDatabaseGroupId } -//GetManagedDatabaseId returns ManagedDatabaseId +// GetManagedDatabaseId returns ManagedDatabaseId func (m SqlJob) GetManagedDatabaseId() *string { return m.ManagedDatabaseId } -//GetManagedDatabasesDetails returns ManagedDatabasesDetails +// GetManagedDatabasesDetails returns ManagedDatabasesDetails func (m SqlJob) GetManagedDatabasesDetails() []JobDatabase { return m.ManagedDatabasesDetails } -//GetDatabaseSubType returns DatabaseSubType +// GetDatabaseSubType returns DatabaseSubType func (m SqlJob) GetDatabaseSubType() DatabaseSubTypeEnum { return m.DatabaseSubType } -//GetScheduleType returns ScheduleType +// GetScheduleType returns ScheduleType func (m SqlJob) GetScheduleType() JobScheduleTypeEnum { return m.ScheduleType } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SqlJob) GetLifecycleState() JobLifecycleStateEnum { return m.LifecycleState } -//GetTimeout returns Timeout +// GetTimeout returns Timeout func (m SqlJob) GetTimeout() *string { return m.Timeout } -//GetResultLocation returns ResultLocation +// GetResultLocation returns ResultLocation func (m SqlJob) GetResultLocation() JobExecutionResultLocation { return m.ResultLocation } -//GetScheduleDetails returns ScheduleDetails +// GetScheduleDetails returns ScheduleDetails func (m SqlJob) GetScheduleDetails() *JobScheduleDetails { return m.ScheduleDetails } -//GetSubmissionErrorMessage returns SubmissionErrorMessage +// GetSubmissionErrorMessage returns SubmissionErrorMessage func (m SqlJob) GetSubmissionErrorMessage() *string { return m.SubmissionErrorMessage } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SqlJob) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SqlJob) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_set_admin_password_credential_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_set_admin_password_credential_details.go index 6ce58346635..6be1392cb2e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_set_admin_password_credential_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_set_admin_password_credential_details.go @@ -31,12 +31,12 @@ type SqlTuningSetAdminPasswordCredentialDetails struct { Role SqlTuningSetAdminCredentialDetailsRoleEnum `mandatory:"true" json:"role"` } -//GetUsername returns Username +// GetUsername returns Username func (m SqlTuningSetAdminPasswordCredentialDetails) GetUsername() *string { return m.Username } -//GetRole returns Role +// GetRole returns Role func (m SqlTuningSetAdminPasswordCredentialDetails) GetRole() SqlTuningSetAdminCredentialDetailsRoleEnum { return m.Role } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_set_admin_secret_credential_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_set_admin_secret_credential_details.go index 072c240ff12..9b7a2f817e4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_set_admin_secret_credential_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_set_admin_secret_credential_details.go @@ -32,12 +32,12 @@ type SqlTuningSetAdminSecretCredentialDetails struct { Role SqlTuningSetAdminCredentialDetailsRoleEnum `mandatory:"true" json:"role"` } -//GetUsername returns Username +// GetUsername returns Username func (m SqlTuningSetAdminSecretCredentialDetails) GetUsername() *string { return m.Username } -//GetRole returns Role +// GetRole returns Role func (m SqlTuningSetAdminSecretCredentialDetails) GetRole() SqlTuningSetAdminCredentialDetailsRoleEnum { return m.Role } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_task_password_credential_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_task_password_credential_details.go index ba22be534a9..4ee55c74d4d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_task_password_credential_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_task_password_credential_details.go @@ -31,12 +31,12 @@ type SqlTuningTaskPasswordCredentialDetails struct { Role SqlTuningTaskCredentialDetailsRoleEnum `mandatory:"true" json:"role"` } -//GetUsername returns Username +// GetUsername returns Username func (m SqlTuningTaskPasswordCredentialDetails) GetUsername() *string { return m.Username } -//GetRole returns Role +// GetRole returns Role func (m SqlTuningTaskPasswordCredentialDetails) GetRole() SqlTuningTaskCredentialDetailsRoleEnum { return m.Role } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_task_secret_credential_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_task_secret_credential_details.go index c3d469ebaa4..fb368d1615a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_task_secret_credential_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/sql_tuning_task_secret_credential_details.go @@ -32,12 +32,12 @@ type SqlTuningTaskSecretCredentialDetails struct { Role SqlTuningTaskCredentialDetailsRoleEnum `mandatory:"true" json:"role"` } -//GetUsername returns Username +// GetUsername returns Username func (m SqlTuningTaskSecretCredentialDetails) GetUsername() *string { return m.Username } -//GetRole returns Role +// GetRole returns Role func (m SqlTuningTaskSecretCredentialDetails) GetRole() SqlTuningTaskCredentialDetailsRoleEnum { return m.Role } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/tablespace_admin_password_credential_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/tablespace_admin_password_credential_details.go index 24c495b5f09..eec247cf9b6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/tablespace_admin_password_credential_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/tablespace_admin_password_credential_details.go @@ -31,12 +31,12 @@ type TablespaceAdminPasswordCredentialDetails struct { Role TablespaceAdminCredentialDetailsRoleEnum `mandatory:"true" json:"role"` } -//GetUsername returns Username +// GetUsername returns Username func (m TablespaceAdminPasswordCredentialDetails) GetUsername() *string { return m.Username } -//GetRole returns Role +// GetRole returns Role func (m TablespaceAdminPasswordCredentialDetails) GetRole() TablespaceAdminCredentialDetailsRoleEnum { return m.Role } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/tablespace_admin_secret_credential_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/tablespace_admin_secret_credential_details.go index f6aad033689..a0928d6d502 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/tablespace_admin_secret_credential_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/tablespace_admin_secret_credential_details.go @@ -32,12 +32,12 @@ type TablespaceAdminSecretCredentialDetails struct { Role TablespaceAdminCredentialDetailsRoleEnum `mandatory:"true" json:"role"` } -//GetUsername returns Username +// GetUsername returns Username func (m TablespaceAdminSecretCredentialDetails) GetUsername() *string { return m.Username } -//GetRole returns Role +// GetRole returns Role func (m TablespaceAdminSecretCredentialDetails) GetRole() TablespaceAdminCredentialDetailsRoleEnum { return m.Role } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/update_sql_job_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/update_sql_job_details.go index f25e98d277e..30a6d889814 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/update_sql_job_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemanagement/update_sql_job_details.go @@ -55,22 +55,22 @@ type UpdateSqlJobDetails struct { Role SqlJobRoleEnum `mandatory:"false" json:"role,omitempty"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateSqlJobDetails) GetDescription() *string { return m.Description } -//GetTimeout returns Timeout +// GetTimeout returns Timeout func (m UpdateSqlJobDetails) GetTimeout() *string { return m.Timeout } -//GetResultLocation returns ResultLocation +// GetResultLocation returns ResultLocation func (m UpdateSqlJobDetails) GetResultLocation() JobExecutionResultLocation { return m.ResultLocation } -//GetScheduleDetails returns ScheduleDetails +// GetScheduleDetails returns ScheduleDetails func (m UpdateSqlJobDetails) GetScheduleDetails() *JobScheduleDetails { return m.ScheduleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/create_curl_transfer_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/create_curl_transfer_details.go index 7d2414d3c4f..5c2ce3d6c78 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/create_curl_transfer_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/create_curl_transfer_details.go @@ -23,7 +23,7 @@ type CreateCurlTransferDetails struct { WalletLocation *string `mandatory:"false" json:"walletLocation"` } -//GetWalletLocation returns WalletLocation +// GetWalletLocation returns WalletLocation func (m CreateCurlTransferDetails) GetWalletLocation() *string { return m.WalletLocation } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/create_oci_cli_dump_transfer_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/create_oci_cli_dump_transfer_details.go index 50b2bd2efc9..94c86e6d73f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/create_oci_cli_dump_transfer_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/create_oci_cli_dump_transfer_details.go @@ -26,7 +26,7 @@ type CreateOciCliDumpTransferDetails struct { WalletLocation *string `mandatory:"false" json:"walletLocation"` } -//GetWalletLocation returns WalletLocation +// GetWalletLocation returns WalletLocation func (m CreateOciCliDumpTransferDetails) GetWalletLocation() *string { return m.WalletLocation } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/curl_transfer_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/curl_transfer_details.go index e518842093a..3a3a7c6ea37 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/curl_transfer_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/curl_transfer_details.go @@ -23,7 +23,7 @@ type CurlTransferDetails struct { WalletLocation *string `mandatory:"false" json:"walletLocation"` } -//GetWalletLocation returns WalletLocation +// GetWalletLocation returns WalletLocation func (m CurlTransferDetails) GetWalletLocation() *string { return m.WalletLocation } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/databasemigration_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/databasemigration_client.go index 25c1455b199..ebdc92e369e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/databasemigration_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/databasemigration_client.go @@ -93,7 +93,7 @@ func (client *DatabaseMigrationClient) ConfigurationProvider() *common.Configura // AbortJob Aborts a Migration Job (either Evaluation or Migration). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/AbortJob.go.html to see an example of how to use AbortJob API. // A default retry strategy applies to this operation AbortJob() @@ -156,7 +156,7 @@ func (client DatabaseMigrationClient) abortJob(ctx context.Context, request comm // AddMigrationObjects Add excluded/included object to the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/AddMigrationObjects.go.html to see an example of how to use AddMigrationObjects API. // A default retry strategy applies to this operation AddMigrationObjects() @@ -214,7 +214,7 @@ func (client DatabaseMigrationClient) addMigrationObjects(ctx context.Context, r // ChangeAgentCompartment Used to configure an ODMS Agent Compartment ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ChangeAgentCompartment.go.html to see an example of how to use ChangeAgentCompartment API. // A default retry strategy applies to this operation ChangeAgentCompartment() @@ -277,7 +277,7 @@ func (client DatabaseMigrationClient) changeAgentCompartment(ctx context.Context // ChangeConnectionCompartment Used to change the Database Connection compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ChangeConnectionCompartment.go.html to see an example of how to use ChangeConnectionCompartment API. // A default retry strategy applies to this operation ChangeConnectionCompartment() @@ -340,7 +340,7 @@ func (client DatabaseMigrationClient) changeConnectionCompartment(ctx context.Co // ChangeMigrationCompartment Used to change the Migration compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ChangeMigrationCompartment.go.html to see an example of how to use ChangeMigrationCompartment API. // A default retry strategy applies to this operation ChangeMigrationCompartment() @@ -403,7 +403,7 @@ func (client DatabaseMigrationClient) changeMigrationCompartment(ctx context.Con // CloneMigration Clone a configuration from an existing Migration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/CloneMigration.go.html to see an example of how to use CloneMigration API. // A default retry strategy applies to this operation CloneMigration() @@ -466,7 +466,7 @@ func (client DatabaseMigrationClient) cloneMigration(ctx context.Context, reques // ConnectionDiagnostics Perform connection test for a database connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ConnectionDiagnostics.go.html to see an example of how to use ConnectionDiagnostics API. // A default retry strategy applies to this operation ConnectionDiagnostics() @@ -530,7 +530,7 @@ func (client DatabaseMigrationClient) connectionDiagnostics(ctx context.Context, // CreateConnection Create a Database Connection resource that contains the details to connect to either a Source or Target Database // in the migration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/CreateConnection.go.html to see an example of how to use CreateConnection API. // A default retry strategy applies to this operation CreateConnection() @@ -595,7 +595,7 @@ func (client DatabaseMigrationClient) createConnection(ctx context.Context, requ // database migration operation, such as source and destination database // details, credentials, etc. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/CreateMigration.go.html to see an example of how to use CreateMigration API. // A default retry strategy applies to this operation CreateMigration() @@ -658,7 +658,7 @@ func (client DatabaseMigrationClient) createMigration(ctx context.Context, reque // DeleteAgent Delete the ODMS Agent represented by the specified ODMS Agent ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/DeleteAgent.go.html to see an example of how to use DeleteAgent API. // A default retry strategy applies to this operation DeleteAgent() @@ -716,7 +716,7 @@ func (client DatabaseMigrationClient) deleteAgent(ctx context.Context, request c // DeleteConnection Deletes the Database Connection represented by the specified connection ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/DeleteConnection.go.html to see an example of how to use DeleteConnection API. // A default retry strategy applies to this operation DeleteConnection() @@ -774,7 +774,7 @@ func (client DatabaseMigrationClient) deleteConnection(ctx context.Context, requ // DeleteJob Deletes the migration job represented by the given job ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/DeleteJob.go.html to see an example of how to use DeleteJob API. // A default retry strategy applies to this operation DeleteJob() @@ -832,7 +832,7 @@ func (client DatabaseMigrationClient) deleteJob(ctx context.Context, request com // DeleteMigration Deletes the Migration represented by the specified migration ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/DeleteMigration.go.html to see an example of how to use DeleteMigration API. // A default retry strategy applies to this operation DeleteMigration() @@ -890,7 +890,7 @@ func (client DatabaseMigrationClient) deleteMigration(ctx context.Context, reque // EvaluateMigration Start Validate Migration job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/EvaluateMigration.go.html to see an example of how to use EvaluateMigration API. // A default retry strategy applies to this operation EvaluateMigration() @@ -953,7 +953,7 @@ func (client DatabaseMigrationClient) evaluateMigration(ctx context.Context, req // GetAdvisorReport Get the Pre-Migration Advisor report details // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/GetAdvisorReport.go.html to see an example of how to use GetAdvisorReport API. // A default retry strategy applies to this operation GetAdvisorReport() @@ -1011,7 +1011,7 @@ func (client DatabaseMigrationClient) getAdvisorReport(ctx context.Context, requ // GetAgent Display the ODMS Agent configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/GetAgent.go.html to see an example of how to use GetAgent API. // A default retry strategy applies to this operation GetAgent() @@ -1069,7 +1069,7 @@ func (client DatabaseMigrationClient) getAgent(ctx context.Context, request comm // GetConnection Display Database Connection details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/GetConnection.go.html to see an example of how to use GetConnection API. // A default retry strategy applies to this operation GetConnection() @@ -1127,7 +1127,7 @@ func (client DatabaseMigrationClient) getConnection(ctx context.Context, request // GetJob Get a migration job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/GetJob.go.html to see an example of how to use GetJob API. // A default retry strategy applies to this operation GetJob() @@ -1185,7 +1185,7 @@ func (client DatabaseMigrationClient) getJob(ctx context.Context, request common // GetJobOutputContent Get the migration Job Output content as a String. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/GetJobOutputContent.go.html to see an example of how to use GetJobOutputContent API. // A default retry strategy applies to this operation GetJobOutputContent() @@ -1242,7 +1242,7 @@ func (client DatabaseMigrationClient) getJobOutputContent(ctx context.Context, r // GetMigration Display Migration details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/GetMigration.go.html to see an example of how to use GetMigration API. // A default retry strategy applies to this operation GetMigration() @@ -1300,7 +1300,7 @@ func (client DatabaseMigrationClient) getMigration(ctx context.Context, request // GetWorkRequest Gets the details of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1358,7 +1358,7 @@ func (client DatabaseMigrationClient) getWorkRequest(ctx context.Context, reques // ListAgentImages Get details of the ODMS Agent Images available to install on-premises. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListAgentImages.go.html to see an example of how to use ListAgentImages API. // A default retry strategy applies to this operation ListAgentImages() @@ -1416,7 +1416,7 @@ func (client DatabaseMigrationClient) listAgentImages(ctx context.Context, reque // ListAgents Display the name of all the existing ODMS Agents in the server. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListAgents.go.html to see an example of how to use ListAgents API. // A default retry strategy applies to this operation ListAgents() @@ -1474,7 +1474,7 @@ func (client DatabaseMigrationClient) listAgents(ctx context.Context, request co // ListConnections List all Database Connections. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListConnections.go.html to see an example of how to use ListConnections API. // A default retry strategy applies to this operation ListConnections() @@ -1532,7 +1532,7 @@ func (client DatabaseMigrationClient) listConnections(ctx context.Context, reque // ListExcludedObjects List the excluded database objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListExcludedObjects.go.html to see an example of how to use ListExcludedObjects API. // A default retry strategy applies to this operation ListExcludedObjects() @@ -1590,7 +1590,7 @@ func (client DatabaseMigrationClient) listExcludedObjects(ctx context.Context, r // ListJobOutputs List the Job Outputs // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListJobOutputs.go.html to see an example of how to use ListJobOutputs API. // A default retry strategy applies to this operation ListJobOutputs() @@ -1649,7 +1649,7 @@ func (client DatabaseMigrationClient) listJobOutputs(ctx context.Context, reques // ListJobs List all the names of the Migration jobs associated to the specified // migration site. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListJobs.go.html to see an example of how to use ListJobs API. // A default retry strategy applies to this operation ListJobs() @@ -1707,7 +1707,7 @@ func (client DatabaseMigrationClient) listJobs(ctx context.Context, request comm // ListMigrationObjectTypes Display sample object types to exclude or include for a Migration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListMigrationObjectTypes.go.html to see an example of how to use ListMigrationObjectTypes API. // A default retry strategy applies to this operation ListMigrationObjectTypes() @@ -1765,7 +1765,7 @@ func (client DatabaseMigrationClient) listMigrationObjectTypes(ctx context.Conte // ListMigrationObjects Display excluded/included objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListMigrationObjects.go.html to see an example of how to use ListMigrationObjects API. // A default retry strategy applies to this operation ListMigrationObjects() @@ -1823,7 +1823,7 @@ func (client DatabaseMigrationClient) listMigrationObjects(ctx context.Context, // ListMigrations List all Migrations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListMigrations.go.html to see an example of how to use ListMigrations API. // A default retry strategy applies to this operation ListMigrations() @@ -1881,7 +1881,7 @@ func (client DatabaseMigrationClient) listMigrations(ctx context.Context, reques // ListWorkRequestErrors Gets the errors for a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1939,7 +1939,7 @@ func (client DatabaseMigrationClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Gets the logs for a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1997,7 +1997,7 @@ func (client DatabaseMigrationClient) listWorkRequestLogs(ctx context.Context, r // ListWorkRequests Lists the work requests in a compartment or for a specified resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2055,7 +2055,7 @@ func (client DatabaseMigrationClient) listWorkRequests(ctx context.Context, requ // RemoveMigrationObjects Remove excluded/included objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/RemoveMigrationObjects.go.html to see an example of how to use RemoveMigrationObjects API. // A default retry strategy applies to this operation RemoveMigrationObjects() @@ -2113,7 +2113,7 @@ func (client DatabaseMigrationClient) removeMigrationObjects(ctx context.Context // ResumeJob Resume a migration Job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/ResumeJob.go.html to see an example of how to use ResumeJob API. // A default retry strategy applies to this operation ResumeJob() @@ -2176,7 +2176,7 @@ func (client DatabaseMigrationClient) resumeJob(ctx context.Context, request com // RetrieveSupportedPhases Display Migration Phases for a specified migration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/RetrieveSupportedPhases.go.html to see an example of how to use RetrieveSupportedPhases API. // A default retry strategy applies to this operation RetrieveSupportedPhases() @@ -2234,7 +2234,7 @@ func (client DatabaseMigrationClient) retrieveSupportedPhases(ctx context.Contex // StartMigration Start Migration job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/StartMigration.go.html to see an example of how to use StartMigration API. // A default retry strategy applies to this operation StartMigration() @@ -2297,7 +2297,7 @@ func (client DatabaseMigrationClient) startMigration(ctx context.Context, reques // UpdateAgent Modifies the ODMS Agent represented by the given ODMS Agent ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/UpdateAgent.go.html to see an example of how to use UpdateAgent API. // A default retry strategy applies to this operation UpdateAgent() @@ -2360,7 +2360,7 @@ func (client DatabaseMigrationClient) updateAgent(ctx context.Context, request c // UpdateConnection Update Database Connection resource details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/UpdateConnection.go.html to see an example of how to use UpdateConnection API. // A default retry strategy applies to this operation UpdateConnection() @@ -2418,7 +2418,7 @@ func (client DatabaseMigrationClient) updateConnection(ctx context.Context, requ // UpdateJob Update Migration Job resource details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/UpdateJob.go.html to see an example of how to use UpdateJob API. // A default retry strategy applies to this operation UpdateJob() @@ -2476,7 +2476,7 @@ func (client DatabaseMigrationClient) updateJob(ctx context.Context, request com // UpdateMigration Update Migration resource details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasemigration/UpdateMigration.go.html to see an example of how to use UpdateMigration API. // A default retry strategy applies to this operation UpdateMigration() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/oci_cli_dump_transfer_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/oci_cli_dump_transfer_details.go index 72ceeffe72c..4b25c2a9461 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/oci_cli_dump_transfer_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/oci_cli_dump_transfer_details.go @@ -26,7 +26,7 @@ type OciCliDumpTransferDetails struct { OciHome *string `mandatory:"false" json:"ociHome"` } -//GetWalletLocation returns WalletLocation +// GetWalletLocation returns WalletLocation func (m OciCliDumpTransferDetails) GetWalletLocation() *string { return m.WalletLocation } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/update_curl_transfer_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/update_curl_transfer_details.go index 1d251a6d98f..d894125f095 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/update_curl_transfer_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/update_curl_transfer_details.go @@ -23,7 +23,7 @@ type UpdateCurlTransferDetails struct { WalletLocation *string `mandatory:"false" json:"walletLocation"` } -//GetWalletLocation returns WalletLocation +// GetWalletLocation returns WalletLocation func (m UpdateCurlTransferDetails) GetWalletLocation() *string { return m.WalletLocation } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/update_oci_cli_dump_transfer_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/update_oci_cli_dump_transfer_details.go index 3a54dec86fd..9f318f5e21c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/update_oci_cli_dump_transfer_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasemigration/update_oci_cli_dump_transfer_details.go @@ -26,7 +26,7 @@ type UpdateOciCliDumpTransferDetails struct { WalletLocation *string `mandatory:"false" json:"walletLocation"` } -//GetWalletLocation returns WalletLocation +// GetWalletLocation returns WalletLocation func (m UpdateOciCliDumpTransferDetails) GetWalletLocation() *string { return m.WalletLocation } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/create_database_tools_connection_my_sql_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/create_database_tools_connection_my_sql_details.go index 9894783ec19..5db24d4cc31 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/create_database_tools_connection_my_sql_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/create_database_tools_connection_my_sql_details.go @@ -54,22 +54,22 @@ type CreateDatabaseToolsConnectionMySqlDetails struct { PrivateEndpointId *string `mandatory:"false" json:"privateEndpointId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDatabaseToolsConnectionMySqlDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateDatabaseToolsConnectionMySqlDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDatabaseToolsConnectionMySqlDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDatabaseToolsConnectionMySqlDetails) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/create_database_tools_connection_oracle_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/create_database_tools_connection_oracle_database_details.go index f1caf9af93d..6e6d627e204 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/create_database_tools_connection_oracle_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/create_database_tools_connection_oracle_database_details.go @@ -54,22 +54,22 @@ type CreateDatabaseToolsConnectionOracleDatabaseDetails struct { PrivateEndpointId *string `mandatory:"false" json:"privateEndpointId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDatabaseToolsConnectionOracleDatabaseDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateDatabaseToolsConnectionOracleDatabaseDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDatabaseToolsConnectionOracleDatabaseDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDatabaseToolsConnectionOracleDatabaseDetails) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_my_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_my_sql.go index eae6e3643ff..cda87502d48 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_my_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_my_sql.go @@ -73,52 +73,52 @@ type DatabaseToolsConnectionMySql struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m DatabaseToolsConnectionMySql) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DatabaseToolsConnectionMySql) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DatabaseToolsConnectionMySql) GetCompartmentId() *string { return m.CompartmentId } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DatabaseToolsConnectionMySql) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DatabaseToolsConnectionMySql) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DatabaseToolsConnectionMySql) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DatabaseToolsConnectionMySql) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DatabaseToolsConnectionMySql) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DatabaseToolsConnectionMySql) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DatabaseToolsConnectionMySql) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_my_sql_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_my_sql_summary.go index 7e05e631f36..935f819aa68 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_my_sql_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_my_sql_summary.go @@ -73,52 +73,52 @@ type DatabaseToolsConnectionMySqlSummary struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m DatabaseToolsConnectionMySqlSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DatabaseToolsConnectionMySqlSummary) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DatabaseToolsConnectionMySqlSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DatabaseToolsConnectionMySqlSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DatabaseToolsConnectionMySqlSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DatabaseToolsConnectionMySqlSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DatabaseToolsConnectionMySqlSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DatabaseToolsConnectionMySqlSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DatabaseToolsConnectionMySqlSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DatabaseToolsConnectionMySqlSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_oracle_database.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_oracle_database.go index 6fdd5107720..fd9cd006b99 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_oracle_database.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_oracle_database.go @@ -73,52 +73,52 @@ type DatabaseToolsConnectionOracleDatabase struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m DatabaseToolsConnectionOracleDatabase) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DatabaseToolsConnectionOracleDatabase) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DatabaseToolsConnectionOracleDatabase) GetCompartmentId() *string { return m.CompartmentId } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DatabaseToolsConnectionOracleDatabase) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DatabaseToolsConnectionOracleDatabase) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DatabaseToolsConnectionOracleDatabase) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DatabaseToolsConnectionOracleDatabase) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DatabaseToolsConnectionOracleDatabase) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DatabaseToolsConnectionOracleDatabase) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DatabaseToolsConnectionOracleDatabase) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_oracle_database_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_oracle_database_summary.go index b6dc0d2396b..0686b0cc84f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_oracle_database_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/database_tools_connection_oracle_database_summary.go @@ -73,52 +73,52 @@ type DatabaseToolsConnectionOracleDatabaseSummary struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m DatabaseToolsConnectionOracleDatabaseSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DatabaseToolsConnectionOracleDatabaseSummary) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DatabaseToolsConnectionOracleDatabaseSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DatabaseToolsConnectionOracleDatabaseSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DatabaseToolsConnectionOracleDatabaseSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DatabaseToolsConnectionOracleDatabaseSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DatabaseToolsConnectionOracleDatabaseSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DatabaseToolsConnectionOracleDatabaseSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DatabaseToolsConnectionOracleDatabaseSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DatabaseToolsConnectionOracleDatabaseSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/databasetools_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/databasetools_client.go index 4e26e13fb79..4e3faf78af2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/databasetools_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/databasetools_client.go @@ -95,7 +95,7 @@ func (client *DatabaseToolsClient) ConfigurationProvider() *common.Configuration // For information about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/ChangeDatabaseToolsConnectionCompartment.go.html to see an example of how to use ChangeDatabaseToolsConnectionCompartment API. func (client DatabaseToolsClient) ChangeDatabaseToolsConnectionCompartment(ctx context.Context, request ChangeDatabaseToolsConnectionCompartmentRequest) (response ChangeDatabaseToolsConnectionCompartmentResponse, err error) { @@ -159,7 +159,7 @@ func (client DatabaseToolsClient) changeDatabaseToolsConnectionCompartment(ctx c // For information about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/ChangeDatabaseToolsPrivateEndpointCompartment.go.html to see an example of how to use ChangeDatabaseToolsPrivateEndpointCompartment API. func (client DatabaseToolsClient) ChangeDatabaseToolsPrivateEndpointCompartment(ctx context.Context, request ChangeDatabaseToolsPrivateEndpointCompartmentRequest) (response ChangeDatabaseToolsPrivateEndpointCompartmentResponse, err error) { @@ -221,7 +221,7 @@ func (client DatabaseToolsClient) changeDatabaseToolsPrivateEndpointCompartment( // CreateDatabaseToolsConnection Creates a new Database Tools connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/CreateDatabaseToolsConnection.go.html to see an example of how to use CreateDatabaseToolsConnection API. func (client DatabaseToolsClient) CreateDatabaseToolsConnection(ctx context.Context, request CreateDatabaseToolsConnectionRequest) (response CreateDatabaseToolsConnectionResponse, err error) { @@ -283,7 +283,7 @@ func (client DatabaseToolsClient) createDatabaseToolsConnection(ctx context.Cont // CreateDatabaseToolsPrivateEndpoint Creates a new Database Tools private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/CreateDatabaseToolsPrivateEndpoint.go.html to see an example of how to use CreateDatabaseToolsPrivateEndpoint API. func (client DatabaseToolsClient) CreateDatabaseToolsPrivateEndpoint(ctx context.Context, request CreateDatabaseToolsPrivateEndpointRequest) (response CreateDatabaseToolsPrivateEndpointResponse, err error) { @@ -345,7 +345,7 @@ func (client DatabaseToolsClient) createDatabaseToolsPrivateEndpoint(ctx context // DeleteDatabaseToolsConnection Deletes the specified Database Tools connection resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/DeleteDatabaseToolsConnection.go.html to see an example of how to use DeleteDatabaseToolsConnection API. func (client DatabaseToolsClient) DeleteDatabaseToolsConnection(ctx context.Context, request DeleteDatabaseToolsConnectionRequest) (response DeleteDatabaseToolsConnectionResponse, err error) { @@ -402,7 +402,7 @@ func (client DatabaseToolsClient) deleteDatabaseToolsConnection(ctx context.Cont // DeleteDatabaseToolsPrivateEndpoint Deletes the specified Database Tools private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/DeleteDatabaseToolsPrivateEndpoint.go.html to see an example of how to use DeleteDatabaseToolsPrivateEndpoint API. func (client DatabaseToolsClient) DeleteDatabaseToolsPrivateEndpoint(ctx context.Context, request DeleteDatabaseToolsPrivateEndpointRequest) (response DeleteDatabaseToolsPrivateEndpointResponse, err error) { @@ -459,7 +459,7 @@ func (client DatabaseToolsClient) deleteDatabaseToolsPrivateEndpoint(ctx context // GetDatabaseToolsConnection Gets details of the specified Database Tools connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/GetDatabaseToolsConnection.go.html to see an example of how to use GetDatabaseToolsConnection API. // A default retry strategy applies to this operation GetDatabaseToolsConnection() @@ -517,7 +517,7 @@ func (client DatabaseToolsClient) getDatabaseToolsConnection(ctx context.Context // GetDatabaseToolsEndpointService Gets details for the specified Database Tools endpoint service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/GetDatabaseToolsEndpointService.go.html to see an example of how to use GetDatabaseToolsEndpointService API. // A default retry strategy applies to this operation GetDatabaseToolsEndpointService() @@ -575,7 +575,7 @@ func (client DatabaseToolsClient) getDatabaseToolsEndpointService(ctx context.Co // GetDatabaseToolsPrivateEndpoint Gets details of a specified Database Tools private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/GetDatabaseToolsPrivateEndpoint.go.html to see an example of how to use GetDatabaseToolsPrivateEndpoint API. // A default retry strategy applies to this operation GetDatabaseToolsPrivateEndpoint() @@ -633,7 +633,7 @@ func (client DatabaseToolsClient) getDatabaseToolsPrivateEndpoint(ctx context.Co // GetWorkRequest Gets the status of the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -691,7 +691,7 @@ func (client DatabaseToolsClient) getWorkRequest(ctx context.Context, request co // ListDatabaseToolsConnections Returns a list of Database Tools connections. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/ListDatabaseToolsConnections.go.html to see an example of how to use ListDatabaseToolsConnections API. // A default retry strategy applies to this operation ListDatabaseToolsConnections() @@ -749,7 +749,7 @@ func (client DatabaseToolsClient) listDatabaseToolsConnections(ctx context.Conte // ListDatabaseToolsEndpointServices Returns a list of Database Tools endpoint services. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/ListDatabaseToolsEndpointServices.go.html to see an example of how to use ListDatabaseToolsEndpointServices API. // A default retry strategy applies to this operation ListDatabaseToolsEndpointServices() @@ -807,7 +807,7 @@ func (client DatabaseToolsClient) listDatabaseToolsEndpointServices(ctx context. // ListDatabaseToolsPrivateEndpoints Returns a list of Database Tools private endpoints. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/ListDatabaseToolsPrivateEndpoints.go.html to see an example of how to use ListDatabaseToolsPrivateEndpoints API. // A default retry strategy applies to this operation ListDatabaseToolsPrivateEndpoints() @@ -865,7 +865,7 @@ func (client DatabaseToolsClient) listDatabaseToolsPrivateEndpoints(ctx context. // ListWorkRequestErrors Returns a paginated list of errors for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -923,7 +923,7 @@ func (client DatabaseToolsClient) listWorkRequestErrors(ctx context.Context, req // ListWorkRequestLogs Returns a paginated list of logs for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -981,7 +981,7 @@ func (client DatabaseToolsClient) listWorkRequestLogs(ctx context.Context, reque // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1039,7 +1039,7 @@ func (client DatabaseToolsClient) listWorkRequests(ctx context.Context, request // UpdateDatabaseToolsConnection Updates the specified Database Tools connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/UpdateDatabaseToolsConnection.go.html to see an example of how to use UpdateDatabaseToolsConnection API. func (client DatabaseToolsClient) UpdateDatabaseToolsConnection(ctx context.Context, request UpdateDatabaseToolsConnectionRequest) (response UpdateDatabaseToolsConnectionResponse, err error) { @@ -1096,7 +1096,7 @@ func (client DatabaseToolsClient) updateDatabaseToolsConnection(ctx context.Cont // UpdateDatabaseToolsPrivateEndpoint Updates the specified Database Tools private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/UpdateDatabaseToolsPrivateEndpoint.go.html to see an example of how to use UpdateDatabaseToolsPrivateEndpoint API. func (client DatabaseToolsClient) UpdateDatabaseToolsPrivateEndpoint(ctx context.Context, request UpdateDatabaseToolsPrivateEndpointRequest) (response UpdateDatabaseToolsPrivateEndpointResponse, err error) { @@ -1153,7 +1153,7 @@ func (client DatabaseToolsClient) updateDatabaseToolsPrivateEndpoint(ctx context // ValidateDatabaseToolsConnection Validates the Database Tools connection details by establishing a connection to the database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/databasetools/ValidateDatabaseToolsConnection.go.html to see an example of how to use ValidateDatabaseToolsConnection API. func (client DatabaseToolsClient) ValidateDatabaseToolsConnection(ctx context.Context, request ValidateDatabaseToolsConnectionRequest) (response ValidateDatabaseToolsConnectionResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/update_database_tools_connection_my_sql_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/update_database_tools_connection_my_sql_details.go index 6c1ec34cdb5..091d1d305a4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/update_database_tools_connection_my_sql_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/update_database_tools_connection_my_sql_details.go @@ -51,17 +51,17 @@ type UpdateDatabaseToolsConnectionMySqlDetails struct { PrivateEndpointId *string `mandatory:"false" json:"privateEndpointId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateDatabaseToolsConnectionMySqlDetails) GetDisplayName() *string { return m.DisplayName } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateDatabaseToolsConnectionMySqlDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateDatabaseToolsConnectionMySqlDetails) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/update_database_tools_connection_oracle_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/update_database_tools_connection_oracle_database_details.go index db5ca3a3fbb..1270865bf8e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/update_database_tools_connection_oracle_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/update_database_tools_connection_oracle_database_details.go @@ -51,17 +51,17 @@ type UpdateDatabaseToolsConnectionOracleDatabaseDetails struct { PrivateEndpointId *string `mandatory:"false" json:"privateEndpointId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateDatabaseToolsConnectionOracleDatabaseDetails) GetDisplayName() *string { return m.DisplayName } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateDatabaseToolsConnectionOracleDatabaseDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateDatabaseToolsConnectionOracleDatabaseDetails) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/validate_database_tools_connection_my_sql_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/validate_database_tools_connection_my_sql_result.go index 1ecd339e417..9f18ade9f0e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/validate_database_tools_connection_my_sql_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/validate_database_tools_connection_my_sql_result.go @@ -38,22 +38,22 @@ type ValidateDatabaseToolsConnectionMySqlResult struct { DatabaseVersion *string `mandatory:"false" json:"databaseVersion"` } -//GetCode returns Code +// GetCode returns Code func (m ValidateDatabaseToolsConnectionMySqlResult) GetCode() *string { return m.Code } -//GetMessage returns Message +// GetMessage returns Message func (m ValidateDatabaseToolsConnectionMySqlResult) GetMessage() *string { return m.Message } -//GetCause returns Cause +// GetCause returns Cause func (m ValidateDatabaseToolsConnectionMySqlResult) GetCause() *string { return m.Cause } -//GetAction returns Action +// GetAction returns Action func (m ValidateDatabaseToolsConnectionMySqlResult) GetAction() *string { return m.Action } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/validate_database_tools_connection_oracle_database_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/validate_database_tools_connection_oracle_database_result.go index 0d42ceacd22..ae1876e4376 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/validate_database_tools_connection_oracle_database_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/databasetools/validate_database_tools_connection_oracle_database_result.go @@ -38,22 +38,22 @@ type ValidateDatabaseToolsConnectionOracleDatabaseResult struct { DatabaseVersion *string `mandatory:"false" json:"databaseVersion"` } -//GetCode returns Code +// GetCode returns Code func (m ValidateDatabaseToolsConnectionOracleDatabaseResult) GetCode() *string { return m.Code } -//GetMessage returns Message +// GetMessage returns Message func (m ValidateDatabaseToolsConnectionOracleDatabaseResult) GetMessage() *string { return m.Message } -//GetCause returns Cause +// GetCause returns Cause func (m ValidateDatabaseToolsConnectionOracleDatabaseResult) GetCause() *string { return m.Cause } -//GetAction returns Action +// GetAction returns Action func (m ValidateDatabaseToolsConnectionOracleDatabaseResult) GetAction() *string { return m.Action } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datacatalog/data_asset_export_scope.go b/vendor/github.com/oracle/oci-go-sdk/v65/datacatalog/data_asset_export_scope.go index 4e126d79e05..dc7a6a4ba1c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datacatalog/data_asset_export_scope.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datacatalog/data_asset_export_scope.go @@ -18,8 +18,9 @@ import ( // DataAssetExportScope Scope of asset export, which consists of a container object (bucket, folder, schema, etc) within the asset, // and types of child objects contained by that object to be included. -// objectKey - Key of the container object to be exported. For example, key of schema_1. -// exportTypeIds - Type key(s) of objects within the container object to be exported. For example, type key of table or view. +// +// objectKey - Key of the container object to be exported. For example, key of schema_1. +// exportTypeIds - Type key(s) of objects within the container object to be exported. For example, type key of table or view. type DataAssetExportScope struct { // Unique key of the object selected for export. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datacatalog/datacatalog_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/datacatalog/datacatalog_client.go index 111ab6e9793..b64c6927b47 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datacatalog/datacatalog_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datacatalog/datacatalog_client.go @@ -94,7 +94,7 @@ func (client *DataCatalogClient) ConfigurationProvider() *common.ConfigurationPr // AddDataSelectorPatterns Add data selector pattern to the data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/AddDataSelectorPatterns.go.html to see an example of how to use AddDataSelectorPatterns API. func (client DataCatalogClient) AddDataSelectorPatterns(ctx context.Context, request AddDataSelectorPatternsRequest) (response AddDataSelectorPatternsResponse, err error) { @@ -156,7 +156,7 @@ func (client DataCatalogClient) addDataSelectorPatterns(ctx context.Context, req // AssociateCustomProperty Associate the custom property for the given type // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/AssociateCustomProperty.go.html to see an example of how to use AssociateCustomProperty API. func (client DataCatalogClient) AssociateCustomProperty(ctx context.Context, request AssociateCustomPropertyRequest) (response AssociateCustomPropertyResponse, err error) { @@ -218,7 +218,7 @@ func (client DataCatalogClient) associateCustomProperty(ctx context.Context, req // AsynchronousExportGlossary Exports the contents of a glossary in Excel format. Returns details about the job which actually performs the export. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/AsynchronousExportGlossary.go.html to see an example of how to use AsynchronousExportGlossary API. func (client DataCatalogClient) AsynchronousExportGlossary(ctx context.Context, request AsynchronousExportGlossaryRequest) (response AsynchronousExportGlossaryResponse, err error) { @@ -280,7 +280,7 @@ func (client DataCatalogClient) asynchronousExportGlossary(ctx context.Context, // AttachCatalogPrivateEndpoint Attaches a private reverse connection endpoint resource to a data catalog resource. When provided, 'If-Match' is checked against 'ETag' values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/AttachCatalogPrivateEndpoint.go.html to see an example of how to use AttachCatalogPrivateEndpoint API. func (client DataCatalogClient) AttachCatalogPrivateEndpoint(ctx context.Context, request AttachCatalogPrivateEndpointRequest) (response AttachCatalogPrivateEndpointResponse, err error) { @@ -342,7 +342,7 @@ func (client DataCatalogClient) attachCatalogPrivateEndpoint(ctx context.Context // ChangeCatalogCompartment Moves a resource into a different compartment. When provided, 'If-Match' is checked against 'ETag' values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ChangeCatalogCompartment.go.html to see an example of how to use ChangeCatalogCompartment API. func (client DataCatalogClient) ChangeCatalogCompartment(ctx context.Context, request ChangeCatalogCompartmentRequest) (response ChangeCatalogCompartmentResponse, err error) { @@ -399,7 +399,7 @@ func (client DataCatalogClient) changeCatalogCompartment(ctx context.Context, re // ChangeCatalogPrivateEndpointCompartment Moves a resource into a different compartment. When provided, 'If-Match' is checked against 'ETag' values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ChangeCatalogPrivateEndpointCompartment.go.html to see an example of how to use ChangeCatalogPrivateEndpointCompartment API. func (client DataCatalogClient) ChangeCatalogPrivateEndpointCompartment(ctx context.Context, request ChangeCatalogPrivateEndpointCompartmentRequest) (response ChangeCatalogPrivateEndpointCompartmentResponse, err error) { @@ -456,7 +456,7 @@ func (client DataCatalogClient) changeCatalogPrivateEndpointCompartment(ctx cont // ChangeMetastoreCompartment Moves a resource into a different compartment. When provided, 'If-Match' is checked against 'ETag' values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ChangeMetastoreCompartment.go.html to see an example of how to use ChangeMetastoreCompartment API. func (client DataCatalogClient) ChangeMetastoreCompartment(ctx context.Context, request ChangeMetastoreCompartmentRequest) (response ChangeMetastoreCompartmentResponse, err error) { @@ -513,7 +513,7 @@ func (client DataCatalogClient) changeMetastoreCompartment(ctx context.Context, // CreateAttribute Creates a new entity attribute. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateAttribute.go.html to see an example of how to use CreateAttribute API. func (client DataCatalogClient) CreateAttribute(ctx context.Context, request CreateAttributeRequest) (response CreateAttributeResponse, err error) { @@ -575,7 +575,7 @@ func (client DataCatalogClient) createAttribute(ctx context.Context, request com // CreateAttributeTag Creates a new entity attribute tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateAttributeTag.go.html to see an example of how to use CreateAttributeTag API. func (client DataCatalogClient) CreateAttributeTag(ctx context.Context, request CreateAttributeTagRequest) (response CreateAttributeTagResponse, err error) { @@ -638,7 +638,7 @@ func (client DataCatalogClient) createAttributeTag(ctx context.Context, request // CreateCatalog Creates a new data catalog instance that includes a console and an API URL for managing metadata operations. // For more information, please see the documentation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateCatalog.go.html to see an example of how to use CreateCatalog API. func (client DataCatalogClient) CreateCatalog(ctx context.Context, request CreateCatalogRequest) (response CreateCatalogResponse, err error) { @@ -700,7 +700,7 @@ func (client DataCatalogClient) createCatalog(ctx context.Context, request commo // CreateCatalogPrivateEndpoint Create a new private reverse connection endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateCatalogPrivateEndpoint.go.html to see an example of how to use CreateCatalogPrivateEndpoint API. func (client DataCatalogClient) CreateCatalogPrivateEndpoint(ctx context.Context, request CreateCatalogPrivateEndpointRequest) (response CreateCatalogPrivateEndpointResponse, err error) { @@ -762,7 +762,7 @@ func (client DataCatalogClient) createCatalogPrivateEndpoint(ctx context.Context // CreateConnection Creates a new connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateConnection.go.html to see an example of how to use CreateConnection API. func (client DataCatalogClient) CreateConnection(ctx context.Context, request CreateConnectionRequest) (response CreateConnectionResponse, err error) { @@ -824,7 +824,7 @@ func (client DataCatalogClient) createConnection(ctx context.Context, request co // CreateCustomProperty Create a new Custom Property // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateCustomProperty.go.html to see an example of how to use CreateCustomProperty API. func (client DataCatalogClient) CreateCustomProperty(ctx context.Context, request CreateCustomPropertyRequest) (response CreateCustomPropertyResponse, err error) { @@ -886,7 +886,7 @@ func (client DataCatalogClient) createCustomProperty(ctx context.Context, reques // CreateDataAsset Create a new data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateDataAsset.go.html to see an example of how to use CreateDataAsset API. func (client DataCatalogClient) CreateDataAsset(ctx context.Context, request CreateDataAssetRequest) (response CreateDataAssetResponse, err error) { @@ -948,7 +948,7 @@ func (client DataCatalogClient) createDataAsset(ctx context.Context, request com // CreateDataAssetTag Creates a new data asset tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateDataAssetTag.go.html to see an example of how to use CreateDataAssetTag API. func (client DataCatalogClient) CreateDataAssetTag(ctx context.Context, request CreateDataAssetTagRequest) (response CreateDataAssetTagResponse, err error) { @@ -1010,7 +1010,7 @@ func (client DataCatalogClient) createDataAssetTag(ctx context.Context, request // CreateEntity Creates a new data entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateEntity.go.html to see an example of how to use CreateEntity API. func (client DataCatalogClient) CreateEntity(ctx context.Context, request CreateEntityRequest) (response CreateEntityResponse, err error) { @@ -1072,7 +1072,7 @@ func (client DataCatalogClient) createEntity(ctx context.Context, request common // CreateEntityTag Creates a new entity tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateEntityTag.go.html to see an example of how to use CreateEntityTag API. func (client DataCatalogClient) CreateEntityTag(ctx context.Context, request CreateEntityTagRequest) (response CreateEntityTagResponse, err error) { @@ -1134,7 +1134,7 @@ func (client DataCatalogClient) createEntityTag(ctx context.Context, request com // CreateFolder Creates a new folder. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateFolder.go.html to see an example of how to use CreateFolder API. func (client DataCatalogClient) CreateFolder(ctx context.Context, request CreateFolderRequest) (response CreateFolderResponse, err error) { @@ -1196,7 +1196,7 @@ func (client DataCatalogClient) createFolder(ctx context.Context, request common // CreateFolderTag Creates a new folder tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateFolderTag.go.html to see an example of how to use CreateFolderTag API. func (client DataCatalogClient) CreateFolderTag(ctx context.Context, request CreateFolderTagRequest) (response CreateFolderTagResponse, err error) { @@ -1258,7 +1258,7 @@ func (client DataCatalogClient) createFolderTag(ctx context.Context, request com // CreateGlossary Creates a new glossary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateGlossary.go.html to see an example of how to use CreateGlossary API. func (client DataCatalogClient) CreateGlossary(ctx context.Context, request CreateGlossaryRequest) (response CreateGlossaryResponse, err error) { @@ -1320,7 +1320,7 @@ func (client DataCatalogClient) createGlossary(ctx context.Context, request comm // CreateJob Creates a new job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateJob.go.html to see an example of how to use CreateJob API. func (client DataCatalogClient) CreateJob(ctx context.Context, request CreateJobRequest) (response CreateJobResponse, err error) { @@ -1382,7 +1382,7 @@ func (client DataCatalogClient) createJob(ctx context.Context, request common.OC // CreateJobDefinition Creates a new job definition. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateJobDefinition.go.html to see an example of how to use CreateJobDefinition API. func (client DataCatalogClient) CreateJobDefinition(ctx context.Context, request CreateJobDefinitionRequest) (response CreateJobDefinitionResponse, err error) { @@ -1444,7 +1444,7 @@ func (client DataCatalogClient) createJobDefinition(ctx context.Context, request // CreateJobExecution Creates a new job execution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateJobExecution.go.html to see an example of how to use CreateJobExecution API. func (client DataCatalogClient) CreateJobExecution(ctx context.Context, request CreateJobExecutionRequest) (response CreateJobExecutionResponse, err error) { @@ -1506,7 +1506,7 @@ func (client DataCatalogClient) createJobExecution(ctx context.Context, request // CreateMetastore Creates a new metastore. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateMetastore.go.html to see an example of how to use CreateMetastore API. func (client DataCatalogClient) CreateMetastore(ctx context.Context, request CreateMetastoreRequest) (response CreateMetastoreResponse, err error) { @@ -1568,7 +1568,7 @@ func (client DataCatalogClient) createMetastore(ctx context.Context, request com // CreateNamespace Create a new Namespace to be used by a custom property // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateNamespace.go.html to see an example of how to use CreateNamespace API. func (client DataCatalogClient) CreateNamespace(ctx context.Context, request CreateNamespaceRequest) (response CreateNamespaceResponse, err error) { @@ -1630,7 +1630,7 @@ func (client DataCatalogClient) createNamespace(ctx context.Context, request com // CreatePattern Create a new pattern. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreatePattern.go.html to see an example of how to use CreatePattern API. func (client DataCatalogClient) CreatePattern(ctx context.Context, request CreatePatternRequest) (response CreatePatternResponse, err error) { @@ -1692,7 +1692,7 @@ func (client DataCatalogClient) createPattern(ctx context.Context, request commo // CreateTerm Create a new term within a glossary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateTerm.go.html to see an example of how to use CreateTerm API. func (client DataCatalogClient) CreateTerm(ctx context.Context, request CreateTermRequest) (response CreateTermResponse, err error) { @@ -1754,7 +1754,7 @@ func (client DataCatalogClient) createTerm(ctx context.Context, request common.O // CreateTermRelationship Creates a new term relationship for this term within a glossary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/CreateTermRelationship.go.html to see an example of how to use CreateTermRelationship API. func (client DataCatalogClient) CreateTermRelationship(ctx context.Context, request CreateTermRelationshipRequest) (response CreateTermRelationshipResponse, err error) { @@ -1816,7 +1816,7 @@ func (client DataCatalogClient) createTermRelationship(ctx context.Context, requ // DeleteAttribute Deletes a specific entity attribute. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteAttribute.go.html to see an example of how to use DeleteAttribute API. func (client DataCatalogClient) DeleteAttribute(ctx context.Context, request DeleteAttributeRequest) (response DeleteAttributeResponse, err error) { @@ -1873,7 +1873,7 @@ func (client DataCatalogClient) deleteAttribute(ctx context.Context, request com // DeleteAttributeTag Deletes a specific entity attribute tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteAttributeTag.go.html to see an example of how to use DeleteAttributeTag API. func (client DataCatalogClient) DeleteAttributeTag(ctx context.Context, request DeleteAttributeTagRequest) (response DeleteAttributeTagResponse, err error) { @@ -1930,7 +1930,7 @@ func (client DataCatalogClient) deleteAttributeTag(ctx context.Context, request // DeleteCatalog Deletes a data catalog resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteCatalog.go.html to see an example of how to use DeleteCatalog API. func (client DataCatalogClient) DeleteCatalog(ctx context.Context, request DeleteCatalogRequest) (response DeleteCatalogResponse, err error) { @@ -1987,7 +1987,7 @@ func (client DataCatalogClient) deleteCatalog(ctx context.Context, request commo // DeleteCatalogPrivateEndpoint Deletes a private reverse connection endpoint by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteCatalogPrivateEndpoint.go.html to see an example of how to use DeleteCatalogPrivateEndpoint API. func (client DataCatalogClient) DeleteCatalogPrivateEndpoint(ctx context.Context, request DeleteCatalogPrivateEndpointRequest) (response DeleteCatalogPrivateEndpointResponse, err error) { @@ -2044,7 +2044,7 @@ func (client DataCatalogClient) deleteCatalogPrivateEndpoint(ctx context.Context // DeleteConnection Deletes a specific connection of a data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteConnection.go.html to see an example of how to use DeleteConnection API. func (client DataCatalogClient) DeleteConnection(ctx context.Context, request DeleteConnectionRequest) (response DeleteConnectionResponse, err error) { @@ -2101,7 +2101,7 @@ func (client DataCatalogClient) deleteConnection(ctx context.Context, request co // DeleteCustomProperty Deletes a specific custom property identified by it's key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteCustomProperty.go.html to see an example of how to use DeleteCustomProperty API. func (client DataCatalogClient) DeleteCustomProperty(ctx context.Context, request DeleteCustomPropertyRequest) (response DeleteCustomPropertyResponse, err error) { @@ -2158,7 +2158,7 @@ func (client DataCatalogClient) deleteCustomProperty(ctx context.Context, reques // DeleteDataAsset Deletes a specific data asset identified by it's key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteDataAsset.go.html to see an example of how to use DeleteDataAsset API. func (client DataCatalogClient) DeleteDataAsset(ctx context.Context, request DeleteDataAssetRequest) (response DeleteDataAssetResponse, err error) { @@ -2215,7 +2215,7 @@ func (client DataCatalogClient) deleteDataAsset(ctx context.Context, request com // DeleteDataAssetTag Deletes a specific data asset tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteDataAssetTag.go.html to see an example of how to use DeleteDataAssetTag API. func (client DataCatalogClient) DeleteDataAssetTag(ctx context.Context, request DeleteDataAssetTagRequest) (response DeleteDataAssetTagResponse, err error) { @@ -2272,7 +2272,7 @@ func (client DataCatalogClient) deleteDataAssetTag(ctx context.Context, request // DeleteEntity Deletes a specific data entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteEntity.go.html to see an example of how to use DeleteEntity API. func (client DataCatalogClient) DeleteEntity(ctx context.Context, request DeleteEntityRequest) (response DeleteEntityResponse, err error) { @@ -2329,7 +2329,7 @@ func (client DataCatalogClient) deleteEntity(ctx context.Context, request common // DeleteEntityTag Deletes a specific entity tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteEntityTag.go.html to see an example of how to use DeleteEntityTag API. func (client DataCatalogClient) DeleteEntityTag(ctx context.Context, request DeleteEntityTagRequest) (response DeleteEntityTagResponse, err error) { @@ -2386,7 +2386,7 @@ func (client DataCatalogClient) deleteEntityTag(ctx context.Context, request com // DeleteFolder Deletes a specific folder of a data asset identified by it's key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteFolder.go.html to see an example of how to use DeleteFolder API. func (client DataCatalogClient) DeleteFolder(ctx context.Context, request DeleteFolderRequest) (response DeleteFolderResponse, err error) { @@ -2443,7 +2443,7 @@ func (client DataCatalogClient) deleteFolder(ctx context.Context, request common // DeleteFolderTag Deletes a specific folder tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteFolderTag.go.html to see an example of how to use DeleteFolderTag API. func (client DataCatalogClient) DeleteFolderTag(ctx context.Context, request DeleteFolderTagRequest) (response DeleteFolderTagResponse, err error) { @@ -2500,7 +2500,7 @@ func (client DataCatalogClient) deleteFolderTag(ctx context.Context, request com // DeleteGlossary Deletes a specific glossary identified by it's key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteGlossary.go.html to see an example of how to use DeleteGlossary API. func (client DataCatalogClient) DeleteGlossary(ctx context.Context, request DeleteGlossaryRequest) (response DeleteGlossaryResponse, err error) { @@ -2557,7 +2557,7 @@ func (client DataCatalogClient) deleteGlossary(ctx context.Context, request comm // DeleteJob Deletes a specific job identified by it's key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteJob.go.html to see an example of how to use DeleteJob API. func (client DataCatalogClient) DeleteJob(ctx context.Context, request DeleteJobRequest) (response DeleteJobResponse, err error) { @@ -2614,7 +2614,7 @@ func (client DataCatalogClient) deleteJob(ctx context.Context, request common.OC // DeleteJobDefinition Deletes a specific job definition identified by it's key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteJobDefinition.go.html to see an example of how to use DeleteJobDefinition API. func (client DataCatalogClient) DeleteJobDefinition(ctx context.Context, request DeleteJobDefinitionRequest) (response DeleteJobDefinitionResponse, err error) { @@ -2671,7 +2671,7 @@ func (client DataCatalogClient) deleteJobDefinition(ctx context.Context, request // DeleteMetastore Deletes a metastore resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteMetastore.go.html to see an example of how to use DeleteMetastore API. func (client DataCatalogClient) DeleteMetastore(ctx context.Context, request DeleteMetastoreRequest) (response DeleteMetastoreResponse, err error) { @@ -2728,7 +2728,7 @@ func (client DataCatalogClient) deleteMetastore(ctx context.Context, request com // DeleteNamespace Deletes a specific Namespace identified by it's key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteNamespace.go.html to see an example of how to use DeleteNamespace API. func (client DataCatalogClient) DeleteNamespace(ctx context.Context, request DeleteNamespaceRequest) (response DeleteNamespaceResponse, err error) { @@ -2785,7 +2785,7 @@ func (client DataCatalogClient) deleteNamespace(ctx context.Context, request com // DeletePattern Deletes a specific pattern identified by it's key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeletePattern.go.html to see an example of how to use DeletePattern API. func (client DataCatalogClient) DeletePattern(ctx context.Context, request DeletePatternRequest) (response DeletePatternResponse, err error) { @@ -2842,7 +2842,7 @@ func (client DataCatalogClient) deletePattern(ctx context.Context, request commo // DeleteTerm Deletes a specific glossary term. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteTerm.go.html to see an example of how to use DeleteTerm API. func (client DataCatalogClient) DeleteTerm(ctx context.Context, request DeleteTermRequest) (response DeleteTermResponse, err error) { @@ -2899,7 +2899,7 @@ func (client DataCatalogClient) deleteTerm(ctx context.Context, request common.O // DeleteTermRelationship Deletes a specific glossary term relationship. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DeleteTermRelationship.go.html to see an example of how to use DeleteTermRelationship API. func (client DataCatalogClient) DeleteTermRelationship(ctx context.Context, request DeleteTermRelationshipRequest) (response DeleteTermRelationshipResponse, err error) { @@ -2956,7 +2956,7 @@ func (client DataCatalogClient) deleteTermRelationship(ctx context.Context, requ // DetachCatalogPrivateEndpoint Detaches a private reverse connection endpoint resource to a data catalog resource. When provided, 'If-Match' is checked against 'ETag' values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DetachCatalogPrivateEndpoint.go.html to see an example of how to use DetachCatalogPrivateEndpoint API. func (client DataCatalogClient) DetachCatalogPrivateEndpoint(ctx context.Context, request DetachCatalogPrivateEndpointRequest) (response DetachCatalogPrivateEndpointResponse, err error) { @@ -3013,7 +3013,7 @@ func (client DataCatalogClient) detachCatalogPrivateEndpoint(ctx context.Context // DisassociateCustomProperty Remove the custom property for the given type // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/DisassociateCustomProperty.go.html to see an example of how to use DisassociateCustomProperty API. func (client DataCatalogClient) DisassociateCustomProperty(ctx context.Context, request DisassociateCustomPropertyRequest) (response DisassociateCustomPropertyResponse, err error) { @@ -3075,7 +3075,7 @@ func (client DataCatalogClient) disassociateCustomProperty(ctx context.Context, // ExpandTreeForGlossary Returns the fully expanded tree hierarchy of parent and child terms in this glossary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ExpandTreeForGlossary.go.html to see an example of how to use ExpandTreeForGlossary API. // A default retry strategy applies to this operation ExpandTreeForGlossary() @@ -3138,7 +3138,7 @@ func (client DataCatalogClient) expandTreeForGlossary(ctx context.Context, reque // ExportGlossary Export the glossary and the terms and return the exported glossary as csv or json. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ExportGlossary.go.html to see an example of how to use ExportGlossary API. func (client DataCatalogClient) ExportGlossary(ctx context.Context, request ExportGlossaryRequest) (response ExportGlossaryResponse, err error) { @@ -3200,7 +3200,7 @@ func (client DataCatalogClient) exportGlossary(ctx context.Context, request comm // FetchEntityLineage Returns lineage for a given entity object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/FetchEntityLineage.go.html to see an example of how to use FetchEntityLineage API. // A default retry strategy applies to this operation FetchEntityLineage() @@ -3258,7 +3258,7 @@ func (client DataCatalogClient) fetchEntityLineage(ctx context.Context, request // GetAttribute Gets a specific entity attribute by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetAttribute.go.html to see an example of how to use GetAttribute API. // A default retry strategy applies to this operation GetAttribute() @@ -3316,7 +3316,7 @@ func (client DataCatalogClient) getAttribute(ctx context.Context, request common // GetAttributeTag Gets a specific entity attribute tag by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetAttributeTag.go.html to see an example of how to use GetAttributeTag API. // A default retry strategy applies to this operation GetAttributeTag() @@ -3374,7 +3374,7 @@ func (client DataCatalogClient) getAttributeTag(ctx context.Context, request com // GetCatalog Gets a data catalog by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetCatalog.go.html to see an example of how to use GetCatalog API. // A default retry strategy applies to this operation GetCatalog() @@ -3432,7 +3432,7 @@ func (client DataCatalogClient) getCatalog(ctx context.Context, request common.O // GetCatalogPrivateEndpoint Gets a specific private reverse connection by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetCatalogPrivateEndpoint.go.html to see an example of how to use GetCatalogPrivateEndpoint API. // A default retry strategy applies to this operation GetCatalogPrivateEndpoint() @@ -3490,7 +3490,7 @@ func (client DataCatalogClient) getCatalogPrivateEndpoint(ctx context.Context, r // GetConnection Gets a specific data asset connection by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetConnection.go.html to see an example of how to use GetConnection API. // A default retry strategy applies to this operation GetConnection() @@ -3548,7 +3548,7 @@ func (client DataCatalogClient) getConnection(ctx context.Context, request commo // GetCustomProperty Gets a specific custom property for the given key within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetCustomProperty.go.html to see an example of how to use GetCustomProperty API. // A default retry strategy applies to this operation GetCustomProperty() @@ -3606,7 +3606,7 @@ func (client DataCatalogClient) getCustomProperty(ctx context.Context, request c // GetDataAsset Gets a specific data asset for the given key within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetDataAsset.go.html to see an example of how to use GetDataAsset API. // A default retry strategy applies to this operation GetDataAsset() @@ -3664,7 +3664,7 @@ func (client DataCatalogClient) getDataAsset(ctx context.Context, request common // GetDataAssetTag Gets a specific data asset tag by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetDataAssetTag.go.html to see an example of how to use GetDataAssetTag API. // A default retry strategy applies to this operation GetDataAssetTag() @@ -3722,7 +3722,7 @@ func (client DataCatalogClient) getDataAssetTag(ctx context.Context, request com // GetEntity Gets a specific data entity by key for a data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetEntity.go.html to see an example of how to use GetEntity API. // A default retry strategy applies to this operation GetEntity() @@ -3780,7 +3780,7 @@ func (client DataCatalogClient) getEntity(ctx context.Context, request common.OC // GetEntityTag Gets a specific entity tag by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetEntityTag.go.html to see an example of how to use GetEntityTag API. // A default retry strategy applies to this operation GetEntityTag() @@ -3838,7 +3838,7 @@ func (client DataCatalogClient) getEntityTag(ctx context.Context, request common // GetFolder Gets a specific data asset folder by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetFolder.go.html to see an example of how to use GetFolder API. // A default retry strategy applies to this operation GetFolder() @@ -3896,7 +3896,7 @@ func (client DataCatalogClient) getFolder(ctx context.Context, request common.OC // GetFolderTag Gets a specific folder tag by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetFolderTag.go.html to see an example of how to use GetFolderTag API. // A default retry strategy applies to this operation GetFolderTag() @@ -3954,7 +3954,7 @@ func (client DataCatalogClient) getFolderTag(ctx context.Context, request common // GetGlossary Gets a specific glossary by key within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetGlossary.go.html to see an example of how to use GetGlossary API. // A default retry strategy applies to this operation GetGlossary() @@ -4012,7 +4012,7 @@ func (client DataCatalogClient) getGlossary(ctx context.Context, request common. // GetJob Gets a specific job by key within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetJob.go.html to see an example of how to use GetJob API. // A default retry strategy applies to this operation GetJob() @@ -4070,7 +4070,7 @@ func (client DataCatalogClient) getJob(ctx context.Context, request common.OCIRe // GetJobDefinition Gets a specific job definition by key within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetJobDefinition.go.html to see an example of how to use GetJobDefinition API. // A default retry strategy applies to this operation GetJobDefinition() @@ -4128,7 +4128,7 @@ func (client DataCatalogClient) getJobDefinition(ctx context.Context, request co // GetJobExecution Gets a specific job execution by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetJobExecution.go.html to see an example of how to use GetJobExecution API. // A default retry strategy applies to this operation GetJobExecution() @@ -4186,7 +4186,7 @@ func (client DataCatalogClient) getJobExecution(ctx context.Context, request com // GetJobLog Gets a specific job log by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetJobLog.go.html to see an example of how to use GetJobLog API. // A default retry strategy applies to this operation GetJobLog() @@ -4244,7 +4244,7 @@ func (client DataCatalogClient) getJobLog(ctx context.Context, request common.OC // GetJobMetrics Gets a specific job metric by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetJobMetrics.go.html to see an example of how to use GetJobMetrics API. // A default retry strategy applies to this operation GetJobMetrics() @@ -4302,7 +4302,7 @@ func (client DataCatalogClient) getJobMetrics(ctx context.Context, request commo // GetMetastore Gets a metastore by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetMetastore.go.html to see an example of how to use GetMetastore API. // A default retry strategy applies to this operation GetMetastore() @@ -4360,7 +4360,7 @@ func (client DataCatalogClient) getMetastore(ctx context.Context, request common // GetNamespace Gets a specific namespace for the given key within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetNamespace.go.html to see an example of how to use GetNamespace API. // A default retry strategy applies to this operation GetNamespace() @@ -4418,7 +4418,7 @@ func (client DataCatalogClient) getNamespace(ctx context.Context, request common // GetPattern Gets a specific pattern for the given key within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetPattern.go.html to see an example of how to use GetPattern API. // A default retry strategy applies to this operation GetPattern() @@ -4476,7 +4476,7 @@ func (client DataCatalogClient) getPattern(ctx context.Context, request common.O // GetTerm Gets a specific glossary term by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetTerm.go.html to see an example of how to use GetTerm API. // A default retry strategy applies to this operation GetTerm() @@ -4534,7 +4534,7 @@ func (client DataCatalogClient) getTerm(ctx context.Context, request common.OCIR // GetTermRelationship Gets a specific glossary term relationship by key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetTermRelationship.go.html to see an example of how to use GetTermRelationship API. // A default retry strategy applies to this operation GetTermRelationship() @@ -4592,7 +4592,7 @@ func (client DataCatalogClient) getTermRelationship(ctx context.Context, request // GetType Gets a specific type by key within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetType.go.html to see an example of how to use GetType API. // A default retry strategy applies to this operation GetType() @@ -4650,7 +4650,7 @@ func (client DataCatalogClient) getType(ctx context.Context, request common.OCIR // GetWorkRequest Gets the status of the work request with the given OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -4708,7 +4708,7 @@ func (client DataCatalogClient) getWorkRequest(ctx context.Context, request comm // ImportConnection Import new connection for this data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ImportConnection.go.html to see an example of how to use ImportConnection API. func (client DataCatalogClient) ImportConnection(ctx context.Context, request ImportConnectionRequest) (response ImportConnectionResponse, err error) { @@ -4770,7 +4770,7 @@ func (client DataCatalogClient) importConnection(ctx context.Context, request co // ImportDataAsset Import technical objects to a Data Asset // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ImportDataAsset.go.html to see an example of how to use ImportDataAsset API. func (client DataCatalogClient) ImportDataAsset(ctx context.Context, request ImportDataAssetRequest) (response ImportDataAssetResponse, err error) { @@ -4832,7 +4832,7 @@ func (client DataCatalogClient) importDataAsset(ctx context.Context, request com // ImportGlossary Import the glossary and the terms from csv or json files and return the imported glossary resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ImportGlossary.go.html to see an example of how to use ImportGlossary API. func (client DataCatalogClient) ImportGlossary(ctx context.Context, request ImportGlossaryRequest) (response ImportGlossaryResponse, err error) { @@ -4894,7 +4894,7 @@ func (client DataCatalogClient) importGlossary(ctx context.Context, request comm // ListAggregatedPhysicalEntities List the physical entities aggregated by this logical entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListAggregatedPhysicalEntities.go.html to see an example of how to use ListAggregatedPhysicalEntities API. // A default retry strategy applies to this operation ListAggregatedPhysicalEntities() @@ -4952,7 +4952,7 @@ func (client DataCatalogClient) listAggregatedPhysicalEntities(ctx context.Conte // ListAttributeTags Returns a list of all tags for an entity attribute. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListAttributeTags.go.html to see an example of how to use ListAttributeTags API. // A default retry strategy applies to this operation ListAttributeTags() @@ -5010,7 +5010,7 @@ func (client DataCatalogClient) listAttributeTags(ctx context.Context, request c // ListAttributes Returns a list of all attributes of an data entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListAttributes.go.html to see an example of how to use ListAttributes API. // A default retry strategy applies to this operation ListAttributes() @@ -5068,7 +5068,7 @@ func (client DataCatalogClient) listAttributes(ctx context.Context, request comm // ListCatalogPrivateEndpoints Returns a list of all the catalog private endpoints in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListCatalogPrivateEndpoints.go.html to see an example of how to use ListCatalogPrivateEndpoints API. // A default retry strategy applies to this operation ListCatalogPrivateEndpoints() @@ -5126,7 +5126,7 @@ func (client DataCatalogClient) listCatalogPrivateEndpoints(ctx context.Context, // ListCatalogs Returns a list of all the data catalogs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListCatalogs.go.html to see an example of how to use ListCatalogs API. // A default retry strategy applies to this operation ListCatalogs() @@ -5184,7 +5184,7 @@ func (client DataCatalogClient) listCatalogs(ctx context.Context, request common // ListConnections Returns a list of all Connections for a data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListConnections.go.html to see an example of how to use ListConnections API. // A default retry strategy applies to this operation ListConnections() @@ -5242,7 +5242,7 @@ func (client DataCatalogClient) listConnections(ctx context.Context, request com // ListCustomProperties Returns a list of custom properties within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListCustomProperties.go.html to see an example of how to use ListCustomProperties API. // A default retry strategy applies to this operation ListCustomProperties() @@ -5300,7 +5300,7 @@ func (client DataCatalogClient) listCustomProperties(ctx context.Context, reques // ListDataAssetTags Returns a list of all tags for a data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListDataAssetTags.go.html to see an example of how to use ListDataAssetTags API. // A default retry strategy applies to this operation ListDataAssetTags() @@ -5358,7 +5358,7 @@ func (client DataCatalogClient) listDataAssetTags(ctx context.Context, request c // ListDataAssets Returns a list of data assets within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListDataAssets.go.html to see an example of how to use ListDataAssets API. // A default retry strategy applies to this operation ListDataAssets() @@ -5416,7 +5416,7 @@ func (client DataCatalogClient) listDataAssets(ctx context.Context, request comm // ListDerivedLogicalEntities List logical entities derived from this pattern. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListDerivedLogicalEntities.go.html to see an example of how to use ListDerivedLogicalEntities API. // A default retry strategy applies to this operation ListDerivedLogicalEntities() @@ -5479,7 +5479,7 @@ func (client DataCatalogClient) listDerivedLogicalEntities(ctx context.Context, // ListEntities Returns a list of all entities of a data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListEntities.go.html to see an example of how to use ListEntities API. // A default retry strategy applies to this operation ListEntities() @@ -5537,7 +5537,7 @@ func (client DataCatalogClient) listEntities(ctx context.Context, request common // ListEntityTags Returns a list of all tags for a data entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListEntityTags.go.html to see an example of how to use ListEntityTags API. // A default retry strategy applies to this operation ListEntityTags() @@ -5595,7 +5595,7 @@ func (client DataCatalogClient) listEntityTags(ctx context.Context, request comm // ListFolderTags Returns a list of all tags for a folder. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListFolderTags.go.html to see an example of how to use ListFolderTags API. // A default retry strategy applies to this operation ListFolderTags() @@ -5653,7 +5653,7 @@ func (client DataCatalogClient) listFolderTags(ctx context.Context, request comm // ListFolders Returns a list of all folders. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListFolders.go.html to see an example of how to use ListFolders API. // A default retry strategy applies to this operation ListFolders() @@ -5711,7 +5711,7 @@ func (client DataCatalogClient) listFolders(ctx context.Context, request common. // ListGlossaries Returns a list of all glossaries within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListGlossaries.go.html to see an example of how to use ListGlossaries API. // A default retry strategy applies to this operation ListGlossaries() @@ -5769,7 +5769,7 @@ func (client DataCatalogClient) listGlossaries(ctx context.Context, request comm // ListJobDefinitions Returns a list of job definitions within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListJobDefinitions.go.html to see an example of how to use ListJobDefinitions API. // A default retry strategy applies to this operation ListJobDefinitions() @@ -5827,7 +5827,7 @@ func (client DataCatalogClient) listJobDefinitions(ctx context.Context, request // ListJobExecutions Returns a list of job executions for a job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListJobExecutions.go.html to see an example of how to use ListJobExecutions API. // A default retry strategy applies to this operation ListJobExecutions() @@ -5885,7 +5885,7 @@ func (client DataCatalogClient) listJobExecutions(ctx context.Context, request c // ListJobLogs Returns a list of job logs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListJobLogs.go.html to see an example of how to use ListJobLogs API. // A default retry strategy applies to this operation ListJobLogs() @@ -5943,7 +5943,7 @@ func (client DataCatalogClient) listJobLogs(ctx context.Context, request common. // ListJobMetrics Returns a list of job metrics. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListJobMetrics.go.html to see an example of how to use ListJobMetrics API. // A default retry strategy applies to this operation ListJobMetrics() @@ -6001,7 +6001,7 @@ func (client DataCatalogClient) listJobMetrics(ctx context.Context, request comm // ListJobs Returns a list of jobs within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListJobs.go.html to see an example of how to use ListJobs API. // A default retry strategy applies to this operation ListJobs() @@ -6059,7 +6059,7 @@ func (client DataCatalogClient) listJobs(ctx context.Context, request common.OCI // ListMetastores Returns a list of all metastores in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListMetastores.go.html to see an example of how to use ListMetastores API. // A default retry strategy applies to this operation ListMetastores() @@ -6117,7 +6117,7 @@ func (client DataCatalogClient) listMetastores(ctx context.Context, request comm // ListNamespaces Returns a list of namespaces within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListNamespaces.go.html to see an example of how to use ListNamespaces API. // A default retry strategy applies to this operation ListNamespaces() @@ -6175,7 +6175,7 @@ func (client DataCatalogClient) listNamespaces(ctx context.Context, request comm // ListPatterns Returns a list of patterns within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListPatterns.go.html to see an example of how to use ListPatterns API. // A default retry strategy applies to this operation ListPatterns() @@ -6233,7 +6233,7 @@ func (client DataCatalogClient) listPatterns(ctx context.Context, request common // ListRules Returns a list of all rules of a data entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListRules.go.html to see an example of how to use ListRules API. // A default retry strategy applies to this operation ListRules() @@ -6291,7 +6291,7 @@ func (client DataCatalogClient) listRules(ctx context.Context, request common.OC // ListTags Returns a list of all user created tags in the system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListTags.go.html to see an example of how to use ListTags API. // A default retry strategy applies to this operation ListTags() @@ -6349,7 +6349,7 @@ func (client DataCatalogClient) listTags(ctx context.Context, request common.OCI // ListTermRelationships Returns a list of all term relationships within a glossary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListTermRelationships.go.html to see an example of how to use ListTermRelationships API. // A default retry strategy applies to this operation ListTermRelationships() @@ -6407,7 +6407,7 @@ func (client DataCatalogClient) listTermRelationships(ctx context.Context, reque // ListTerms Returns a list of all terms within a glossary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListTerms.go.html to see an example of how to use ListTerms API. // A default retry strategy applies to this operation ListTerms() @@ -6465,7 +6465,7 @@ func (client DataCatalogClient) listTerms(ctx context.Context, request common.OC // ListTypes Returns a list of all types within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListTypes.go.html to see an example of how to use ListTypes API. // A default retry strategy applies to this operation ListTypes() @@ -6523,7 +6523,7 @@ func (client DataCatalogClient) listTypes(ctx context.Context, request common.OC // ListWorkRequestErrors Returns a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -6581,7 +6581,7 @@ func (client DataCatalogClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Returns a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -6639,7 +6639,7 @@ func (client DataCatalogClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -6697,7 +6697,7 @@ func (client DataCatalogClient) listWorkRequests(ctx context.Context, request co // ObjectStats Returns stats on objects by type in the repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ObjectStats.go.html to see an example of how to use ObjectStats API. // A default retry strategy applies to this operation ObjectStats() @@ -6755,7 +6755,7 @@ func (client DataCatalogClient) objectStats(ctx context.Context, request common. // ParseConnection Parse data asset references through connections from this data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ParseConnection.go.html to see an example of how to use ParseConnection API. func (client DataCatalogClient) ParseConnection(ctx context.Context, request ParseConnectionRequest) (response ParseConnectionResponse, err error) { @@ -6818,7 +6818,7 @@ func (client DataCatalogClient) parseConnection(ctx context.Context, request com // ProcessRecommendation Act on a recommendation. A recommendation can be accepted or rejected. For example, if a recommendation of type LINK_GLOSSARY_TERM // is accepted, the system will link the source object (e.g. an attribute) to a target glossary term. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ProcessRecommendation.go.html to see an example of how to use ProcessRecommendation API. func (client DataCatalogClient) ProcessRecommendation(ctx context.Context, request ProcessRecommendationRequest) (response ProcessRecommendationResponse, err error) { @@ -6877,7 +6877,7 @@ func (client DataCatalogClient) processRecommendation(ctx context.Context, reque // By default, it will return inferred recommendations for review. The optional query param 'RecommendationStatus' can be set, // to return only recommendations having that status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/Recommendations.go.html to see an example of how to use Recommendations API. func (client DataCatalogClient) Recommendations(ctx context.Context, request RecommendationsRequest) (response RecommendationsResponse, err error) { @@ -6934,7 +6934,7 @@ func (client DataCatalogClient) recommendations(ctx context.Context, request com // RemoveDataSelectorPatterns Remove data selector pattern from the data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/RemoveDataSelectorPatterns.go.html to see an example of how to use RemoveDataSelectorPatterns API. func (client DataCatalogClient) RemoveDataSelectorPatterns(ctx context.Context, request RemoveDataSelectorPatternsRequest) (response RemoveDataSelectorPatternsResponse, err error) { @@ -6996,7 +6996,7 @@ func (client DataCatalogClient) removeDataSelectorPatterns(ctx context.Context, // SearchCriteria Returns a list of search results within a data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/SearchCriteria.go.html to see an example of how to use SearchCriteria API. // A default retry strategy applies to this operation SearchCriteria() @@ -7054,7 +7054,7 @@ func (client DataCatalogClient) searchCriteria(ctx context.Context, request comm // SuggestMatches Returns a list of potential string matches for a given input string. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/SuggestMatches.go.html to see an example of how to use SuggestMatches API. // A default retry strategy applies to this operation SuggestMatches() @@ -7112,7 +7112,7 @@ func (client DataCatalogClient) suggestMatches(ctx context.Context, request comm // SynchronousExportDataAsset Export technical objects from a Data Asset // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/SynchronousExportDataAsset.go.html to see an example of how to use SynchronousExportDataAsset API. func (client DataCatalogClient) SynchronousExportDataAsset(ctx context.Context, request SynchronousExportDataAssetRequest) (response SynchronousExportDataAssetResponse, err error) { @@ -7173,7 +7173,7 @@ func (client DataCatalogClient) synchronousExportDataAsset(ctx context.Context, // TestConnection Test the connection by connecting to the data asset using credentials in the metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/TestConnection.go.html to see an example of how to use TestConnection API. // A default retry strategy applies to this operation TestConnection() @@ -7236,7 +7236,7 @@ func (client DataCatalogClient) testConnection(ctx context.Context, request comm // UpdateAttribute Updates a specific data asset attribute. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateAttribute.go.html to see an example of how to use UpdateAttribute API. func (client DataCatalogClient) UpdateAttribute(ctx context.Context, request UpdateAttributeRequest) (response UpdateAttributeResponse, err error) { @@ -7293,7 +7293,7 @@ func (client DataCatalogClient) updateAttribute(ctx context.Context, request com // UpdateCatalog Updates the data catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateCatalog.go.html to see an example of how to use UpdateCatalog API. func (client DataCatalogClient) UpdateCatalog(ctx context.Context, request UpdateCatalogRequest) (response UpdateCatalogResponse, err error) { @@ -7350,7 +7350,7 @@ func (client DataCatalogClient) updateCatalog(ctx context.Context, request commo // UpdateCatalogPrivateEndpoint Updates the private reverse connection endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateCatalogPrivateEndpoint.go.html to see an example of how to use UpdateCatalogPrivateEndpoint API. func (client DataCatalogClient) UpdateCatalogPrivateEndpoint(ctx context.Context, request UpdateCatalogPrivateEndpointRequest) (response UpdateCatalogPrivateEndpointResponse, err error) { @@ -7407,7 +7407,7 @@ func (client DataCatalogClient) updateCatalogPrivateEndpoint(ctx context.Context // UpdateConnection Updates a specific connection of a data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateConnection.go.html to see an example of how to use UpdateConnection API. func (client DataCatalogClient) UpdateConnection(ctx context.Context, request UpdateConnectionRequest) (response UpdateConnectionResponse, err error) { @@ -7464,7 +7464,7 @@ func (client DataCatalogClient) updateConnection(ctx context.Context, request co // UpdateCustomProperty Updates a specific custom property identified by the given key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateCustomProperty.go.html to see an example of how to use UpdateCustomProperty API. func (client DataCatalogClient) UpdateCustomProperty(ctx context.Context, request UpdateCustomPropertyRequest) (response UpdateCustomPropertyResponse, err error) { @@ -7521,7 +7521,7 @@ func (client DataCatalogClient) updateCustomProperty(ctx context.Context, reques // UpdateDataAsset Updates a specific data asset identified by the given key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateDataAsset.go.html to see an example of how to use UpdateDataAsset API. func (client DataCatalogClient) UpdateDataAsset(ctx context.Context, request UpdateDataAssetRequest) (response UpdateDataAssetResponse, err error) { @@ -7578,7 +7578,7 @@ func (client DataCatalogClient) updateDataAsset(ctx context.Context, request com // UpdateEntity Updates a specific data entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateEntity.go.html to see an example of how to use UpdateEntity API. func (client DataCatalogClient) UpdateEntity(ctx context.Context, request UpdateEntityRequest) (response UpdateEntityResponse, err error) { @@ -7635,7 +7635,7 @@ func (client DataCatalogClient) updateEntity(ctx context.Context, request common // UpdateFolder Updates a specific folder of a data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateFolder.go.html to see an example of how to use UpdateFolder API. func (client DataCatalogClient) UpdateFolder(ctx context.Context, request UpdateFolderRequest) (response UpdateFolderResponse, err error) { @@ -7692,7 +7692,7 @@ func (client DataCatalogClient) updateFolder(ctx context.Context, request common // UpdateGlossary Updates a specific glossary identified by the given key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateGlossary.go.html to see an example of how to use UpdateGlossary API. func (client DataCatalogClient) UpdateGlossary(ctx context.Context, request UpdateGlossaryRequest) (response UpdateGlossaryResponse, err error) { @@ -7749,7 +7749,7 @@ func (client DataCatalogClient) updateGlossary(ctx context.Context, request comm // UpdateJob Updates a specific job identified by the given key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateJob.go.html to see an example of how to use UpdateJob API. func (client DataCatalogClient) UpdateJob(ctx context.Context, request UpdateJobRequest) (response UpdateJobResponse, err error) { @@ -7806,7 +7806,7 @@ func (client DataCatalogClient) updateJob(ctx context.Context, request common.OC // UpdateJobDefinition Update a specific job definition identified by the given key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateJobDefinition.go.html to see an example of how to use UpdateJobDefinition API. func (client DataCatalogClient) UpdateJobDefinition(ctx context.Context, request UpdateJobDefinitionRequest) (response UpdateJobDefinitionResponse, err error) { @@ -7863,7 +7863,7 @@ func (client DataCatalogClient) updateJobDefinition(ctx context.Context, request // UpdateMetastore Updates a metastore resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateMetastore.go.html to see an example of how to use UpdateMetastore API. func (client DataCatalogClient) UpdateMetastore(ctx context.Context, request UpdateMetastoreRequest) (response UpdateMetastoreResponse, err error) { @@ -7920,7 +7920,7 @@ func (client DataCatalogClient) updateMetastore(ctx context.Context, request com // UpdateNamespace Updates a specific namespace identified by the given key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateNamespace.go.html to see an example of how to use UpdateNamespace API. func (client DataCatalogClient) UpdateNamespace(ctx context.Context, request UpdateNamespaceRequest) (response UpdateNamespaceResponse, err error) { @@ -7977,7 +7977,7 @@ func (client DataCatalogClient) updateNamespace(ctx context.Context, request com // UpdatePattern Updates a specific pattern identified by the given key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdatePattern.go.html to see an example of how to use UpdatePattern API. func (client DataCatalogClient) UpdatePattern(ctx context.Context, request UpdatePatternRequest) (response UpdatePatternResponse, err error) { @@ -8034,7 +8034,7 @@ func (client DataCatalogClient) updatePattern(ctx context.Context, request commo // UpdateTerm Updates a specific glossary term. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateTerm.go.html to see an example of how to use UpdateTerm API. func (client DataCatalogClient) UpdateTerm(ctx context.Context, request UpdateTermRequest) (response UpdateTermResponse, err error) { @@ -8091,7 +8091,7 @@ func (client DataCatalogClient) updateTerm(ctx context.Context, request common.O // UpdateTermRelationship Updates a specific glossary term relationship. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UpdateTermRelationship.go.html to see an example of how to use UpdateTermRelationship API. func (client DataCatalogClient) UpdateTermRelationship(ctx context.Context, request UpdateTermRelationshipRequest) (response UpdateTermRelationshipResponse, err error) { @@ -8148,7 +8148,7 @@ func (client DataCatalogClient) updateTermRelationship(ctx context.Context, requ // UploadCredentials Upload connection credentails and metadata for this connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/UploadCredentials.go.html to see an example of how to use UploadCredentials API. func (client DataCatalogClient) UploadCredentials(ctx context.Context, request UploadCredentialsRequest) (response UploadCredentialsResponse, err error) { @@ -8210,7 +8210,7 @@ func (client DataCatalogClient) uploadCredentials(ctx context.Context, request c // Users Returns active users in the system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/Users.go.html to see an example of how to use Users API. // A default retry strategy applies to this operation Users() @@ -8268,7 +8268,7 @@ func (client DataCatalogClient) users(ctx context.Context, request common.OCIReq // ValidateConnection Validate connection by connecting to the data asset using credentials in metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ValidateConnection.go.html to see an example of how to use ValidateConnection API. // A default retry strategy applies to this operation ValidateConnection() @@ -8331,7 +8331,7 @@ func (client DataCatalogClient) validateConnection(ctx context.Context, request // ValidatePattern Validate pattern by deriving file groups representing logical entities using the expression // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datacatalog/ValidatePattern.go.html to see an example of how to use ValidatePattern API. // A default retry strategy applies to this operation ValidatePattern() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataflow/create_run_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataflow/create_run_details.go index 76f4c0f82de..8bb66af0b6d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataflow/create_run_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataflow/create_run_details.go @@ -34,6 +34,7 @@ import ( // - parameters // - sparkVersion // - warehouseBucketUri +// // It is expected that either the applicationId or the execute parameter is specified; but not both. // If both or none are set, a Bad Request (HTTP 400) status will be sent as the response. // If an appicationId is not specified, then a value for the execute parameter is expected. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataflow/dataflow_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataflow/dataflow_client.go index dc1187b507e..c4fbd9c194b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataflow/dataflow_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataflow/dataflow_client.go @@ -94,7 +94,7 @@ func (client *DataFlowClient) ConfigurationProvider() *common.ConfigurationProvi // ChangeApplicationCompartment Moves an application into a different compartment. When provided, If-Match is checked against ETag values of the resource. // Associated resources, like runs, will not be automatically moved. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ChangeApplicationCompartment.go.html to see an example of how to use ChangeApplicationCompartment API. func (client DataFlowClient) ChangeApplicationCompartment(ctx context.Context, request ChangeApplicationCompartmentRequest) (response ChangeApplicationCompartmentResponse, err error) { @@ -159,7 +159,7 @@ func (client DataFlowClient) changeApplicationCompartment(ctx context.Context, r // automatically moved. The pool must be in a terminal state (STOPPED, FAILED) in // order for it to be moved to a different compartment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ChangePoolCompartment.go.html to see an example of how to use ChangePoolCompartment API. // A default retry strategy applies to this operation ChangePoolCompartment() @@ -222,7 +222,7 @@ func (client DataFlowClient) changePoolCompartment(ctx context.Context, request // ChangePrivateEndpointCompartment Moves a private endpoint into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ChangePrivateEndpointCompartment.go.html to see an example of how to use ChangePrivateEndpointCompartment API. func (client DataFlowClient) ChangePrivateEndpointCompartment(ctx context.Context, request ChangePrivateEndpointCompartmentRequest) (response ChangePrivateEndpointCompartmentResponse, err error) { @@ -282,7 +282,7 @@ func (client DataFlowClient) changePrivateEndpointCompartment(ctx context.Contex // automatically moved. The run must be in a terminal state (CANCELED, FAILED, SUCCEEDED) in // order for it to be moved to a different compartment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ChangeRunCompartment.go.html to see an example of how to use ChangeRunCompartment API. func (client DataFlowClient) ChangeRunCompartment(ctx context.Context, request ChangeRunCompartmentRequest) (response ChangeRunCompartmentResponse, err error) { @@ -344,7 +344,7 @@ func (client DataFlowClient) changeRunCompartment(ctx context.Context, request c // ChangeSqlEndpointCompartment Moves an Sql Endpoint from one compartment to another. When provided, If-Match is checked against ETag values of the Sql Endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ChangeSqlEndpointCompartment.go.html to see an example of how to use ChangeSqlEndpointCompartment API. func (client DataFlowClient) ChangeSqlEndpointCompartment(ctx context.Context, request ChangeSqlEndpointCompartmentRequest) (response ChangeSqlEndpointCompartmentResponse, err error) { @@ -406,7 +406,7 @@ func (client DataFlowClient) changeSqlEndpointCompartment(ctx context.Context, r // CreateApplication Creates an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/CreateApplication.go.html to see an example of how to use CreateApplication API. func (client DataFlowClient) CreateApplication(ctx context.Context, request CreateApplicationRequest) (response CreateApplicationResponse, err error) { @@ -468,7 +468,7 @@ func (client DataFlowClient) createApplication(ctx context.Context, request comm // CreatePool Create a pool to be used by dataflow runs or applications. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/CreatePool.go.html to see an example of how to use CreatePool API. // A default retry strategy applies to this operation CreatePool() @@ -531,7 +531,7 @@ func (client DataFlowClient) createPool(ctx context.Context, request common.OCIR // CreatePrivateEndpoint Creates a private endpoint to be used by applications. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/CreatePrivateEndpoint.go.html to see an example of how to use CreatePrivateEndpoint API. func (client DataFlowClient) CreatePrivateEndpoint(ctx context.Context, request CreatePrivateEndpointRequest) (response CreatePrivateEndpointResponse, err error) { @@ -593,7 +593,7 @@ func (client DataFlowClient) createPrivateEndpoint(ctx context.Context, request // CreateRun Creates a run for an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/CreateRun.go.html to see an example of how to use CreateRun API. func (client DataFlowClient) CreateRun(ctx context.Context, request CreateRunRequest) (response CreateRunResponse, err error) { @@ -655,7 +655,7 @@ func (client DataFlowClient) createRun(ctx context.Context, request common.OCIRe // CreateSqlEndpoint Create a new Sql Endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/CreateSqlEndpoint.go.html to see an example of how to use CreateSqlEndpoint API. func (client DataFlowClient) CreateSqlEndpoint(ctx context.Context, request CreateSqlEndpointRequest) (response CreateSqlEndpointResponse, err error) { @@ -717,7 +717,7 @@ func (client DataFlowClient) createSqlEndpoint(ctx context.Context, request comm // CreateStatement Executes a statement for a Session run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/CreateStatement.go.html to see an example of how to use CreateStatement API. func (client DataFlowClient) CreateStatement(ctx context.Context, request CreateStatementRequest) (response CreateStatementResponse, err error) { @@ -774,7 +774,7 @@ func (client DataFlowClient) createStatement(ctx context.Context, request common // DeleteApplication Deletes an application using an `applicationId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/DeleteApplication.go.html to see an example of how to use DeleteApplication API. func (client DataFlowClient) DeleteApplication(ctx context.Context, request DeleteApplicationRequest) (response DeleteApplicationResponse, err error) { @@ -831,7 +831,7 @@ func (client DataFlowClient) deleteApplication(ctx context.Context, request comm // DeletePool Deletes a pool using a `poolId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/DeletePool.go.html to see an example of how to use DeletePool API. func (client DataFlowClient) DeletePool(ctx context.Context, request DeletePoolRequest) (response DeletePoolResponse, err error) { @@ -888,7 +888,7 @@ func (client DataFlowClient) deletePool(ctx context.Context, request common.OCIR // DeletePrivateEndpoint Deletes a private endpoint using a `privateEndpointId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/DeletePrivateEndpoint.go.html to see an example of how to use DeletePrivateEndpoint API. func (client DataFlowClient) DeletePrivateEndpoint(ctx context.Context, request DeletePrivateEndpointRequest) (response DeletePrivateEndpointResponse, err error) { @@ -946,7 +946,7 @@ func (client DataFlowClient) deletePrivateEndpoint(ctx context.Context, request // DeleteRun Cancels the specified run if it has not already completed or was previously cancelled. // If a run is in progress, the executing job will be killed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/DeleteRun.go.html to see an example of how to use DeleteRun API. func (client DataFlowClient) DeleteRun(ctx context.Context, request DeleteRunRequest) (response DeleteRunResponse, err error) { @@ -1003,7 +1003,7 @@ func (client DataFlowClient) deleteRun(ctx context.Context, request common.OCIRe // DeleteSqlEndpoint Delete a Sql Endpoint resource, identified by the SqlEndpoint id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/DeleteSqlEndpoint.go.html to see an example of how to use DeleteSqlEndpoint API. func (client DataFlowClient) DeleteSqlEndpoint(ctx context.Context, request DeleteSqlEndpointRequest) (response DeleteSqlEndpointResponse, err error) { @@ -1060,7 +1060,7 @@ func (client DataFlowClient) deleteSqlEndpoint(ctx context.Context, request comm // DeleteStatement Cancels the specified statement for a Session run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/DeleteStatement.go.html to see an example of how to use DeleteStatement API. // A default retry strategy applies to this operation DeleteStatement() @@ -1118,7 +1118,7 @@ func (client DataFlowClient) deleteStatement(ctx context.Context, request common // GetApplication Retrieves an application using an `applicationId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/GetApplication.go.html to see an example of how to use GetApplication API. // A default retry strategy applies to this operation GetApplication() @@ -1176,7 +1176,7 @@ func (client DataFlowClient) getApplication(ctx context.Context, request common. // GetPool Retrieves a pool using a `poolId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/GetPool.go.html to see an example of how to use GetPool API. // A default retry strategy applies to this operation GetPool() @@ -1234,7 +1234,7 @@ func (client DataFlowClient) getPool(ctx context.Context, request common.OCIRequ // GetPrivateEndpoint Retrieves an private endpoint using a `privateEndpointId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/GetPrivateEndpoint.go.html to see an example of how to use GetPrivateEndpoint API. // A default retry strategy applies to this operation GetPrivateEndpoint() @@ -1292,7 +1292,7 @@ func (client DataFlowClient) getPrivateEndpoint(ctx context.Context, request com // GetRun Retrieves the run for the specified `runId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/GetRun.go.html to see an example of how to use GetRun API. // A default retry strategy applies to this operation GetRun() @@ -1350,7 +1350,7 @@ func (client DataFlowClient) getRun(ctx context.Context, request common.OCIReque // GetRunLog Retrieves the content of an run log. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/GetRunLog.go.html to see an example of how to use GetRunLog API. // A default retry strategy applies to this operation GetRunLog() @@ -1407,7 +1407,7 @@ func (client DataFlowClient) getRunLog(ctx context.Context, request common.OCIRe // GetSqlEndpoint Retrieves a SQL Endpoint using a sqlEndpointId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/GetSqlEndpoint.go.html to see an example of how to use GetSqlEndpoint API. // A default retry strategy applies to this operation GetSqlEndpoint() @@ -1465,7 +1465,7 @@ func (client DataFlowClient) getSqlEndpoint(ctx context.Context, request common. // GetStatement Retrieves the statement corresponding to the `statementId` for a Session run specified by `runId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/GetStatement.go.html to see an example of how to use GetStatement API. // A default retry strategy applies to this operation GetStatement() @@ -1523,7 +1523,7 @@ func (client DataFlowClient) getStatement(ctx context.Context, request common.OC // GetWorkRequest Gets the status of the work request with the given OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1581,7 +1581,7 @@ func (client DataFlowClient) getWorkRequest(ctx context.Context, request common. // ListApplications Lists all applications in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListApplications.go.html to see an example of how to use ListApplications API. // A default retry strategy applies to this operation ListApplications() @@ -1639,7 +1639,7 @@ func (client DataFlowClient) listApplications(ctx context.Context, request commo // ListPools Lists all pools in the specified compartment. The query must include compartmentId. The query may also include one other parameter. If the query does not include compartmentId, or includes compartmentId, but with two or more other parameters, an error is returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListPools.go.html to see an example of how to use ListPools API. // A default retry strategy applies to this operation ListPools() @@ -1697,7 +1697,7 @@ func (client DataFlowClient) listPools(ctx context.Context, request common.OCIRe // ListPrivateEndpoints Lists all private endpoints in the specified compartment. The query must include compartmentId. The query may also include one other parameter. If the query does not include compartmentId, or includes compartmentId, but with two or more other parameters, an error is returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListPrivateEndpoints.go.html to see an example of how to use ListPrivateEndpoints API. // A default retry strategy applies to this operation ListPrivateEndpoints() @@ -1755,7 +1755,7 @@ func (client DataFlowClient) listPrivateEndpoints(ctx context.Context, request c // ListRunLogs Retrieves summaries of the run's logs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListRunLogs.go.html to see an example of how to use ListRunLogs API. // A default retry strategy applies to this operation ListRunLogs() @@ -1813,7 +1813,7 @@ func (client DataFlowClient) listRunLogs(ctx context.Context, request common.OCI // ListRuns Lists all runs of an application in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListRuns.go.html to see an example of how to use ListRuns API. // A default retry strategy applies to this operation ListRuns() @@ -1873,7 +1873,7 @@ func (client DataFlowClient) listRuns(ctx context.Context, request common.OCIReq // The query must include compartmentId or sqlEndpointId. // If the query does not include either compartmentId or sqlEndpointId, an error is returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListSqlEndpoints.go.html to see an example of how to use ListSqlEndpoints API. // A default retry strategy applies to this operation ListSqlEndpoints() @@ -1931,7 +1931,7 @@ func (client DataFlowClient) listSqlEndpoints(ctx context.Context, request commo // ListStatements Lists all statements for a Session run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListStatements.go.html to see an example of how to use ListStatements API. // A default retry strategy applies to this operation ListStatements() @@ -1989,7 +1989,7 @@ func (client DataFlowClient) listStatements(ctx context.Context, request common. // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -2047,7 +2047,7 @@ func (client DataFlowClient) listWorkRequestErrors(ctx context.Context, request // ListWorkRequestLogs Return a paginated list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -2105,7 +2105,7 @@ func (client DataFlowClient) listWorkRequestLogs(ctx context.Context, request co // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2163,7 +2163,7 @@ func (client DataFlowClient) listWorkRequests(ctx context.Context, request commo // StartPool Starts the dataflow pool for a given `poolId`. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/StartPool.go.html to see an example of how to use StartPool API. // A default retry strategy applies to this operation StartPool() @@ -2226,7 +2226,7 @@ func (client DataFlowClient) startPool(ctx context.Context, request common.OCIRe // StopPool Stops the dataflow pool for a given `poolId`. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/StopPool.go.html to see an example of how to use StopPool API. // A default retry strategy applies to this operation StopPool() @@ -2289,7 +2289,7 @@ func (client DataFlowClient) stopPool(ctx context.Context, request common.OCIReq // UpdateApplication Updates an application using an `applicationId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/UpdateApplication.go.html to see an example of how to use UpdateApplication API. func (client DataFlowClient) UpdateApplication(ctx context.Context, request UpdateApplicationRequest) (response UpdateApplicationResponse, err error) { @@ -2348,7 +2348,7 @@ func (client DataFlowClient) updateApplication(ctx context.Context, request comm // a previously defined pool,then a 409 status code will be returned.This indicates // that a conflict has been detected. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/UpdatePool.go.html to see an example of how to use UpdatePool API. func (client DataFlowClient) UpdatePool(ctx context.Context, request UpdatePoolRequest) (response UpdatePoolResponse, err error) { @@ -2407,7 +2407,7 @@ func (client DataFlowClient) updatePool(ctx context.Context, request common.OCIR // a previously defined private endpoint, then a 409 status code will be returned. This indicates // that a conflict has been detected. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/UpdatePrivateEndpoint.go.html to see an example of how to use UpdatePrivateEndpoint API. func (client DataFlowClient) UpdatePrivateEndpoint(ctx context.Context, request UpdatePrivateEndpointRequest) (response UpdatePrivateEndpointResponse, err error) { @@ -2464,7 +2464,7 @@ func (client DataFlowClient) updatePrivateEndpoint(ctx context.Context, request // UpdateRun Updates a run using a `runId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/UpdateRun.go.html to see an example of how to use UpdateRun API. func (client DataFlowClient) UpdateRun(ctx context.Context, request UpdateRunRequest) (response UpdateRunResponse, err error) { @@ -2521,7 +2521,7 @@ func (client DataFlowClient) updateRun(ctx context.Context, request common.OCIRe // UpdateSqlEndpoint Update a Sql Endpoint resource, identified by the SqlEndpoint id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataflow/UpdateSqlEndpoint.go.html to see an example of how to use UpdateSqlEndpoint API. func (client DataFlowClient) UpdateSqlEndpoint(ctx context.Context, request UpdateSqlEndpointRequest) (response UpdateSqlEndpointResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/abstract_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/abstract_field.go index 31face569f7..cda4daf72cb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/abstract_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/abstract_field.go @@ -39,37 +39,37 @@ type AbstractField struct { Description *string `mandatory:"false" json:"description"` } -//GetKey returns Key +// GetKey returns Key func (m AbstractField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m AbstractField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m AbstractField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m AbstractField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m AbstractField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m AbstractField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m AbstractField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/aggregator.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/aggregator.go index 29eed710a08..cf20903ea12 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/aggregator.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/aggregator.go @@ -58,62 +58,62 @@ type Aggregator struct { MaterializedGroupByColumns *MaterializedDynamicField `mandatory:"false" json:"materializedGroupByColumns"` } -//GetKey returns Key +// GetKey returns Key func (m Aggregator) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Aggregator) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Aggregator) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Aggregator) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Aggregator) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Aggregator) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Aggregator) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Aggregator) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Aggregator) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Aggregator) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Aggregator) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Aggregator) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/array_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/array_type.go index 36b0f3f948c..fc119949d92 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/array_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/array_type.go @@ -40,32 +40,32 @@ type ArrayType struct { ElementType *string `mandatory:"false" json:"elementType"` } -//GetKey returns Key +// GetKey returns Key func (m ArrayType) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ArrayType) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ArrayType) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ArrayType) GetName() *string { return m.Name } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ArrayType) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m ArrayType) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/avro_format_attribute.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/avro_format_attribute.go index b9987e42895..6c71cce430d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/avro_format_attribute.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/avro_format_attribute.go @@ -26,7 +26,7 @@ type AvroFormatAttribute struct { Compression *string `mandatory:"false" json:"compression"` } -//GetIsFilePattern returns IsFilePattern +// GetIsFilePattern returns IsFilePattern func (m AvroFormatAttribute) GetIsFilePattern() *bool { return m.IsFilePattern } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/bip_call_attribute.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/bip_call_attribute.go index 79fce17ce2d..2e2ac73e5e0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/bip_call_attribute.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/bip_call_attribute.go @@ -35,7 +35,7 @@ type BipCallAttribute struct { BucketSchema *Schema `mandatory:"false" json:"bucketSchema"` } -//GetFetchSize returns FetchSize +// GetFetchSize returns FetchSize func (m BipCallAttribute) GetFetchSize() *int { return m.FetchSize } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/composite_field_map.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/composite_field_map.go index 92b08e086be..2409bf91d45 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/composite_field_map.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/composite_field_map.go @@ -39,7 +39,7 @@ type CompositeFieldMap struct { FieldMaps []FieldMap `mandatory:"false" json:"fieldMaps"` } -//GetDescription returns Description +// GetDescription returns Description func (m CompositeFieldMap) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/composite_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/composite_type.go index 2509198f480..fb58f923a82 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/composite_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/composite_type.go @@ -44,32 +44,32 @@ type CompositeType struct { ConfigDefinition *ConfigDefinition `mandatory:"false" json:"configDefinition"` } -//GetKey returns Key +// GetKey returns Key func (m CompositeType) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CompositeType) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CompositeType) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CompositeType) GetName() *string { return m.Name } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CompositeType) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m CompositeType) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_composite_field_map.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_composite_field_map.go index 8f01a88477f..052cc318847 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_composite_field_map.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_composite_field_map.go @@ -42,7 +42,7 @@ type ConditionalCompositeFieldMap struct { FieldMaps []FieldMap `mandatory:"false" json:"fieldMaps"` } -//GetDescription returns Description +// GetDescription returns Description func (m ConditionalCompositeFieldMap) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_input_link.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_input_link.go index a375e855fd6..43383cacff6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_input_link.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_input_link.go @@ -43,32 +43,32 @@ type ConditionalInputLink struct { Condition *Expression `mandatory:"false" json:"condition"` } -//GetKey returns Key +// GetKey returns Key func (m ConditionalInputLink) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConditionalInputLink) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConditionalInputLink) GetParentRef() *ParentReference { return m.ParentRef } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConditionalInputLink) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m ConditionalInputLink) GetDescription() *string { return m.Description } -//GetPort returns Port +// GetPort returns Port func (m ConditionalInputLink) GetPort() *string { return m.Port } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_output_port.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_output_port.go index 55b6863a327..54ce9f80014 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_output_port.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/conditional_output_port.go @@ -47,37 +47,37 @@ type ConditionalOutputPort struct { PortType ConditionalOutputPortPortTypeEnum `mandatory:"false" json:"portType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m ConditionalOutputPort) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConditionalOutputPort) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConditionalOutputPort) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m ConditionalOutputPort) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConditionalOutputPort) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m ConditionalOutputPort) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConditionalOutputPort) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/configured_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/configured_type.go index b935c364a3d..7e964e805d3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/configured_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/configured_type.go @@ -44,32 +44,32 @@ type ConfiguredType struct { ConfigDefinition *ConfigDefinition `mandatory:"false" json:"configDefinition"` } -//GetKey returns Key +// GetKey returns Key func (m ConfiguredType) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConfiguredType) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConfiguredType) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConfiguredType) GetName() *string { return m.Name } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConfiguredType) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m ConfiguredType) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_adwc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_adwc.go index 1ce5b261597..f73572fe220 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_adwc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_adwc.go @@ -70,67 +70,67 @@ type ConnectionFromAdwc struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromAdwc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromAdwc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromAdwc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromAdwc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromAdwc) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromAdwc) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromAdwc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromAdwc) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromAdwc) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromAdwc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromAdwc) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromAdwc) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromAdwc) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_adwc_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_adwc_details.go index 1dbbd0ebac5..db524ea0c4e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_adwc_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_adwc_details.go @@ -67,62 +67,62 @@ type ConnectionFromAdwcDetails struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromAdwcDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromAdwcDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromAdwcDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromAdwcDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromAdwcDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromAdwcDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromAdwcDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromAdwcDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromAdwcDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromAdwcDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromAdwcDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromAdwcDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_amazon_s3.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_amazon_s3.go index 222698d668f..523ef176dbc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_amazon_s3.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_amazon_s3.go @@ -60,67 +60,67 @@ type ConnectionFromAmazonS3 struct { SecretKey *SensitiveAttribute `mandatory:"false" json:"secretKey"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromAmazonS3) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromAmazonS3) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromAmazonS3) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromAmazonS3) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromAmazonS3) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromAmazonS3) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromAmazonS3) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromAmazonS3) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromAmazonS3) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromAmazonS3) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromAmazonS3) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromAmazonS3) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromAmazonS3) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_amazon_s3_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_amazon_s3_details.go index 266c01ab3cb..a9978983216 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_amazon_s3_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_amazon_s3_details.go @@ -57,62 +57,62 @@ type ConnectionFromAmazonS3Details struct { SecretKey *SensitiveAttribute `mandatory:"false" json:"secretKey"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromAmazonS3Details) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromAmazonS3Details) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromAmazonS3Details) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromAmazonS3Details) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromAmazonS3Details) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromAmazonS3Details) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromAmazonS3Details) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromAmazonS3Details) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromAmazonS3Details) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromAmazonS3Details) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromAmazonS3Details) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromAmazonS3Details) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_atp.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_atp.go index 4b10df490af..2baeb03506c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_atp.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_atp.go @@ -70,67 +70,67 @@ type ConnectionFromAtp struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromAtp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromAtp) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromAtp) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromAtp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromAtp) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromAtp) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromAtp) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromAtp) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromAtp) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromAtp) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromAtp) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromAtp) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromAtp) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_atp_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_atp_details.go index c48128c3853..bc266b9a9a3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_atp_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_atp_details.go @@ -67,62 +67,62 @@ type ConnectionFromAtpDetails struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromAtpDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromAtpDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromAtpDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromAtpDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromAtpDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromAtpDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromAtpDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromAtpDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromAtpDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromAtpDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromAtpDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromAtpDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bicc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bicc.go index dbcd5d6d6de..023132bb6df 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bicc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bicc.go @@ -63,67 +63,67 @@ type ConnectionFromBicc struct { DefaultExternalStorage *ExternalStorage `mandatory:"false" json:"defaultExternalStorage"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromBicc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromBicc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromBicc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromBicc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromBicc) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromBicc) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromBicc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromBicc) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromBicc) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromBicc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromBicc) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromBicc) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromBicc) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bicc_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bicc_details.go index ca862b44fe0..412f79d227a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bicc_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bicc_details.go @@ -60,62 +60,62 @@ type ConnectionFromBiccDetails struct { DefaultExternalStorage *ExternalStorage `mandatory:"false" json:"defaultExternalStorage"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromBiccDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromBiccDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromBiccDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromBiccDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromBiccDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromBiccDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromBiccDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromBiccDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromBiccDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromBiccDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromBiccDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromBiccDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bip.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bip.go index 12e5f58c9b2..f20c6bc10fa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bip.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bip.go @@ -61,67 +61,67 @@ type ConnectionFromBip struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromBip) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromBip) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromBip) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromBip) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromBip) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromBip) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromBip) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromBip) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromBip) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromBip) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromBip) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromBip) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromBip) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bip_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bip_details.go index 32d37e2dcb3..779347606b1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bip_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_bip_details.go @@ -58,62 +58,62 @@ type ConnectionFromBipDetails struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromBipDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromBipDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromBipDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromBipDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromBipDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromBipDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromBipDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromBipDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromBipDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromBipDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromBipDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromBipDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_hdfs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_hdfs.go index 707f70aa210..45240452a25 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_hdfs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_hdfs.go @@ -73,67 +73,67 @@ type ConnectionFromHdfs struct { KeyTabContent *SensitiveAttribute `mandatory:"false" json:"keyTabContent"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromHdfs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromHdfs) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromHdfs) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromHdfs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromHdfs) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromHdfs) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromHdfs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromHdfs) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromHdfs) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromHdfs) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromHdfs) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromHdfs) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromHdfs) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_hdfs_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_hdfs_details.go index 3bd953abe59..d30e7ca3d41 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_hdfs_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_hdfs_details.go @@ -70,62 +70,62 @@ type ConnectionFromHdfsDetails struct { KeyTabContent *SensitiveAttribute `mandatory:"false" json:"keyTabContent"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromHdfsDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromHdfsDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromHdfsDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromHdfsDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromHdfsDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromHdfsDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromHdfsDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromHdfsDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromHdfsDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromHdfsDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromHdfsDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromHdfsDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_jdbc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_jdbc.go index aa5667976b8..4bc187d34a7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_jdbc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_jdbc.go @@ -59,67 +59,67 @@ type ConnectionFromJdbc struct { Username *string `mandatory:"false" json:"username"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromJdbc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromJdbc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromJdbc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromJdbc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromJdbc) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromJdbc) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromJdbc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromJdbc) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromJdbc) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromJdbc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromJdbc) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromJdbc) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromJdbc) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_jdbc_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_jdbc_details.go index fe5f6f1d77b..783b5fafe48 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_jdbc_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_jdbc_details.go @@ -56,62 +56,62 @@ type ConnectionFromJdbcDetails struct { Username *string `mandatory:"false" json:"username"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromJdbcDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromJdbcDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromJdbcDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromJdbcDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromJdbcDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromJdbcDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromJdbcDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromJdbcDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromJdbcDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromJdbcDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromJdbcDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromJdbcDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_lake.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_lake.go index 9bf15db474f..12adbdcbf98 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_lake.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_lake.go @@ -56,67 +56,67 @@ type ConnectionFromLake struct { KeyMap map[string]string `mandatory:"false" json:"keyMap"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromLake) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromLake) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromLake) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromLake) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromLake) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromLake) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromLake) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromLake) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromLake) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromLake) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromLake) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromLake) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromLake) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_lake_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_lake_details.go index c6c2f345156..23cf2712d62 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_lake_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_lake_details.go @@ -53,62 +53,62 @@ type ConnectionFromLakeDetails struct { Metadata *ObjectMetadata `mandatory:"false" json:"metadata"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromLakeDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromLakeDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromLakeDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromLakeDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromLakeDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromLakeDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromLakeDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromLakeDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromLakeDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromLakeDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromLakeDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromLakeDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql.go index 8fe66fd3982..a6e4c293136 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql.go @@ -59,67 +59,67 @@ type ConnectionFromMySql struct { Username *string `mandatory:"false" json:"username"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromMySql) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromMySql) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromMySql) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromMySql) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromMySql) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromMySql) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromMySql) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromMySql) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromMySql) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromMySql) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromMySql) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromMySql) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromMySql) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_details.go index db292cdccb6..d444fac6c75 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_details.go @@ -56,62 +56,62 @@ type ConnectionFromMySqlDetails struct { Username *string `mandatory:"false" json:"username"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromMySqlDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromMySqlDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromMySqlDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromMySqlDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromMySqlDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromMySqlDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromMySqlDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromMySqlDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromMySqlDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromMySqlDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromMySqlDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromMySqlDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_heat_wave.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_heat_wave.go index f346d478d25..6aae1ff6aa7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_heat_wave.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_heat_wave.go @@ -64,67 +64,67 @@ type ConnectionFromMySqlHeatWave struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromMySqlHeatWave) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromMySqlHeatWave) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromMySqlHeatWave) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromMySqlHeatWave) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromMySqlHeatWave) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromMySqlHeatWave) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromMySqlHeatWave) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromMySqlHeatWave) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromMySqlHeatWave) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromMySqlHeatWave) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromMySqlHeatWave) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromMySqlHeatWave) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromMySqlHeatWave) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_heat_wave_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_heat_wave_details.go index b414c97f739..0f42372d49f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_heat_wave_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_my_sql_heat_wave_details.go @@ -61,62 +61,62 @@ type ConnectionFromMySqlHeatWaveDetails struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromMySqlHeatWaveDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromMySqlHeatWaveDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromMySqlHeatWaveDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromMySqlHeatWaveDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromMySqlHeatWaveDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromMySqlHeatWaveDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromMySqlHeatWaveDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromMySqlHeatWaveDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromMySqlHeatWaveDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromMySqlHeatWaveDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromMySqlHeatWaveDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromMySqlHeatWaveDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_object_storage.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_object_storage.go index 4fc406e2450..34604677de7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_object_storage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_object_storage.go @@ -68,67 +68,67 @@ type ConnectionFromObjectStorage struct { PassPhrase *string `mandatory:"false" json:"passPhrase"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromObjectStorage) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromObjectStorage) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromObjectStorage) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromObjectStorage) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromObjectStorage) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromObjectStorage) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromObjectStorage) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromObjectStorage) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromObjectStorage) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromObjectStorage) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromObjectStorage) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromObjectStorage) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromObjectStorage) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_object_storage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_object_storage_details.go index 00012713313..34ddc8fc6e8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_object_storage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_object_storage_details.go @@ -65,62 +65,62 @@ type ConnectionFromObjectStorageDetails struct { PassPhrase *string `mandatory:"false" json:"passPhrase"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromObjectStorageDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromObjectStorageDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromObjectStorageDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromObjectStorageDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromObjectStorageDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromObjectStorageDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromObjectStorageDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromObjectStorageDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromObjectStorageDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromObjectStorageDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromObjectStorageDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromObjectStorageDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle.go index ea2ed0fe6af..d20201c09c0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle.go @@ -64,67 +64,67 @@ type ConnectionFromOracle struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromOracle) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromOracle) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromOracle) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromOracle) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromOracle) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromOracle) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromOracle) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromOracle) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromOracle) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromOracle) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromOracle) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromOracle) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromOracle) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_details.go index ae2de6d5a39..df29a90ecc5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_details.go @@ -61,62 +61,62 @@ type ConnectionFromOracleDetails struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromOracleDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromOracleDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromOracleDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromOracleDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromOracleDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromOracleDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromOracleDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromOracleDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromOracleDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromOracleDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromOracleDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromOracleDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_ebs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_ebs.go index 47eafba749f..ec82e332483 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_ebs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_ebs.go @@ -64,67 +64,67 @@ type ConnectionFromOracleEbs struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromOracleEbs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromOracleEbs) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromOracleEbs) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromOracleEbs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromOracleEbs) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromOracleEbs) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromOracleEbs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromOracleEbs) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromOracleEbs) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromOracleEbs) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromOracleEbs) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromOracleEbs) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromOracleEbs) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_ebs_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_ebs_details.go index aa90f91216f..f85130ec32b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_ebs_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_ebs_details.go @@ -61,62 +61,62 @@ type ConnectionFromOracleEbsDetails struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromOracleEbsDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromOracleEbsDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromOracleEbsDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromOracleEbsDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromOracleEbsDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromOracleEbsDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromOracleEbsDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromOracleEbsDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromOracleEbsDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromOracleEbsDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromOracleEbsDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromOracleEbsDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_people_soft.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_people_soft.go index 6bfb8a4e2d6..58ded2db336 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_people_soft.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_people_soft.go @@ -64,67 +64,67 @@ type ConnectionFromOraclePeopleSoft struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromOraclePeopleSoft) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromOraclePeopleSoft) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromOraclePeopleSoft) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromOraclePeopleSoft) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromOraclePeopleSoft) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromOraclePeopleSoft) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromOraclePeopleSoft) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromOraclePeopleSoft) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromOraclePeopleSoft) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromOraclePeopleSoft) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromOraclePeopleSoft) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromOraclePeopleSoft) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromOraclePeopleSoft) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_people_soft_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_people_soft_details.go index 299e964e233..ec277784977 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_people_soft_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_people_soft_details.go @@ -61,62 +61,62 @@ type ConnectionFromOraclePeopleSoftDetails struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromOraclePeopleSoftDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromOraclePeopleSoftDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromOraclePeopleSoftDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromOraclePeopleSoftDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromOraclePeopleSoftDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromOraclePeopleSoftDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromOraclePeopleSoftDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromOraclePeopleSoftDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromOraclePeopleSoftDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromOraclePeopleSoftDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromOraclePeopleSoftDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromOraclePeopleSoftDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_siebel.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_siebel.go index 78dcde773ae..8d9dff3cbc7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_siebel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_siebel.go @@ -64,67 +64,67 @@ type ConnectionFromOracleSiebel struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromOracleSiebel) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromOracleSiebel) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromOracleSiebel) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromOracleSiebel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromOracleSiebel) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromOracleSiebel) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromOracleSiebel) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromOracleSiebel) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromOracleSiebel) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromOracleSiebel) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromOracleSiebel) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromOracleSiebel) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromOracleSiebel) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_siebel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_siebel_details.go index 46c857e1ca9..165e1b658b9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_siebel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_oracle_siebel_details.go @@ -61,62 +61,62 @@ type ConnectionFromOracleSiebelDetails struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromOracleSiebelDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromOracleSiebelDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromOracleSiebelDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromOracleSiebelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromOracleSiebelDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromOracleSiebelDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromOracleSiebelDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromOracleSiebelDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromOracleSiebelDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromOracleSiebelDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromOracleSiebelDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromOracleSiebelDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_basic_auth.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_basic_auth.go index 0ccdab0e185..92f5ee84fe1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_basic_auth.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_basic_auth.go @@ -64,67 +64,67 @@ type ConnectionFromRestBasicAuth struct { AuthHeader *string `mandatory:"false" json:"authHeader"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromRestBasicAuth) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromRestBasicAuth) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromRestBasicAuth) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromRestBasicAuth) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromRestBasicAuth) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromRestBasicAuth) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromRestBasicAuth) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromRestBasicAuth) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromRestBasicAuth) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromRestBasicAuth) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromRestBasicAuth) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromRestBasicAuth) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromRestBasicAuth) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_basic_auth_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_basic_auth_details.go index a6766968e0f..ef964027302 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_basic_auth_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_basic_auth_details.go @@ -61,62 +61,62 @@ type ConnectionFromRestBasicAuthDetails struct { AuthHeader *string `mandatory:"false" json:"authHeader"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromRestBasicAuthDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromRestBasicAuthDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromRestBasicAuthDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromRestBasicAuthDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromRestBasicAuthDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromRestBasicAuthDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromRestBasicAuthDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromRestBasicAuthDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromRestBasicAuthDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromRestBasicAuthDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromRestBasicAuthDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromRestBasicAuthDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_no_auth.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_no_auth.go index 49524008122..e6b15b70e59 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_no_auth.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_no_auth.go @@ -56,67 +56,67 @@ type ConnectionFromRestNoAuth struct { KeyMap map[string]string `mandatory:"false" json:"keyMap"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromRestNoAuth) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromRestNoAuth) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromRestNoAuth) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromRestNoAuth) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromRestNoAuth) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromRestNoAuth) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromRestNoAuth) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromRestNoAuth) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromRestNoAuth) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromRestNoAuth) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromRestNoAuth) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromRestNoAuth) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionFromRestNoAuth) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_no_auth_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_no_auth_details.go index ef7541d0a0a..3782ae256f5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_no_auth_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_from_rest_no_auth_details.go @@ -53,62 +53,62 @@ type ConnectionFromRestNoAuthDetails struct { Metadata *ObjectMetadata `mandatory:"false" json:"metadata"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionFromRestNoAuthDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionFromRestNoAuthDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionFromRestNoAuthDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionFromRestNoAuthDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionFromRestNoAuthDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionFromRestNoAuthDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionFromRestNoAuthDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionFromRestNoAuthDetails) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionFromRestNoAuthDetails) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionFromRestNoAuthDetails) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionFromRestNoAuthDetails) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionFromRestNoAuthDetails) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_adwc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_adwc.go index 2057614f48c..23b1b855b55 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_adwc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_adwc.go @@ -70,67 +70,67 @@ type ConnectionSummaryFromAdwc struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromAdwc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromAdwc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromAdwc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromAdwc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromAdwc) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromAdwc) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromAdwc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromAdwc) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromAdwc) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromAdwc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromAdwc) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromAdwc) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromAdwc) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_amazon_s3.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_amazon_s3.go index cb7e9010901..23ef9cdb779 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_amazon_s3.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_amazon_s3.go @@ -60,67 +60,67 @@ type ConnectionSummaryFromAmazonS3 struct { SecretKey *SensitiveAttribute `mandatory:"false" json:"secretKey"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromAmazonS3) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromAmazonS3) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromAmazonS3) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromAmazonS3) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromAmazonS3) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromAmazonS3) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromAmazonS3) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromAmazonS3) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromAmazonS3) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromAmazonS3) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromAmazonS3) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromAmazonS3) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromAmazonS3) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_atp.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_atp.go index ccaf225357f..9e7b89f6fd2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_atp.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_atp.go @@ -70,67 +70,67 @@ type ConnectionSummaryFromAtp struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromAtp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromAtp) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromAtp) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromAtp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromAtp) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromAtp) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromAtp) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromAtp) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromAtp) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromAtp) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromAtp) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromAtp) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromAtp) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_bicc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_bicc.go index 8386fcce324..6e93df2bf58 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_bicc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_bicc.go @@ -61,67 +61,67 @@ type ConnectionSummaryFromBicc struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromBicc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromBicc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromBicc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromBicc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromBicc) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromBicc) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromBicc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromBicc) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromBicc) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromBicc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromBicc) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromBicc) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromBicc) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_bip.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_bip.go index 868d305bb53..ae25b866f2b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_bip.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_bip.go @@ -61,67 +61,67 @@ type ConnectionSummaryFromBip struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromBip) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromBip) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromBip) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromBip) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromBip) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromBip) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromBip) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromBip) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromBip) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromBip) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromBip) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromBip) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromBip) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_hdfs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_hdfs.go index 98d6e14b5d8..7fe97d7a66c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_hdfs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_hdfs.go @@ -73,67 +73,67 @@ type ConnectionSummaryFromHdfs struct { KeyTabContent *SensitiveAttribute `mandatory:"false" json:"keyTabContent"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromHdfs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromHdfs) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromHdfs) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromHdfs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromHdfs) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromHdfs) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromHdfs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromHdfs) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromHdfs) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromHdfs) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromHdfs) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromHdfs) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromHdfs) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_jdbc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_jdbc.go index 64b47e40314..24b541f4688 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_jdbc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_jdbc.go @@ -59,67 +59,67 @@ type ConnectionSummaryFromJdbc struct { Username *string `mandatory:"false" json:"username"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromJdbc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromJdbc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromJdbc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromJdbc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromJdbc) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromJdbc) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromJdbc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromJdbc) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromJdbc) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromJdbc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromJdbc) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromJdbc) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromJdbc) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_lake.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_lake.go index 5663de2ba98..093bd21f5e3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_lake.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_lake.go @@ -56,67 +56,67 @@ type ConnectionSummaryFromLake struct { KeyMap map[string]string `mandatory:"false" json:"keyMap"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromLake) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromLake) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromLake) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromLake) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromLake) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromLake) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromLake) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromLake) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromLake) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromLake) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromLake) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromLake) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromLake) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_my_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_my_sql.go index de010ffd60f..7bc5eb5845f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_my_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_my_sql.go @@ -59,67 +59,67 @@ type ConnectionSummaryFromMySql struct { Username *string `mandatory:"false" json:"username"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromMySql) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromMySql) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromMySql) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromMySql) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromMySql) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromMySql) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromMySql) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromMySql) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromMySql) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromMySql) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromMySql) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromMySql) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromMySql) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_my_sql_heat_wave.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_my_sql_heat_wave.go index 90805057a3f..8d9c65be1cc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_my_sql_heat_wave.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_my_sql_heat_wave.go @@ -64,67 +64,67 @@ type ConnectionSummaryFromMySqlHeatWave struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromMySqlHeatWave) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromMySqlHeatWave) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromMySqlHeatWave) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromMySqlHeatWave) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromMySqlHeatWave) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromMySqlHeatWave) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromMySqlHeatWave) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromMySqlHeatWave) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromMySqlHeatWave) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromMySqlHeatWave) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromMySqlHeatWave) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromMySqlHeatWave) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromMySqlHeatWave) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_object_storage.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_object_storage.go index 8ec7e07742b..3e681c3dea0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_object_storage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_object_storage.go @@ -68,67 +68,67 @@ type ConnectionSummaryFromObjectStorage struct { PassPhrase *string `mandatory:"false" json:"passPhrase"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromObjectStorage) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromObjectStorage) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromObjectStorage) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromObjectStorage) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromObjectStorage) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromObjectStorage) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromObjectStorage) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromObjectStorage) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromObjectStorage) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromObjectStorage) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromObjectStorage) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromObjectStorage) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromObjectStorage) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle.go index 3f57a8bfafa..f4617cde64a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle.go @@ -64,67 +64,67 @@ type ConnectionSummaryFromOracle struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromOracle) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromOracle) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromOracle) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromOracle) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromOracle) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromOracle) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromOracle) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromOracle) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromOracle) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromOracle) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromOracle) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromOracle) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromOracle) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_ebs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_ebs.go index 028629083ef..51a96244ab5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_ebs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_ebs.go @@ -64,67 +64,67 @@ type ConnectionSummaryFromOracleEbs struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromOracleEbs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromOracleEbs) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromOracleEbs) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromOracleEbs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromOracleEbs) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromOracleEbs) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromOracleEbs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromOracleEbs) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromOracleEbs) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromOracleEbs) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromOracleEbs) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromOracleEbs) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromOracleEbs) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_people_soft.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_people_soft.go index 63307b7ff1b..9a44a929424 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_people_soft.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_people_soft.go @@ -64,67 +64,67 @@ type ConnectionSummaryFromOraclePeopleSoft struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromOraclePeopleSoft) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromOraclePeopleSoft) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromOraclePeopleSoft) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromOraclePeopleSoft) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromOraclePeopleSoft) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromOraclePeopleSoft) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromOraclePeopleSoft) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromOraclePeopleSoft) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromOraclePeopleSoft) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromOraclePeopleSoft) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromOraclePeopleSoft) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromOraclePeopleSoft) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromOraclePeopleSoft) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_siebel.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_siebel.go index 6feb6d7d8c5..81dadd3a00a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_siebel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_oracle_siebel.go @@ -64,67 +64,67 @@ type ConnectionSummaryFromOracleSiebel struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromOracleSiebel) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromOracleSiebel) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromOracleSiebel) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromOracleSiebel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromOracleSiebel) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromOracleSiebel) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromOracleSiebel) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromOracleSiebel) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromOracleSiebel) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromOracleSiebel) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromOracleSiebel) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromOracleSiebel) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromOracleSiebel) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_rest_basic_auth.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_rest_basic_auth.go index e2de36ad151..c114c619fc3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_rest_basic_auth.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_rest_basic_auth.go @@ -64,67 +64,67 @@ type ConnectionSummaryFromRestBasicAuth struct { AuthHeader *string `mandatory:"false" json:"authHeader"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromRestBasicAuth) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromRestBasicAuth) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromRestBasicAuth) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromRestBasicAuth) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromRestBasicAuth) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromRestBasicAuth) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromRestBasicAuth) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromRestBasicAuth) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromRestBasicAuth) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromRestBasicAuth) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromRestBasicAuth) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromRestBasicAuth) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromRestBasicAuth) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_rest_no_auth.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_rest_no_auth.go index 50ccb4257d9..2429d18d444 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_rest_no_auth.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/connection_summary_from_rest_no_auth.go @@ -56,67 +56,67 @@ type ConnectionSummaryFromRestNoAuth struct { KeyMap map[string]string `mandatory:"false" json:"keyMap"` } -//GetKey returns Key +// GetKey returns Key func (m ConnectionSummaryFromRestNoAuth) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ConnectionSummaryFromRestNoAuth) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ConnectionSummaryFromRestNoAuth) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ConnectionSummaryFromRestNoAuth) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ConnectionSummaryFromRestNoAuth) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ConnectionSummaryFromRestNoAuth) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ConnectionSummaryFromRestNoAuth) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ConnectionSummaryFromRestNoAuth) GetIdentifier() *string { return m.Identifier } -//GetPrimarySchema returns PrimarySchema +// GetPrimarySchema returns PrimarySchema func (m ConnectionSummaryFromRestNoAuth) GetPrimarySchema() *Schema { return m.PrimarySchema } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m ConnectionSummaryFromRestNoAuth) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetIsDefault returns IsDefault +// GetIsDefault returns IsDefault func (m ConnectionSummaryFromRestNoAuth) GetIsDefault() *bool { return m.IsDefault } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m ConnectionSummaryFromRestNoAuth) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m ConnectionSummaryFromRestNoAuth) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_adwc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_adwc.go index 3dacf8974ab..deb9401f657 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_adwc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_adwc.go @@ -59,47 +59,47 @@ type CreateConnectionFromAdwc struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromAdwc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromAdwc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromAdwc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromAdwc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromAdwc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromAdwc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromAdwc) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromAdwc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromAdwc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_amazon_s3.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_amazon_s3.go index 45cbb383e99..1094aa5e410 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_amazon_s3.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_amazon_s3.go @@ -49,47 +49,47 @@ type CreateConnectionFromAmazonS3 struct { SecretKey *SensitiveAttribute `mandatory:"false" json:"secretKey"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromAmazonS3) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromAmazonS3) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromAmazonS3) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromAmazonS3) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromAmazonS3) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromAmazonS3) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromAmazonS3) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromAmazonS3) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromAmazonS3) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_atp.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_atp.go index 9a345642aec..2c9f2df95eb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_atp.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_atp.go @@ -59,47 +59,47 @@ type CreateConnectionFromAtp struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromAtp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromAtp) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromAtp) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromAtp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromAtp) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromAtp) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromAtp) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromAtp) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromAtp) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_bicc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_bicc.go index 805232c8c72..1459c5acc8b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_bicc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_bicc.go @@ -52,47 +52,47 @@ type CreateConnectionFromBicc struct { DefaultExternalStorage *ExternalStorage `mandatory:"false" json:"defaultExternalStorage"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromBicc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromBicc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromBicc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromBicc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromBicc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromBicc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromBicc) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromBicc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromBicc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_bip.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_bip.go index b3b7956d573..02bd6349211 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_bip.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_bip.go @@ -50,47 +50,47 @@ type CreateConnectionFromBip struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromBip) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromBip) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromBip) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromBip) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromBip) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromBip) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromBip) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromBip) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromBip) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_hdfs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_hdfs.go index 26eb2c0bcff..65b1424ab6a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_hdfs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_hdfs.go @@ -62,47 +62,47 @@ type CreateConnectionFromHdfs struct { KeyTabContent *SensitiveAttribute `mandatory:"false" json:"keyTabContent"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromHdfs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromHdfs) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromHdfs) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromHdfs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromHdfs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromHdfs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromHdfs) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromHdfs) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromHdfs) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_jdbc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_jdbc.go index 84d7816b490..b76b0413a3d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_jdbc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_jdbc.go @@ -53,47 +53,47 @@ type CreateConnectionFromJdbc struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromJdbc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromJdbc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromJdbc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromJdbc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromJdbc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromJdbc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromJdbc) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromJdbc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromJdbc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_lake.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_lake.go index 6164f6cfc42..23705582eb4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_lake.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_lake.go @@ -45,47 +45,47 @@ type CreateConnectionFromLake struct { RegistryMetadata *RegistryMetadata `mandatory:"false" json:"registryMetadata"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromLake) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromLake) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromLake) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromLake) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromLake) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromLake) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromLake) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromLake) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromLake) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_my_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_my_sql.go index cf885a8973f..7afbb270f2a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_my_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_my_sql.go @@ -53,47 +53,47 @@ type CreateConnectionFromMySql struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromMySql) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromMySql) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromMySql) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromMySql) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromMySql) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromMySql) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromMySql) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromMySql) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromMySql) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_my_sql_heat_wave.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_my_sql_heat_wave.go index f5d8e795985..1d000bd151d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_my_sql_heat_wave.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_my_sql_heat_wave.go @@ -53,47 +53,47 @@ type CreateConnectionFromMySqlHeatWave struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromMySqlHeatWave) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromMySqlHeatWave) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromMySqlHeatWave) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromMySqlHeatWave) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromMySqlHeatWave) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromMySqlHeatWave) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromMySqlHeatWave) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromMySqlHeatWave) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromMySqlHeatWave) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_object_storage.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_object_storage.go index 4e3c33d46ba..a4d50b1c3d1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_object_storage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_object_storage.go @@ -57,47 +57,47 @@ type CreateConnectionFromObjectStorage struct { PassPhrase *string `mandatory:"false" json:"passPhrase"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromObjectStorage) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromObjectStorage) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromObjectStorage) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromObjectStorage) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromObjectStorage) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromObjectStorage) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromObjectStorage) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromObjectStorage) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromObjectStorage) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle.go index 5cc1deb9f8a..c4283290be4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle.go @@ -53,47 +53,47 @@ type CreateConnectionFromOracle struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromOracle) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromOracle) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromOracle) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromOracle) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromOracle) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromOracle) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromOracle) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromOracle) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromOracle) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_ebs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_ebs.go index 22143d9837e..f0274626f09 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_ebs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_ebs.go @@ -53,47 +53,47 @@ type CreateConnectionFromOracleEbs struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromOracleEbs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromOracleEbs) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromOracleEbs) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromOracleEbs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromOracleEbs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromOracleEbs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromOracleEbs) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromOracleEbs) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromOracleEbs) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_people_soft.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_people_soft.go index 2363ac90302..ba6c9dfc56f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_people_soft.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_people_soft.go @@ -53,47 +53,47 @@ type CreateConnectionFromOraclePeopleSoft struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromOraclePeopleSoft) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromOraclePeopleSoft) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromOraclePeopleSoft) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromOraclePeopleSoft) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromOraclePeopleSoft) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromOraclePeopleSoft) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromOraclePeopleSoft) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromOraclePeopleSoft) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromOraclePeopleSoft) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_siebel.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_siebel.go index d18f860db5a..5d3b2bc9213 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_siebel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_oracle_siebel.go @@ -53,47 +53,47 @@ type CreateConnectionFromOracleSiebel struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromOracleSiebel) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromOracleSiebel) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromOracleSiebel) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromOracleSiebel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromOracleSiebel) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromOracleSiebel) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromOracleSiebel) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromOracleSiebel) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromOracleSiebel) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_rest_basic_auth.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_rest_basic_auth.go index e65112cf8f4..b29f31440b2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_rest_basic_auth.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_rest_basic_auth.go @@ -53,47 +53,47 @@ type CreateConnectionFromRestBasicAuth struct { AuthHeader *string `mandatory:"false" json:"authHeader"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromRestBasicAuth) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromRestBasicAuth) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromRestBasicAuth) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromRestBasicAuth) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromRestBasicAuth) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromRestBasicAuth) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromRestBasicAuth) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromRestBasicAuth) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromRestBasicAuth) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_rest_no_auth.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_rest_no_auth.go index b9348de0e44..7061e7763e1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_rest_no_auth.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_connection_from_rest_no_auth.go @@ -45,47 +45,47 @@ type CreateConnectionFromRestNoAuth struct { RegistryMetadata *RegistryMetadata `mandatory:"false" json:"registryMetadata"` } -//GetKey returns Key +// GetKey returns Key func (m CreateConnectionFromRestNoAuth) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateConnectionFromRestNoAuth) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateConnectionFromRestNoAuth) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateConnectionFromRestNoAuth) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateConnectionFromRestNoAuth) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateConnectionFromRestNoAuth) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateConnectionFromRestNoAuth) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m CreateConnectionFromRestNoAuth) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateConnectionFromRestNoAuth) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_adwc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_adwc.go index 0d81df07402..ec064d7ceab 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_adwc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_adwc.go @@ -79,47 +79,47 @@ type CreateDataAssetFromAdwc struct { BucketSchema *Schema `mandatory:"false" json:"bucketSchema"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromAdwc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromAdwc) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromAdwc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromAdwc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromAdwc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromAdwc) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromAdwc) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromAdwc) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromAdwc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_amazon_s3.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_amazon_s3.go index 5b731700972..cac47cabfd0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_amazon_s3.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_amazon_s3.go @@ -51,47 +51,47 @@ type CreateDataAssetFromAmazonS3 struct { DefaultConnection *CreateConnectionFromAmazonS3 `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromAmazonS3) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromAmazonS3) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromAmazonS3) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromAmazonS3) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromAmazonS3) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromAmazonS3) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromAmazonS3) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromAmazonS3) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromAmazonS3) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_atp.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_atp.go index 93526811c98..0060650fc37 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_atp.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_atp.go @@ -79,47 +79,47 @@ type CreateDataAssetFromAtp struct { BucketSchema *Schema `mandatory:"false" json:"bucketSchema"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromAtp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromAtp) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromAtp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromAtp) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromAtp) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromAtp) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromAtp) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromAtp) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromAtp) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_fusion_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_fusion_app.go index 19d7a456f0b..404d22158f1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_fusion_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_fusion_app.go @@ -57,47 +57,47 @@ type CreateDataAssetFromFusionApp struct { BucketSchema *Schema `mandatory:"false" json:"bucketSchema"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromFusionApp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromFusionApp) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromFusionApp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromFusionApp) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromFusionApp) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromFusionApp) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromFusionApp) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromFusionApp) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromFusionApp) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_hdfs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_hdfs.go index 2e1be5f24c4..bfd2679da5f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_hdfs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_hdfs.go @@ -60,47 +60,47 @@ type CreateDataAssetFromHdfs struct { ValidateCertificate *bool `mandatory:"false" json:"validateCertificate"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromHdfs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromHdfs) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromHdfs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromHdfs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromHdfs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromHdfs) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromHdfs) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromHdfs) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromHdfs) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_jdbc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_jdbc.go index ebec40080a0..d57759225eb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_jdbc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_jdbc.go @@ -57,47 +57,47 @@ type CreateDataAssetFromJdbc struct { DefaultConnection *CreateConnectionFromJdbc `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromJdbc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromJdbc) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromJdbc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromJdbc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromJdbc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromJdbc) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromJdbc) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromJdbc) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromJdbc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_lake.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_lake.go index 453a223892c..63ef61e5feb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_lake.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_lake.go @@ -57,47 +57,47 @@ type CreateDataAssetFromLake struct { LakeProxyEndpoint *string `mandatory:"false" json:"lakeProxyEndpoint"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromLake) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromLake) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromLake) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromLake) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromLake) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromLake) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromLake) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromLake) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromLake) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_my_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_my_sql.go index 6963124148c..76ab633611b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_my_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_my_sql.go @@ -57,47 +57,47 @@ type CreateDataAssetFromMySql struct { DefaultConnection *CreateConnectionFromMySql `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromMySql) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromMySql) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromMySql) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromMySql) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromMySql) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromMySql) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromMySql) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromMySql) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromMySql) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_my_sql_heat_wave.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_my_sql_heat_wave.go index 4520cca1d1d..2c52fea98e6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_my_sql_heat_wave.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_my_sql_heat_wave.go @@ -57,47 +57,47 @@ type CreateDataAssetFromMySqlHeatWave struct { ServiceName *string `mandatory:"false" json:"serviceName"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromMySqlHeatWave) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromMySqlHeatWave) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromMySqlHeatWave) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromMySqlHeatWave) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromMySqlHeatWave) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromMySqlHeatWave) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromMySqlHeatWave) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromMySqlHeatWave) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromMySqlHeatWave) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_object_storage.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_object_storage.go index 33c78678253..e5e91d8d3d7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_object_storage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_object_storage.go @@ -60,47 +60,47 @@ type CreateDataAssetFromObjectStorage struct { DefaultConnection *CreateConnectionFromObjectStorage `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromObjectStorage) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromObjectStorage) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromObjectStorage) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromObjectStorage) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromObjectStorage) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromObjectStorage) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromObjectStorage) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromObjectStorage) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromObjectStorage) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle.go index 60853814254..b881b2f033c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle.go @@ -70,47 +70,47 @@ type CreateDataAssetFromOracle struct { DefaultConnection *CreateConnectionFromOracle `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromOracle) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromOracle) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromOracle) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromOracle) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromOracle) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromOracle) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromOracle) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromOracle) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromOracle) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_ebs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_ebs.go index 68e19bd774e..3f495c92491 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_ebs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_ebs.go @@ -67,47 +67,47 @@ type CreateDataAssetFromOracleEbs struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromOracleEbs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromOracleEbs) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromOracleEbs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromOracleEbs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromOracleEbs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromOracleEbs) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromOracleEbs) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromOracleEbs) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromOracleEbs) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_people_soft.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_people_soft.go index 4b70327c301..63048e922b9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_people_soft.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_people_soft.go @@ -67,47 +67,47 @@ type CreateDataAssetFromOraclePeopleSoft struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromOraclePeopleSoft) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromOraclePeopleSoft) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromOraclePeopleSoft) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromOraclePeopleSoft) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromOraclePeopleSoft) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromOraclePeopleSoft) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromOraclePeopleSoft) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromOraclePeopleSoft) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromOraclePeopleSoft) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_siebel.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_siebel.go index 940014aa851..323fdb632bc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_siebel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_oracle_siebel.go @@ -67,47 +67,47 @@ type CreateDataAssetFromOracleSiebel struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromOracleSiebel) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromOracleSiebel) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromOracleSiebel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromOracleSiebel) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromOracleSiebel) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromOracleSiebel) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromOracleSiebel) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromOracleSiebel) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromOracleSiebel) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_rest.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_rest.go index a90d3d8b547..bdb5ac86f75 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_rest.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_data_asset_from_rest.go @@ -54,47 +54,47 @@ type CreateDataAssetFromRest struct { RegistryMetadata *RegistryMetadata `mandatory:"false" json:"registryMetadata"` } -//GetKey returns Key +// GetKey returns Key func (m CreateDataAssetFromRest) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateDataAssetFromRest) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m CreateDataAssetFromRest) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDataAssetFromRest) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateDataAssetFromRest) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateDataAssetFromRest) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m CreateDataAssetFromRest) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m CreateDataAssetFromRest) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateDataAssetFromRest) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_data_loader_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_data_loader_task.go index 8ab1ce1606a..7d9bc62cf7d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_data_loader_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_data_loader_task.go @@ -65,67 +65,67 @@ type CreateTaskFromDataLoaderTask struct { ParallelLoadLimit *int `mandatory:"false" json:"parallelLoadLimit"` } -//GetKey returns Key +// GetKey returns Key func (m CreateTaskFromDataLoaderTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateTaskFromDataLoaderTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateTaskFromDataLoaderTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateTaskFromDataLoaderTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTaskFromDataLoaderTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateTaskFromDataLoaderTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateTaskFromDataLoaderTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m CreateTaskFromDataLoaderTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m CreateTaskFromDataLoaderTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateTaskFromDataLoaderTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m CreateTaskFromDataLoaderTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m CreateTaskFromDataLoaderTask) GetConfigProviderDelegate() *CreateConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateTaskFromDataLoaderTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_integration_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_integration_task.go index 95d9981da0b..ce874d8f1fd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_integration_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_integration_task.go @@ -57,67 +57,67 @@ type CreateTaskFromIntegrationTask struct { DataFlow *DataFlow `mandatory:"false" json:"dataFlow"` } -//GetKey returns Key +// GetKey returns Key func (m CreateTaskFromIntegrationTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateTaskFromIntegrationTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateTaskFromIntegrationTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateTaskFromIntegrationTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTaskFromIntegrationTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateTaskFromIntegrationTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateTaskFromIntegrationTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m CreateTaskFromIntegrationTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m CreateTaskFromIntegrationTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateTaskFromIntegrationTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m CreateTaskFromIntegrationTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m CreateTaskFromIntegrationTask) GetConfigProviderDelegate() *CreateConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateTaskFromIntegrationTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_oci_dataflow_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_oci_dataflow_task.go index d7e7202436b..5a724009655 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_oci_dataflow_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_oci_dataflow_task.go @@ -57,67 +57,67 @@ type CreateTaskFromOciDataflowTask struct { DataflowApplication *DataflowApplication `mandatory:"false" json:"dataflowApplication"` } -//GetKey returns Key +// GetKey returns Key func (m CreateTaskFromOciDataflowTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateTaskFromOciDataflowTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateTaskFromOciDataflowTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateTaskFromOciDataflowTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTaskFromOciDataflowTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateTaskFromOciDataflowTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateTaskFromOciDataflowTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m CreateTaskFromOciDataflowTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m CreateTaskFromOciDataflowTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateTaskFromOciDataflowTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m CreateTaskFromOciDataflowTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m CreateTaskFromOciDataflowTask) GetConfigProviderDelegate() *CreateConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateTaskFromOciDataflowTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_pipeline_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_pipeline_task.go index 00607827ce6..0a2ae4aec50 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_pipeline_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_pipeline_task.go @@ -57,67 +57,67 @@ type CreateTaskFromPipelineTask struct { Pipeline *Pipeline `mandatory:"false" json:"pipeline"` } -//GetKey returns Key +// GetKey returns Key func (m CreateTaskFromPipelineTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateTaskFromPipelineTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateTaskFromPipelineTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateTaskFromPipelineTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTaskFromPipelineTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateTaskFromPipelineTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateTaskFromPipelineTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m CreateTaskFromPipelineTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m CreateTaskFromPipelineTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateTaskFromPipelineTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m CreateTaskFromPipelineTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m CreateTaskFromPipelineTask) GetConfigProviderDelegate() *CreateConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateTaskFromPipelineTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_rest_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_rest_task.go index dbf2fca1826..abe1bff579b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_rest_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_rest_task.go @@ -87,67 +87,67 @@ type CreateTaskFromRestTask struct { CancelMethodType CreateTaskFromRestTaskCancelMethodTypeEnum `mandatory:"false" json:"cancelMethodType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m CreateTaskFromRestTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateTaskFromRestTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateTaskFromRestTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateTaskFromRestTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTaskFromRestTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateTaskFromRestTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateTaskFromRestTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m CreateTaskFromRestTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m CreateTaskFromRestTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateTaskFromRestTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m CreateTaskFromRestTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m CreateTaskFromRestTask) GetConfigProviderDelegate() *CreateConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateTaskFromRestTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_sql_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_sql_task.go index f5ce02d51ee..8bb9404d66a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_sql_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_from_sql_task.go @@ -63,67 +63,67 @@ type CreateTaskFromSqlTask struct { SqlScriptType CreateTaskFromSqlTaskSqlScriptTypeEnum `mandatory:"false" json:"sqlScriptType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m CreateTaskFromSqlTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateTaskFromSqlTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateTaskFromSqlTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateTaskFromSqlTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTaskFromSqlTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateTaskFromSqlTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateTaskFromSqlTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m CreateTaskFromSqlTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m CreateTaskFromSqlTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateTaskFromSqlTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m CreateTaskFromSqlTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m CreateTaskFromSqlTask) GetConfigProviderDelegate() *CreateConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m CreateTaskFromSqlTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_data_loader_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_data_loader_task.go index a162a0cbafc..a599dc03eb3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_data_loader_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_data_loader_task.go @@ -60,72 +60,72 @@ type CreateTaskValidationFromDataLoaderTask struct { DataFlow *DataFlow `mandatory:"false" json:"dataFlow"` } -//GetKey returns Key +// GetKey returns Key func (m CreateTaskValidationFromDataLoaderTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateTaskValidationFromDataLoaderTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateTaskValidationFromDataLoaderTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateTaskValidationFromDataLoaderTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTaskValidationFromDataLoaderTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m CreateTaskValidationFromDataLoaderTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateTaskValidationFromDataLoaderTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateTaskValidationFromDataLoaderTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m CreateTaskValidationFromDataLoaderTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m CreateTaskValidationFromDataLoaderTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateTaskValidationFromDataLoaderTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m CreateTaskValidationFromDataLoaderTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m CreateTaskValidationFromDataLoaderTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m CreateTaskValidationFromDataLoaderTask) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_integration_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_integration_task.go index 27c385107d6..386e63622d0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_integration_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_integration_task.go @@ -60,72 +60,72 @@ type CreateTaskValidationFromIntegrationTask struct { DataFlow *DataFlow `mandatory:"false" json:"dataFlow"` } -//GetKey returns Key +// GetKey returns Key func (m CreateTaskValidationFromIntegrationTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateTaskValidationFromIntegrationTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateTaskValidationFromIntegrationTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateTaskValidationFromIntegrationTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTaskValidationFromIntegrationTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m CreateTaskValidationFromIntegrationTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateTaskValidationFromIntegrationTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateTaskValidationFromIntegrationTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m CreateTaskValidationFromIntegrationTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m CreateTaskValidationFromIntegrationTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateTaskValidationFromIntegrationTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m CreateTaskValidationFromIntegrationTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m CreateTaskValidationFromIntegrationTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m CreateTaskValidationFromIntegrationTask) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_pipeline_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_pipeline_task.go index 5042d06ffc0..77eb71bebd6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_pipeline_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/create_task_validation_from_pipeline_task.go @@ -60,72 +60,72 @@ type CreateTaskValidationFromPipelineTask struct { Pipeline *Pipeline `mandatory:"false" json:"pipeline"` } -//GetKey returns Key +// GetKey returns Key func (m CreateTaskValidationFromPipelineTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m CreateTaskValidationFromPipelineTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m CreateTaskValidationFromPipelineTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m CreateTaskValidationFromPipelineTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTaskValidationFromPipelineTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m CreateTaskValidationFromPipelineTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m CreateTaskValidationFromPipelineTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m CreateTaskValidationFromPipelineTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m CreateTaskValidationFromPipelineTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m CreateTaskValidationFromPipelineTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateTaskValidationFromPipelineTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m CreateTaskValidationFromPipelineTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m CreateTaskValidationFromPipelineTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m CreateTaskValidationFromPipelineTask) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/csv_format_attribute.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/csv_format_attribute.go index dcc8db8a0d9..d9ecefc7ef4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/csv_format_attribute.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/csv_format_attribute.go @@ -41,7 +41,7 @@ type CsvFormatAttribute struct { TimestampFormat *string `mandatory:"false" json:"timestampFormat"` } -//GetIsFilePattern returns IsFilePattern +// GetIsFilePattern returns IsFilePattern func (m CsvFormatAttribute) GetIsFilePattern() *bool { return m.IsFilePattern } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/custom_frequency_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/custom_frequency_details.go index 43eb18d28bf..8fdb6d7a163 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/custom_frequency_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/custom_frequency_details.go @@ -26,7 +26,7 @@ type CustomFrequencyDetails struct { Frequency AbstractFrequencyDetailsFrequencyEnum `mandatory:"false" json:"frequency,omitempty"` } -//GetFrequency returns Frequency +// GetFrequency returns Frequency func (m CustomFrequencyDetails) GetFrequency() AbstractFrequencyDetailsFrequencyEnum { return m.Frequency } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/daily_frequency_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/daily_frequency_details.go index 6cec6df4227..5083f3c4e17 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/daily_frequency_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/daily_frequency_details.go @@ -28,7 +28,7 @@ type DailyFrequencyDetails struct { Frequency AbstractFrequencyDetailsFrequencyEnum `mandatory:"false" json:"frequency,omitempty"` } -//GetFrequency returns Frequency +// GetFrequency returns Frequency func (m DailyFrequencyDetails) GetFrequency() AbstractFrequencyDetailsFrequencyEnum { return m.Frequency } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_adwc_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_adwc_details.go index c567e68c166..a0c9929734a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_adwc_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_adwc_details.go @@ -73,67 +73,67 @@ type DataAssetFromAdwcDetails struct { BucketSchema *Schema `mandatory:"false" json:"bucketSchema"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromAdwcDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromAdwcDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromAdwcDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromAdwcDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromAdwcDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromAdwcDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromAdwcDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromAdwcDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromAdwcDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromAdwcDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromAdwcDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromAdwcDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromAdwcDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_amazon_s3.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_amazon_s3.go index 4e19bc57f2c..9be3e9d9b9e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_amazon_s3.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_amazon_s3.go @@ -61,67 +61,67 @@ type DataAssetFromAmazonS3 struct { DefaultConnection *ConnectionSummaryFromAmazonS3 `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromAmazonS3) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromAmazonS3) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromAmazonS3) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromAmazonS3) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromAmazonS3) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromAmazonS3) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromAmazonS3) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromAmazonS3) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromAmazonS3) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromAmazonS3) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromAmazonS3) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromAmazonS3) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromAmazonS3) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_atp_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_atp_details.go index 803a7cfd950..4c7661a4e52 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_atp_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_atp_details.go @@ -73,67 +73,67 @@ type DataAssetFromAtpDetails struct { BucketSchema *Schema `mandatory:"false" json:"bucketSchema"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromAtpDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromAtpDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromAtpDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromAtpDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromAtpDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromAtpDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromAtpDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromAtpDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromAtpDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromAtpDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromAtpDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromAtpDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromAtpDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_fusion_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_fusion_app.go index 6dd2ad489d7..183086288bd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_fusion_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_fusion_app.go @@ -61,67 +61,67 @@ type DataAssetFromFusionApp struct { DefaultConnection ConnectionDetails `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromFusionApp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromFusionApp) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromFusionApp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromFusionApp) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromFusionApp) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromFusionApp) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromFusionApp) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromFusionApp) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromFusionApp) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromFusionApp) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromFusionApp) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromFusionApp) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromFusionApp) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_hdfs_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_hdfs_details.go index b7571236d42..c3588728838 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_hdfs_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_hdfs_details.go @@ -70,67 +70,67 @@ type DataAssetFromHdfsDetails struct { ValidateCertificate *bool `mandatory:"false" json:"validateCertificate"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromHdfsDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromHdfsDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromHdfsDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromHdfsDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromHdfsDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromHdfsDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromHdfsDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromHdfsDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromHdfsDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromHdfsDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromHdfsDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromHdfsDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromHdfsDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_jdbc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_jdbc.go index 905afec7048..dac15925d70 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_jdbc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_jdbc.go @@ -67,67 +67,67 @@ type DataAssetFromJdbc struct { DefaultConnection *ConnectionFromJdbcDetails `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromJdbc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromJdbc) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromJdbc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromJdbc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromJdbc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromJdbc) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromJdbc) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromJdbc) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromJdbc) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromJdbc) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromJdbc) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromJdbc) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromJdbc) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_lake_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_lake_details.go index fff8971fb30..f7243aabc04 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_lake_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_lake_details.go @@ -67,67 +67,67 @@ type DataAssetFromLakeDetails struct { LakeProxyEndpoint *string `mandatory:"false" json:"lakeProxyEndpoint"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromLakeDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromLakeDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromLakeDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromLakeDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromLakeDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromLakeDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromLakeDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromLakeDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromLakeDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromLakeDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromLakeDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromLakeDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromLakeDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_my_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_my_sql.go index bebcc7df871..3d59dc4edc9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_my_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_my_sql.go @@ -67,67 +67,67 @@ type DataAssetFromMySql struct { DefaultConnection *ConnectionFromMySqlDetails `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromMySql) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromMySql) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromMySql) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromMySql) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromMySql) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromMySql) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromMySql) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromMySql) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromMySql) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromMySql) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromMySql) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromMySql) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromMySql) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_my_sql_heat_wave.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_my_sql_heat_wave.go index 7f6eff477f5..f8efaaac134 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_my_sql_heat_wave.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_my_sql_heat_wave.go @@ -67,67 +67,67 @@ type DataAssetFromMySqlHeatWave struct { DefaultConnection *ConnectionFromMySqlHeatWaveDetails `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromMySqlHeatWave) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromMySqlHeatWave) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromMySqlHeatWave) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromMySqlHeatWave) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromMySqlHeatWave) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromMySqlHeatWave) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromMySqlHeatWave) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromMySqlHeatWave) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromMySqlHeatWave) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromMySqlHeatWave) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromMySqlHeatWave) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromMySqlHeatWave) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromMySqlHeatWave) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_object_storage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_object_storage_details.go index a30ee2dedd6..ef2b6a0febd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_object_storage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_object_storage_details.go @@ -70,67 +70,67 @@ type DataAssetFromObjectStorageDetails struct { DefaultConnection *ConnectionFromObjectStorageDetails `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromObjectStorageDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromObjectStorageDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromObjectStorageDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromObjectStorageDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromObjectStorageDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromObjectStorageDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromObjectStorageDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromObjectStorageDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromObjectStorageDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromObjectStorageDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromObjectStorageDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromObjectStorageDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromObjectStorageDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_details.go index 6c1e31b8289..430ef343d77 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_details.go @@ -80,67 +80,67 @@ type DataAssetFromOracleDetails struct { DefaultConnection *ConnectionFromOracleDetails `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromOracleDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromOracleDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromOracleDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromOracleDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromOracleDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromOracleDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromOracleDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromOracleDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromOracleDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromOracleDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromOracleDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromOracleDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromOracleDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_ebs_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_ebs_details.go index 29da740846f..3b2a353bd88 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_ebs_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_ebs_details.go @@ -77,67 +77,67 @@ type DataAssetFromOracleEbsDetails struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromOracleEbsDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromOracleEbsDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromOracleEbsDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromOracleEbsDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromOracleEbsDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromOracleEbsDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromOracleEbsDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromOracleEbsDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromOracleEbsDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromOracleEbsDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromOracleEbsDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromOracleEbsDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromOracleEbsDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_people_soft_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_people_soft_details.go index 0ec7e3dfaa5..1c252dc7f0c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_people_soft_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_people_soft_details.go @@ -77,67 +77,67 @@ type DataAssetFromOraclePeopleSoftDetails struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromOraclePeopleSoftDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromOraclePeopleSoftDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromOraclePeopleSoftDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromOraclePeopleSoftDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromOraclePeopleSoftDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromOraclePeopleSoftDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromOraclePeopleSoftDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromOraclePeopleSoftDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromOraclePeopleSoftDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromOraclePeopleSoftDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromOraclePeopleSoftDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromOraclePeopleSoftDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromOraclePeopleSoftDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_siebel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_siebel_details.go index 8ef531d35b3..e114422a0bb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_siebel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_oracle_siebel_details.go @@ -77,67 +77,67 @@ type DataAssetFromOracleSiebelDetails struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromOracleSiebelDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromOracleSiebelDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromOracleSiebelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromOracleSiebelDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromOracleSiebelDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromOracleSiebelDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromOracleSiebelDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromOracleSiebelDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromOracleSiebelDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromOracleSiebelDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromOracleSiebelDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromOracleSiebelDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromOracleSiebelDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_rest_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_rest_details.go index ea3fe0c73dd..1d5745d9755 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_rest_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_from_rest_details.go @@ -64,67 +64,67 @@ type DataAssetFromRestDetails struct { DefaultConnection ConnectionDetails `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetFromRestDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetFromRestDetails) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetFromRestDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetFromRestDetails) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetFromRestDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetFromRestDetails) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetFromRestDetails) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetFromRestDetails) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetFromRestDetails) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetFromRestDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetFromRestDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetFromRestDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m DataAssetFromRestDetails) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_adwc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_adwc.go index 569154b532c..27eac1b62cc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_adwc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_adwc.go @@ -64,62 +64,62 @@ type DataAssetSummaryFromAdwc struct { DefaultConnection *ConnectionSummaryFromAdwc `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromAdwc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromAdwc) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromAdwc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromAdwc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromAdwc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromAdwc) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromAdwc) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromAdwc) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromAdwc) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromAdwc) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromAdwc) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromAdwc) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_amazon_s3.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_amazon_s3.go index f92cce35786..4c5d3187011 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_amazon_s3.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_amazon_s3.go @@ -58,62 +58,62 @@ type DataAssetSummaryFromAmazonS3 struct { DefaultConnection *ConnectionSummaryFromAmazonS3 `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromAmazonS3) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromAmazonS3) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromAmazonS3) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromAmazonS3) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromAmazonS3) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromAmazonS3) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromAmazonS3) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromAmazonS3) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromAmazonS3) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromAmazonS3) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromAmazonS3) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromAmazonS3) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_atp.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_atp.go index b9cae4d1249..6f7e16f464a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_atp.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_atp.go @@ -64,62 +64,62 @@ type DataAssetSummaryFromAtp struct { DefaultConnection *ConnectionSummaryFromAtp `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromAtp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromAtp) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromAtp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromAtp) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromAtp) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromAtp) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromAtp) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromAtp) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromAtp) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromAtp) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromAtp) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromAtp) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_fusion_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_fusion_app.go index 445ccfcd92b..5e96af8817c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_fusion_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_fusion_app.go @@ -64,62 +64,62 @@ type DataAssetSummaryFromFusionApp struct { BucketSchema *Schema `mandatory:"false" json:"bucketSchema"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromFusionApp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromFusionApp) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromFusionApp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromFusionApp) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromFusionApp) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromFusionApp) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromFusionApp) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromFusionApp) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromFusionApp) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromFusionApp) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromFusionApp) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromFusionApp) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_hdfs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_hdfs.go index 5a8d9ed8e61..5935ef08290 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_hdfs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_hdfs.go @@ -67,62 +67,62 @@ type DataAssetSummaryFromHdfs struct { ValidateCertificate *bool `mandatory:"false" json:"validateCertificate"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromHdfs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromHdfs) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromHdfs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromHdfs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromHdfs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromHdfs) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromHdfs) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromHdfs) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromHdfs) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromHdfs) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromHdfs) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromHdfs) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_jdbc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_jdbc.go index 5b6f65288dc..decf724c75a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_jdbc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_jdbc.go @@ -64,62 +64,62 @@ type DataAssetSummaryFromJdbc struct { DefaultConnection *ConnectionSummaryFromJdbc `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromJdbc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromJdbc) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromJdbc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromJdbc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromJdbc) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromJdbc) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromJdbc) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromJdbc) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromJdbc) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromJdbc) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromJdbc) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromJdbc) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_lake.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_lake.go index 06e42bfc66c..dc5a68dbd5a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_lake.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_lake.go @@ -64,62 +64,62 @@ type DataAssetSummaryFromLake struct { LakeProxyEndpoint *string `mandatory:"false" json:"lakeProxyEndpoint"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromLake) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromLake) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromLake) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromLake) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromLake) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromLake) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromLake) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromLake) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromLake) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromLake) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromLake) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromLake) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_my_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_my_sql.go index bf3733399e0..034e4c60d08 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_my_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_my_sql.go @@ -64,62 +64,62 @@ type DataAssetSummaryFromMySql struct { DefaultConnection *ConnectionSummaryFromMySql `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromMySql) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromMySql) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromMySql) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromMySql) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromMySql) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromMySql) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromMySql) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromMySql) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromMySql) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromMySql) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromMySql) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromMySql) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_my_sql_heat_wave.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_my_sql_heat_wave.go index a18a2b1ddf6..3e6d1ac9120 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_my_sql_heat_wave.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_my_sql_heat_wave.go @@ -64,62 +64,62 @@ type DataAssetSummaryFromMySqlHeatWave struct { DefaultConnection *ConnectionSummaryFromMySqlHeatWave `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromMySqlHeatWave) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromMySqlHeatWave) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromMySqlHeatWave) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromMySqlHeatWave) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromMySqlHeatWave) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromMySqlHeatWave) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromMySqlHeatWave) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromMySqlHeatWave) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromMySqlHeatWave) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromMySqlHeatWave) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromMySqlHeatWave) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromMySqlHeatWave) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_object_storage.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_object_storage.go index 71d439f5aba..a6972ab2d50 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_object_storage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_object_storage.go @@ -67,62 +67,62 @@ type DataAssetSummaryFromObjectStorage struct { DefaultConnection *ConnectionSummaryFromObjectStorage `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromObjectStorage) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromObjectStorage) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromObjectStorage) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromObjectStorage) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromObjectStorage) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromObjectStorage) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromObjectStorage) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromObjectStorage) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromObjectStorage) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromObjectStorage) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromObjectStorage) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromObjectStorage) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle.go index 5f15e9e4ce6..e759756b845 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle.go @@ -77,62 +77,62 @@ type DataAssetSummaryFromOracle struct { DefaultConnection *ConnectionSummaryFromOracle `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromOracle) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromOracle) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromOracle) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromOracle) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromOracle) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromOracle) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromOracle) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromOracle) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromOracle) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromOracle) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromOracle) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromOracle) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_ebs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_ebs.go index 15fba95a018..1cb9ae5cb29 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_ebs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_ebs.go @@ -74,62 +74,62 @@ type DataAssetSummaryFromOracleEbs struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromOracleEbs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromOracleEbs) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromOracleEbs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromOracleEbs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromOracleEbs) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromOracleEbs) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromOracleEbs) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromOracleEbs) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromOracleEbs) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromOracleEbs) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromOracleEbs) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromOracleEbs) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_people_soft.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_people_soft.go index 2cc59ff5d77..9f32584105a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_people_soft.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_people_soft.go @@ -74,62 +74,62 @@ type DataAssetSummaryFromOraclePeopleSoft struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromOraclePeopleSoft) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromOraclePeopleSoft) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromOraclePeopleSoft) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromOraclePeopleSoft) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromOraclePeopleSoft) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromOraclePeopleSoft) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromOraclePeopleSoft) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromOraclePeopleSoft) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromOraclePeopleSoft) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromOraclePeopleSoft) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromOraclePeopleSoft) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromOraclePeopleSoft) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_siebel.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_siebel.go index f9e307eeba5..f9235e4fdc4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_siebel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_oracle_siebel.go @@ -74,62 +74,62 @@ type DataAssetSummaryFromOracleSiebel struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromOracleSiebel) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromOracleSiebel) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromOracleSiebel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromOracleSiebel) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromOracleSiebel) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromOracleSiebel) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromOracleSiebel) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromOracleSiebel) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromOracleSiebel) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromOracleSiebel) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromOracleSiebel) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromOracleSiebel) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_rest.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_rest.go index 1dc0d6e8217..fb7a886b034 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_rest.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_asset_summary_from_rest.go @@ -61,62 +61,62 @@ type DataAssetSummaryFromRest struct { DefaultConnection ConnectionSummary `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m DataAssetSummaryFromRest) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataAssetSummaryFromRest) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m DataAssetSummaryFromRest) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DataAssetSummaryFromRest) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataAssetSummaryFromRest) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DataAssetSummaryFromRest) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m DataAssetSummaryFromRest) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m DataAssetSummaryFromRest) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetNativeTypeSystem returns NativeTypeSystem +// GetNativeTypeSystem returns NativeTypeSystem func (m DataAssetSummaryFromRest) GetNativeTypeSystem() *TypeSystem { return m.NativeTypeSystem } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DataAssetSummaryFromRest) GetObjectVersion() *int { return m.ObjectVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataAssetSummaryFromRest) GetParentRef() *ParentReference { return m.ParentRef } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataAssetSummaryFromRest) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_data_store.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_data_store.go index f4ae286cc96..bf5d1694a6a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_data_store.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_data_store.go @@ -84,7 +84,7 @@ type DataEntityFromDataStore struct { EntityType DataEntityFromDataStoreEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntityFromDataStore) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_file.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_file.go index 4449c291bb2..d8a2bc495d8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_file.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_file.go @@ -71,7 +71,7 @@ type DataEntityFromFile struct { EntityType DataEntityFromFileEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntityFromFile) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_object.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_object.go index 94e5ed7f873..3d22c1c7f91 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_object.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_object.go @@ -67,7 +67,7 @@ type DataEntityFromObject struct { EntityType DataEntityFromObjectEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntityFromObject) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_sql.go index 162f43e21c5..3db454c0f6b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_sql.go @@ -70,7 +70,7 @@ type DataEntityFromSql struct { EntityType DataEntityFromSqlEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntityFromSql) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_table.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_table.go index 66e6eaf6119..0a74cda6039 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_table.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_table.go @@ -69,7 +69,7 @@ type DataEntityFromTable struct { EntityType DataEntityFromTableEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntityFromTable) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_view.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_view.go index 621433ea762..82002356967 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_view.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_from_view.go @@ -69,7 +69,7 @@ type DataEntityFromView struct { EntityType DataEntityFromViewEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntityFromView) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_data_store.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_data_store.go index ee1354e7511..e82492814b9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_data_store.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_data_store.go @@ -84,7 +84,7 @@ type DataEntitySummaryFromDataStore struct { EntityType DataEntitySummaryFromDataStoreEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntitySummaryFromDataStore) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_file.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_file.go index f125d8c011a..fc0b852b87f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_file.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_file.go @@ -71,7 +71,7 @@ type DataEntitySummaryFromFile struct { EntityType DataEntitySummaryFromFileEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntitySummaryFromFile) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_object.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_object.go index 0030a4fd2b3..0492d2985af 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_object.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_object.go @@ -67,7 +67,7 @@ type DataEntitySummaryFromObject struct { EntityType DataEntitySummaryFromObjectEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntitySummaryFromObject) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_sql.go index cca4a7fdb74..e8857ef0394 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_sql.go @@ -70,7 +70,7 @@ type DataEntitySummaryFromSql struct { EntityType DataEntitySummaryFromSqlEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntitySummaryFromSql) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_table.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_table.go index 8e08460db51..12541ad039c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_table.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_table.go @@ -69,7 +69,7 @@ type DataEntitySummaryFromTable struct { EntityType DataEntitySummaryFromTableEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntitySummaryFromTable) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_view.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_view.go index 70edf0e9544..56275687625 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_view.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_entity_summary_from_view.go @@ -69,7 +69,7 @@ type DataEntitySummaryFromView struct { EntityType DataEntitySummaryFromViewEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DataEntitySummaryFromView) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_type.go index c4e73048b4d..c541df8960f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/data_type.go @@ -45,32 +45,32 @@ type DataType struct { DtType DataTypeDtTypeEnum `mandatory:"false" json:"dtType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m DataType) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DataType) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DataType) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m DataType) GetName() *string { return m.Name } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DataType) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m DataType) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dataintegration_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dataintegration_client.go index ad9dbd94939..e0333a415d6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dataintegration_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dataintegration_client.go @@ -93,7 +93,7 @@ func (client *DataIntegrationClient) ConfigurationProvider() *common.Configurati // ChangeCompartment Moves a workspace to a specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ChangeCompartment.go.html to see an example of how to use ChangeCompartment API. func (client DataIntegrationClient) ChangeCompartment(ctx context.Context, request ChangeCompartmentRequest) (response ChangeCompartmentResponse, err error) { @@ -155,7 +155,7 @@ func (client DataIntegrationClient) changeCompartment(ctx context.Context, reque // ChangeDisApplicationCompartment Moves a DIS Application to a specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ChangeDisApplicationCompartment.go.html to see an example of how to use ChangeDisApplicationCompartment API. func (client DataIntegrationClient) ChangeDisApplicationCompartment(ctx context.Context, request ChangeDisApplicationCompartmentRequest) (response ChangeDisApplicationCompartmentResponse, err error) { @@ -217,7 +217,7 @@ func (client DataIntegrationClient) changeDisApplicationCompartment(ctx context. // CreateApplication Creates an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateApplication.go.html to see an example of how to use CreateApplication API. func (client DataIntegrationClient) CreateApplication(ctx context.Context, request CreateApplicationRequest) (response CreateApplicationResponse, err error) { @@ -279,7 +279,7 @@ func (client DataIntegrationClient) createApplication(ctx context.Context, reque // CreateApplicationDetailedDescription Creates detailed description for an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateApplicationDetailedDescription.go.html to see an example of how to use CreateApplicationDetailedDescription API. func (client DataIntegrationClient) CreateApplicationDetailedDescription(ctx context.Context, request CreateApplicationDetailedDescriptionRequest) (response CreateApplicationDetailedDescriptionResponse, err error) { @@ -341,7 +341,7 @@ func (client DataIntegrationClient) createApplicationDetailedDescription(ctx con // CreateConnection Creates a connection under an existing data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateConnection.go.html to see an example of how to use CreateConnection API. func (client DataIntegrationClient) CreateConnection(ctx context.Context, request CreateConnectionRequest) (response CreateConnectionResponse, err error) { @@ -403,7 +403,7 @@ func (client DataIntegrationClient) createConnection(ctx context.Context, reques // CreateConnectionValidation Creates a connection validation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateConnectionValidation.go.html to see an example of how to use CreateConnectionValidation API. func (client DataIntegrationClient) CreateConnectionValidation(ctx context.Context, request CreateConnectionValidationRequest) (response CreateConnectionValidationResponse, err error) { @@ -465,7 +465,7 @@ func (client DataIntegrationClient) createConnectionValidation(ctx context.Conte // CreateCopyObjectRequest Copy Metadata Object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateCopyObjectRequest.go.html to see an example of how to use CreateCopyObjectRequest API. func (client DataIntegrationClient) CreateCopyObjectRequest(ctx context.Context, request CreateCopyObjectRequestRequest) (response CreateCopyObjectRequestResponse, err error) { @@ -527,7 +527,7 @@ func (client DataIntegrationClient) createCopyObjectRequest(ctx context.Context, // CreateDataAsset Creates a data asset with default connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateDataAsset.go.html to see an example of how to use CreateDataAsset API. func (client DataIntegrationClient) CreateDataAsset(ctx context.Context, request CreateDataAssetRequest) (response CreateDataAssetResponse, err error) { @@ -589,7 +589,7 @@ func (client DataIntegrationClient) createDataAsset(ctx context.Context, request // CreateDataFlow Creates a new data flow in a project or folder ready for performing data integrations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateDataFlow.go.html to see an example of how to use CreateDataFlow API. func (client DataIntegrationClient) CreateDataFlow(ctx context.Context, request CreateDataFlowRequest) (response CreateDataFlowResponse, err error) { @@ -651,7 +651,7 @@ func (client DataIntegrationClient) createDataFlow(ctx context.Context, request // CreateDataFlowValidation Accepts the data flow definition in the request payload and creates a data flow validation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateDataFlowValidation.go.html to see an example of how to use CreateDataFlowValidation API. func (client DataIntegrationClient) CreateDataFlowValidation(ctx context.Context, request CreateDataFlowValidationRequest) (response CreateDataFlowValidationResponse, err error) { @@ -713,7 +713,7 @@ func (client DataIntegrationClient) createDataFlowValidation(ctx context.Context // CreateDisApplication Creates a DIS Application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateDisApplication.go.html to see an example of how to use CreateDisApplication API. func (client DataIntegrationClient) CreateDisApplication(ctx context.Context, request CreateDisApplicationRequest) (response CreateDisApplicationResponse, err error) { @@ -775,7 +775,7 @@ func (client DataIntegrationClient) createDisApplication(ctx context.Context, re // CreateDisApplicationDetailedDescription Creates detailed description for an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateDisApplicationDetailedDescription.go.html to see an example of how to use CreateDisApplicationDetailedDescription API. func (client DataIntegrationClient) CreateDisApplicationDetailedDescription(ctx context.Context, request CreateDisApplicationDetailedDescriptionRequest) (response CreateDisApplicationDetailedDescriptionResponse, err error) { @@ -837,7 +837,7 @@ func (client DataIntegrationClient) createDisApplicationDetailedDescription(ctx // CreateEntityShape Creates the data entity shape using the shape from the data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateEntityShape.go.html to see an example of how to use CreateEntityShape API. func (client DataIntegrationClient) CreateEntityShape(ctx context.Context, request CreateEntityShapeRequest) (response CreateEntityShapeResponse, err error) { @@ -899,7 +899,7 @@ func (client DataIntegrationClient) createEntityShape(ctx context.Context, reque // CreateExportRequest Export Metadata Object // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateExportRequest.go.html to see an example of how to use CreateExportRequest API. func (client DataIntegrationClient) CreateExportRequest(ctx context.Context, request CreateExportRequestRequest) (response CreateExportRequestResponse, err error) { @@ -961,7 +961,7 @@ func (client DataIntegrationClient) createExportRequest(ctx context.Context, req // CreateExternalPublication Publish a DataFlow in a OCI DataFlow application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateExternalPublication.go.html to see an example of how to use CreateExternalPublication API. func (client DataIntegrationClient) CreateExternalPublication(ctx context.Context, request CreateExternalPublicationRequest) (response CreateExternalPublicationResponse, err error) { @@ -1023,7 +1023,7 @@ func (client DataIntegrationClient) createExternalPublication(ctx context.Contex // CreateExternalPublicationValidation Validates a specific task. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateExternalPublicationValidation.go.html to see an example of how to use CreateExternalPublicationValidation API. func (client DataIntegrationClient) CreateExternalPublicationValidation(ctx context.Context, request CreateExternalPublicationValidationRequest) (response CreateExternalPublicationValidationResponse, err error) { @@ -1086,7 +1086,7 @@ func (client DataIntegrationClient) createExternalPublicationValidation(ctx cont // CreateFolder Creates a folder in a project or in another folder, limited to two levels of folders. | // Folders are used to organize your design-time resources, such as tasks or data flows. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateFolder.go.html to see an example of how to use CreateFolder API. func (client DataIntegrationClient) CreateFolder(ctx context.Context, request CreateFolderRequest) (response CreateFolderResponse, err error) { @@ -1149,7 +1149,7 @@ func (client DataIntegrationClient) createFolder(ctx context.Context, request co // CreateFunctionLibrary Creates a function library in a project or in another function library, limited to two levels of function libraries. | // FunctionLibraries are used to organize your design-time resources, such as tasks or data flows. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateFunctionLibrary.go.html to see an example of how to use CreateFunctionLibrary API. func (client DataIntegrationClient) CreateFunctionLibrary(ctx context.Context, request CreateFunctionLibraryRequest) (response CreateFunctionLibraryResponse, err error) { @@ -1211,7 +1211,7 @@ func (client DataIntegrationClient) createFunctionLibrary(ctx context.Context, r // CreateImportRequest Import Metadata Object // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateImportRequest.go.html to see an example of how to use CreateImportRequest API. func (client DataIntegrationClient) CreateImportRequest(ctx context.Context, request CreateImportRequestRequest) (response CreateImportRequestResponse, err error) { @@ -1273,7 +1273,7 @@ func (client DataIntegrationClient) createImportRequest(ctx context.Context, req // CreatePatch Creates a patch in an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreatePatch.go.html to see an example of how to use CreatePatch API. func (client DataIntegrationClient) CreatePatch(ctx context.Context, request CreatePatchRequest) (response CreatePatchResponse, err error) { @@ -1335,7 +1335,7 @@ func (client DataIntegrationClient) createPatch(ctx context.Context, request com // CreatePipeline Creates a new pipeline in a project or folder ready for performing task orchestration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreatePipeline.go.html to see an example of how to use CreatePipeline API. func (client DataIntegrationClient) CreatePipeline(ctx context.Context, request CreatePipelineRequest) (response CreatePipelineResponse, err error) { @@ -1397,7 +1397,7 @@ func (client DataIntegrationClient) createPipeline(ctx context.Context, request // CreatePipelineValidation Accepts the data flow definition in the request payload and creates a pipeline validation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreatePipelineValidation.go.html to see an example of how to use CreatePipelineValidation API. func (client DataIntegrationClient) CreatePipelineValidation(ctx context.Context, request CreatePipelineValidationRequest) (response CreatePipelineValidationResponse, err error) { @@ -1459,7 +1459,7 @@ func (client DataIntegrationClient) createPipelineValidation(ctx context.Context // CreateProject Creates a project. Projects are organizational constructs within a workspace that you use to organize your design-time resources, such as tasks or data flows. Projects can be organized into folders. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateProject.go.html to see an example of how to use CreateProject API. func (client DataIntegrationClient) CreateProject(ctx context.Context, request CreateProjectRequest) (response CreateProjectResponse, err error) { @@ -1521,7 +1521,7 @@ func (client DataIntegrationClient) createProject(ctx context.Context, request c // CreateSchedule Endpoint to create a new schedule // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateSchedule.go.html to see an example of how to use CreateSchedule API. func (client DataIntegrationClient) CreateSchedule(ctx context.Context, request CreateScheduleRequest) (response CreateScheduleResponse, err error) { @@ -1583,7 +1583,7 @@ func (client DataIntegrationClient) createSchedule(ctx context.Context, request // CreateTask Creates a new task ready for performing data integrations. There are specialized types of tasks that include data loader and integration tasks. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateTask.go.html to see an example of how to use CreateTask API. func (client DataIntegrationClient) CreateTask(ctx context.Context, request CreateTaskRequest) (response CreateTaskResponse, err error) { @@ -1645,7 +1645,7 @@ func (client DataIntegrationClient) createTask(ctx context.Context, request comm // CreateTaskRun Creates a data integration task run for the specified task. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateTaskRun.go.html to see an example of how to use CreateTaskRun API. func (client DataIntegrationClient) CreateTaskRun(ctx context.Context, request CreateTaskRunRequest) (response CreateTaskRunResponse, err error) { @@ -1707,7 +1707,7 @@ func (client DataIntegrationClient) createTaskRun(ctx context.Context, request c // CreateTaskSchedule Endpoint to be used create TaskSchedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateTaskSchedule.go.html to see an example of how to use CreateTaskSchedule API. func (client DataIntegrationClient) CreateTaskSchedule(ctx context.Context, request CreateTaskScheduleRequest) (response CreateTaskScheduleResponse, err error) { @@ -1769,7 +1769,7 @@ func (client DataIntegrationClient) createTaskSchedule(ctx context.Context, requ // CreateTaskValidation Validates a specific task. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateTaskValidation.go.html to see an example of how to use CreateTaskValidation API. func (client DataIntegrationClient) CreateTaskValidation(ctx context.Context, request CreateTaskValidationRequest) (response CreateTaskValidationResponse, err error) { @@ -1831,7 +1831,7 @@ func (client DataIntegrationClient) createTaskValidation(ctx context.Context, re // CreateUserDefinedFunction Creates a new UserDefinedFunction in a function library ready for performing data integrations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateUserDefinedFunction.go.html to see an example of how to use CreateUserDefinedFunction API. func (client DataIntegrationClient) CreateUserDefinedFunction(ctx context.Context, request CreateUserDefinedFunctionRequest) (response CreateUserDefinedFunctionResponse, err error) { @@ -1893,7 +1893,7 @@ func (client DataIntegrationClient) createUserDefinedFunction(ctx context.Contex // CreateUserDefinedFunctionValidation Accepts the UserDefinedFunction definition in the request payload and creates a UserDefinedFunction validation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateUserDefinedFunctionValidation.go.html to see an example of how to use CreateUserDefinedFunctionValidation API. func (client DataIntegrationClient) CreateUserDefinedFunctionValidation(ctx context.Context, request CreateUserDefinedFunctionValidationRequest) (response CreateUserDefinedFunctionValidationResponse, err error) { @@ -1955,7 +1955,7 @@ func (client DataIntegrationClient) createUserDefinedFunctionValidation(ctx cont // CreateWorkspace Creates a new Data Integration workspace ready for performing data integration tasks. To retrieve the OCID for the new workspace, use the opc-work-request-id returned by this API and call the GetWorkRequest API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/CreateWorkspace.go.html to see an example of how to use CreateWorkspace API. func (client DataIntegrationClient) CreateWorkspace(ctx context.Context, request CreateWorkspaceRequest) (response CreateWorkspaceResponse, err error) { @@ -2017,7 +2017,7 @@ func (client DataIntegrationClient) createWorkspace(ctx context.Context, request // DeleteApplication Removes an application using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteApplication.go.html to see an example of how to use DeleteApplication API. func (client DataIntegrationClient) DeleteApplication(ctx context.Context, request DeleteApplicationRequest) (response DeleteApplicationResponse, err error) { @@ -2074,7 +2074,7 @@ func (client DataIntegrationClient) deleteApplication(ctx context.Context, reque // DeleteApplicationDetailedDescription Deletes detailed description of an Application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteApplicationDetailedDescription.go.html to see an example of how to use DeleteApplicationDetailedDescription API. func (client DataIntegrationClient) DeleteApplicationDetailedDescription(ctx context.Context, request DeleteApplicationDetailedDescriptionRequest) (response DeleteApplicationDetailedDescriptionResponse, err error) { @@ -2131,7 +2131,7 @@ func (client DataIntegrationClient) deleteApplicationDetailedDescription(ctx con // DeleteConnection Removes a connection using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteConnection.go.html to see an example of how to use DeleteConnection API. func (client DataIntegrationClient) DeleteConnection(ctx context.Context, request DeleteConnectionRequest) (response DeleteConnectionResponse, err error) { @@ -2188,7 +2188,7 @@ func (client DataIntegrationClient) deleteConnection(ctx context.Context, reques // DeleteConnectionValidation Deletes a connection validation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteConnectionValidation.go.html to see an example of how to use DeleteConnectionValidation API. func (client DataIntegrationClient) DeleteConnectionValidation(ctx context.Context, request DeleteConnectionValidationRequest) (response DeleteConnectionValidationResponse, err error) { @@ -2245,7 +2245,7 @@ func (client DataIntegrationClient) deleteConnectionValidation(ctx context.Conte // DeleteCopyObjectRequest Delete copy object request using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteCopyObjectRequest.go.html to see an example of how to use DeleteCopyObjectRequest API. func (client DataIntegrationClient) DeleteCopyObjectRequest(ctx context.Context, request DeleteCopyObjectRequestRequest) (response DeleteCopyObjectRequestResponse, err error) { @@ -2302,7 +2302,7 @@ func (client DataIntegrationClient) deleteCopyObjectRequest(ctx context.Context, // DeleteDataAsset Removes a data asset using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteDataAsset.go.html to see an example of how to use DeleteDataAsset API. func (client DataIntegrationClient) DeleteDataAsset(ctx context.Context, request DeleteDataAssetRequest) (response DeleteDataAssetResponse, err error) { @@ -2359,7 +2359,7 @@ func (client DataIntegrationClient) deleteDataAsset(ctx context.Context, request // DeleteDataFlow Removes a data flow from a project or folder using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteDataFlow.go.html to see an example of how to use DeleteDataFlow API. func (client DataIntegrationClient) DeleteDataFlow(ctx context.Context, request DeleteDataFlowRequest) (response DeleteDataFlowResponse, err error) { @@ -2416,7 +2416,7 @@ func (client DataIntegrationClient) deleteDataFlow(ctx context.Context, request // DeleteDataFlowValidation Removes a data flow validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteDataFlowValidation.go.html to see an example of how to use DeleteDataFlowValidation API. func (client DataIntegrationClient) DeleteDataFlowValidation(ctx context.Context, request DeleteDataFlowValidationRequest) (response DeleteDataFlowValidationResponse, err error) { @@ -2473,7 +2473,7 @@ func (client DataIntegrationClient) deleteDataFlowValidation(ctx context.Context // DeleteDisApplication Removes a DIS application using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteDisApplication.go.html to see an example of how to use DeleteDisApplication API. func (client DataIntegrationClient) DeleteDisApplication(ctx context.Context, request DeleteDisApplicationRequest) (response DeleteDisApplicationResponse, err error) { @@ -2530,7 +2530,7 @@ func (client DataIntegrationClient) deleteDisApplication(ctx context.Context, re // DeleteDisApplicationDetailedDescription Deletes detailed description of an Application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteDisApplicationDetailedDescription.go.html to see an example of how to use DeleteDisApplicationDetailedDescription API. func (client DataIntegrationClient) DeleteDisApplicationDetailedDescription(ctx context.Context, request DeleteDisApplicationDetailedDescriptionRequest) (response DeleteDisApplicationDetailedDescriptionResponse, err error) { @@ -2587,7 +2587,7 @@ func (client DataIntegrationClient) deleteDisApplicationDetailedDescription(ctx // DeleteExportRequest Delete export object request using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteExportRequest.go.html to see an example of how to use DeleteExportRequest API. func (client DataIntegrationClient) DeleteExportRequest(ctx context.Context, request DeleteExportRequestRequest) (response DeleteExportRequestResponse, err error) { @@ -2644,7 +2644,7 @@ func (client DataIntegrationClient) deleteExportRequest(ctx context.Context, req // DeleteExternalPublication Removes a published object using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteExternalPublication.go.html to see an example of how to use DeleteExternalPublication API. func (client DataIntegrationClient) DeleteExternalPublication(ctx context.Context, request DeleteExternalPublicationRequest) (response DeleteExternalPublicationResponse, err error) { @@ -2701,7 +2701,7 @@ func (client DataIntegrationClient) deleteExternalPublication(ctx context.Contex // DeleteExternalPublicationValidation Removes a task validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteExternalPublicationValidation.go.html to see an example of how to use DeleteExternalPublicationValidation API. func (client DataIntegrationClient) DeleteExternalPublicationValidation(ctx context.Context, request DeleteExternalPublicationValidationRequest) (response DeleteExternalPublicationValidationResponse, err error) { @@ -2758,7 +2758,7 @@ func (client DataIntegrationClient) deleteExternalPublicationValidation(ctx cont // DeleteFolder Removes a folder from a project using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteFolder.go.html to see an example of how to use DeleteFolder API. func (client DataIntegrationClient) DeleteFolder(ctx context.Context, request DeleteFolderRequest) (response DeleteFolderResponse, err error) { @@ -2815,7 +2815,7 @@ func (client DataIntegrationClient) deleteFolder(ctx context.Context, request co // DeleteFunctionLibrary Removes a Function Library from a project using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteFunctionLibrary.go.html to see an example of how to use DeleteFunctionLibrary API. func (client DataIntegrationClient) DeleteFunctionLibrary(ctx context.Context, request DeleteFunctionLibraryRequest) (response DeleteFunctionLibraryResponse, err error) { @@ -2872,7 +2872,7 @@ func (client DataIntegrationClient) deleteFunctionLibrary(ctx context.Context, r // DeleteImportRequest Delete import object request using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteImportRequest.go.html to see an example of how to use DeleteImportRequest API. func (client DataIntegrationClient) DeleteImportRequest(ctx context.Context, request DeleteImportRequestRequest) (response DeleteImportRequestResponse, err error) { @@ -2929,7 +2929,7 @@ func (client DataIntegrationClient) deleteImportRequest(ctx context.Context, req // DeletePatch Removes a patch using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeletePatch.go.html to see an example of how to use DeletePatch API. func (client DataIntegrationClient) DeletePatch(ctx context.Context, request DeletePatchRequest) (response DeletePatchResponse, err error) { @@ -2986,7 +2986,7 @@ func (client DataIntegrationClient) deletePatch(ctx context.Context, request com // DeletePipeline Removes a pipeline from a project or folder using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeletePipeline.go.html to see an example of how to use DeletePipeline API. func (client DataIntegrationClient) DeletePipeline(ctx context.Context, request DeletePipelineRequest) (response DeletePipelineResponse, err error) { @@ -3043,7 +3043,7 @@ func (client DataIntegrationClient) deletePipeline(ctx context.Context, request // DeletePipelineValidation Removes a pipeline validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeletePipelineValidation.go.html to see an example of how to use DeletePipelineValidation API. func (client DataIntegrationClient) DeletePipelineValidation(ctx context.Context, request DeletePipelineValidationRequest) (response DeletePipelineValidationResponse, err error) { @@ -3100,7 +3100,7 @@ func (client DataIntegrationClient) deletePipelineValidation(ctx context.Context // DeleteProject Removes a project from the workspace using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteProject.go.html to see an example of how to use DeleteProject API. func (client DataIntegrationClient) DeleteProject(ctx context.Context, request DeleteProjectRequest) (response DeleteProjectResponse, err error) { @@ -3157,7 +3157,7 @@ func (client DataIntegrationClient) deleteProject(ctx context.Context, request c // DeleteSchedule Endpoint to delete schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteSchedule.go.html to see an example of how to use DeleteSchedule API. func (client DataIntegrationClient) DeleteSchedule(ctx context.Context, request DeleteScheduleRequest) (response DeleteScheduleResponse, err error) { @@ -3214,7 +3214,7 @@ func (client DataIntegrationClient) deleteSchedule(ctx context.Context, request // DeleteTask Removes a task using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteTask.go.html to see an example of how to use DeleteTask API. func (client DataIntegrationClient) DeleteTask(ctx context.Context, request DeleteTaskRequest) (response DeleteTaskResponse, err error) { @@ -3271,7 +3271,7 @@ func (client DataIntegrationClient) deleteTask(ctx context.Context, request comm // DeleteTaskRun Deletes a task run using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteTaskRun.go.html to see an example of how to use DeleteTaskRun API. func (client DataIntegrationClient) DeleteTaskRun(ctx context.Context, request DeleteTaskRunRequest) (response DeleteTaskRunResponse, err error) { @@ -3328,7 +3328,7 @@ func (client DataIntegrationClient) deleteTaskRun(ctx context.Context, request c // DeleteTaskSchedule Endpoint to delete TaskSchedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteTaskSchedule.go.html to see an example of how to use DeleteTaskSchedule API. func (client DataIntegrationClient) DeleteTaskSchedule(ctx context.Context, request DeleteTaskScheduleRequest) (response DeleteTaskScheduleResponse, err error) { @@ -3385,7 +3385,7 @@ func (client DataIntegrationClient) deleteTaskSchedule(ctx context.Context, requ // DeleteTaskValidation Removes a task validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteTaskValidation.go.html to see an example of how to use DeleteTaskValidation API. func (client DataIntegrationClient) DeleteTaskValidation(ctx context.Context, request DeleteTaskValidationRequest) (response DeleteTaskValidationResponse, err error) { @@ -3442,7 +3442,7 @@ func (client DataIntegrationClient) deleteTaskValidation(ctx context.Context, re // DeleteUserDefinedFunction Removes a UserDefinedFunction from a function library using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteUserDefinedFunction.go.html to see an example of how to use DeleteUserDefinedFunction API. func (client DataIntegrationClient) DeleteUserDefinedFunction(ctx context.Context, request DeleteUserDefinedFunctionRequest) (response DeleteUserDefinedFunctionResponse, err error) { @@ -3499,7 +3499,7 @@ func (client DataIntegrationClient) deleteUserDefinedFunction(ctx context.Contex // DeleteUserDefinedFunctionValidation Removes a UserDefinedFunction validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteUserDefinedFunctionValidation.go.html to see an example of how to use DeleteUserDefinedFunctionValidation API. func (client DataIntegrationClient) DeleteUserDefinedFunctionValidation(ctx context.Context, request DeleteUserDefinedFunctionValidationRequest) (response DeleteUserDefinedFunctionValidationResponse, err error) { @@ -3556,7 +3556,7 @@ func (client DataIntegrationClient) deleteUserDefinedFunctionValidation(ctx cont // DeleteWorkspace Deletes a Data Integration workspace resource using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/DeleteWorkspace.go.html to see an example of how to use DeleteWorkspace API. func (client DataIntegrationClient) DeleteWorkspace(ctx context.Context, request DeleteWorkspaceRequest) (response DeleteWorkspaceResponse, err error) { @@ -3613,7 +3613,7 @@ func (client DataIntegrationClient) deleteWorkspace(ctx context.Context, request // GetApplication Retrieves an application using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetApplication.go.html to see an example of how to use GetApplication API. func (client DataIntegrationClient) GetApplication(ctx context.Context, request GetApplicationRequest) (response GetApplicationResponse, err error) { @@ -3670,7 +3670,7 @@ func (client DataIntegrationClient) getApplication(ctx context.Context, request // GetApplicationDetailedDescription Retrieves detailed description of an Application // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetApplicationDetailedDescription.go.html to see an example of how to use GetApplicationDetailedDescription API. func (client DataIntegrationClient) GetApplicationDetailedDescription(ctx context.Context, request GetApplicationDetailedDescriptionRequest) (response GetApplicationDetailedDescriptionResponse, err error) { @@ -3727,7 +3727,7 @@ func (client DataIntegrationClient) getApplicationDetailedDescription(ctx contex // GetCompositeState This endpoint can be used to get composite state for a given aggregator // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetCompositeState.go.html to see an example of how to use GetCompositeState API. func (client DataIntegrationClient) GetCompositeState(ctx context.Context, request GetCompositeStateRequest) (response GetCompositeStateResponse, err error) { @@ -3784,7 +3784,7 @@ func (client DataIntegrationClient) getCompositeState(ctx context.Context, reque // GetConnection Retrieves the connection details using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetConnection.go.html to see an example of how to use GetConnection API. func (client DataIntegrationClient) GetConnection(ctx context.Context, request GetConnectionRequest) (response GetConnectionResponse, err error) { @@ -3841,7 +3841,7 @@ func (client DataIntegrationClient) getConnection(ctx context.Context, request c // GetConnectionValidation Retrieves a connection validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetConnectionValidation.go.html to see an example of how to use GetConnectionValidation API. func (client DataIntegrationClient) GetConnectionValidation(ctx context.Context, request GetConnectionValidationRequest) (response GetConnectionValidationResponse, err error) { @@ -3898,7 +3898,7 @@ func (client DataIntegrationClient) getConnectionValidation(ctx context.Context, // GetCopyObjectRequest This endpoint can be used to get the summary/details of object being copied. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetCopyObjectRequest.go.html to see an example of how to use GetCopyObjectRequest API. func (client DataIntegrationClient) GetCopyObjectRequest(ctx context.Context, request GetCopyObjectRequestRequest) (response GetCopyObjectRequestResponse, err error) { @@ -3954,9 +3954,10 @@ func (client DataIntegrationClient) getCopyObjectRequest(ctx context.Context, re } // GetCountStatistic Retrieves statistics on a workspace. It returns an object with an array of property values, such as the number of projects, | -// applications, data assets, and so on. // -// See also +// applications, data assets, and so on. +// +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetCountStatistic.go.html to see an example of how to use GetCountStatistic API. func (client DataIntegrationClient) GetCountStatistic(ctx context.Context, request GetCountStatisticRequest) (response GetCountStatisticResponse, err error) { @@ -4013,7 +4014,7 @@ func (client DataIntegrationClient) getCountStatistic(ctx context.Context, reque // GetDataAsset Retrieves details of a data asset using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetDataAsset.go.html to see an example of how to use GetDataAsset API. func (client DataIntegrationClient) GetDataAsset(ctx context.Context, request GetDataAssetRequest) (response GetDataAssetResponse, err error) { @@ -4070,7 +4071,7 @@ func (client DataIntegrationClient) getDataAsset(ctx context.Context, request co // GetDataEntity Retrieves the data entity details with the given name from live schema. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetDataEntity.go.html to see an example of how to use GetDataEntity API. func (client DataIntegrationClient) GetDataEntity(ctx context.Context, request GetDataEntityRequest) (response GetDataEntityResponse, err error) { @@ -4127,7 +4128,7 @@ func (client DataIntegrationClient) getDataEntity(ctx context.Context, request c // GetDataFlow Retrieves a data flow using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetDataFlow.go.html to see an example of how to use GetDataFlow API. func (client DataIntegrationClient) GetDataFlow(ctx context.Context, request GetDataFlowRequest) (response GetDataFlowResponse, err error) { @@ -4184,7 +4185,7 @@ func (client DataIntegrationClient) getDataFlow(ctx context.Context, request com // GetDataFlowValidation Retrieves a data flow validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetDataFlowValidation.go.html to see an example of how to use GetDataFlowValidation API. func (client DataIntegrationClient) GetDataFlowValidation(ctx context.Context, request GetDataFlowValidationRequest) (response GetDataFlowValidationResponse, err error) { @@ -4241,7 +4242,7 @@ func (client DataIntegrationClient) getDataFlowValidation(ctx context.Context, r // GetDependentObject Retrieves the details of a dependent object from an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetDependentObject.go.html to see an example of how to use GetDependentObject API. func (client DataIntegrationClient) GetDependentObject(ctx context.Context, request GetDependentObjectRequest) (response GetDependentObjectResponse, err error) { @@ -4298,7 +4299,7 @@ func (client DataIntegrationClient) getDependentObject(ctx context.Context, requ // GetDisApplication Retrieves an application using the specified OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetDisApplication.go.html to see an example of how to use GetDisApplication API. func (client DataIntegrationClient) GetDisApplication(ctx context.Context, request GetDisApplicationRequest) (response GetDisApplicationResponse, err error) { @@ -4355,7 +4356,7 @@ func (client DataIntegrationClient) getDisApplication(ctx context.Context, reque // GetDisApplicationDetailedDescription Retrieves detailed description of an Application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetDisApplicationDetailedDescription.go.html to see an example of how to use GetDisApplicationDetailedDescription API. func (client DataIntegrationClient) GetDisApplicationDetailedDescription(ctx context.Context, request GetDisApplicationDetailedDescriptionRequest) (response GetDisApplicationDetailedDescriptionResponse, err error) { @@ -4412,7 +4413,7 @@ func (client DataIntegrationClient) getDisApplicationDetailedDescription(ctx con // GetExportRequest This endpoint can be used to get the summary/details of object being exported. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetExportRequest.go.html to see an example of how to use GetExportRequest API. func (client DataIntegrationClient) GetExportRequest(ctx context.Context, request GetExportRequestRequest) (response GetExportRequestResponse, err error) { @@ -4469,7 +4470,7 @@ func (client DataIntegrationClient) getExportRequest(ctx context.Context, reques // GetExternalPublication Retrieves a publshed object in an task using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetExternalPublication.go.html to see an example of how to use GetExternalPublication API. func (client DataIntegrationClient) GetExternalPublication(ctx context.Context, request GetExternalPublicationRequest) (response GetExternalPublicationResponse, err error) { @@ -4526,7 +4527,7 @@ func (client DataIntegrationClient) getExternalPublication(ctx context.Context, // GetExternalPublicationValidation Retrieves an external publication validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetExternalPublicationValidation.go.html to see an example of how to use GetExternalPublicationValidation API. func (client DataIntegrationClient) GetExternalPublicationValidation(ctx context.Context, request GetExternalPublicationValidationRequest) (response GetExternalPublicationValidationResponse, err error) { @@ -4583,7 +4584,7 @@ func (client DataIntegrationClient) getExternalPublicationValidation(ctx context // GetFolder Retrieves a folder using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetFolder.go.html to see an example of how to use GetFolder API. func (client DataIntegrationClient) GetFolder(ctx context.Context, request GetFolderRequest) (response GetFolderResponse, err error) { @@ -4640,7 +4641,7 @@ func (client DataIntegrationClient) getFolder(ctx context.Context, request commo // GetFunctionLibrary Retrieves a Function Library using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetFunctionLibrary.go.html to see an example of how to use GetFunctionLibrary API. func (client DataIntegrationClient) GetFunctionLibrary(ctx context.Context, request GetFunctionLibraryRequest) (response GetFunctionLibraryResponse, err error) { @@ -4697,7 +4698,7 @@ func (client DataIntegrationClient) getFunctionLibrary(ctx context.Context, requ // GetImportRequest This endpoint can be used to get the summary/details of object being imported. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetImportRequest.go.html to see an example of how to use GetImportRequest API. func (client DataIntegrationClient) GetImportRequest(ctx context.Context, request GetImportRequestRequest) (response GetImportRequestResponse, err error) { @@ -4754,7 +4755,7 @@ func (client DataIntegrationClient) getImportRequest(ctx context.Context, reques // GetPatch Retrieves a patch in an application using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetPatch.go.html to see an example of how to use GetPatch API. func (client DataIntegrationClient) GetPatch(ctx context.Context, request GetPatchRequest) (response GetPatchResponse, err error) { @@ -4811,7 +4812,7 @@ func (client DataIntegrationClient) getPatch(ctx context.Context, request common // GetPipeline Retrieves a pipeline using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetPipeline.go.html to see an example of how to use GetPipeline API. func (client DataIntegrationClient) GetPipeline(ctx context.Context, request GetPipelineRequest) (response GetPipelineResponse, err error) { @@ -4868,7 +4869,7 @@ func (client DataIntegrationClient) getPipeline(ctx context.Context, request com // GetPipelineValidation Retrieves a pipeline validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetPipelineValidation.go.html to see an example of how to use GetPipelineValidation API. func (client DataIntegrationClient) GetPipelineValidation(ctx context.Context, request GetPipelineValidationRequest) (response GetPipelineValidationResponse, err error) { @@ -4925,7 +4926,7 @@ func (client DataIntegrationClient) getPipelineValidation(ctx context.Context, r // GetProject Retrieves a project using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetProject.go.html to see an example of how to use GetProject API. func (client DataIntegrationClient) GetProject(ctx context.Context, request GetProjectRequest) (response GetProjectResponse, err error) { @@ -4982,7 +4983,7 @@ func (client DataIntegrationClient) getProject(ctx context.Context, request comm // GetPublishedObject Retrieves the details of a published object from an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetPublishedObject.go.html to see an example of how to use GetPublishedObject API. func (client DataIntegrationClient) GetPublishedObject(ctx context.Context, request GetPublishedObjectRequest) (response GetPublishedObjectResponse, err error) { @@ -5039,7 +5040,7 @@ func (client DataIntegrationClient) getPublishedObject(ctx context.Context, requ // GetReference Retrieves a reference in an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetReference.go.html to see an example of how to use GetReference API. func (client DataIntegrationClient) GetReference(ctx context.Context, request GetReferenceRequest) (response GetReferenceResponse, err error) { @@ -5096,7 +5097,7 @@ func (client DataIntegrationClient) getReference(ctx context.Context, request co // GetRuntimeOperator Retrieves a runtime operator using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetRuntimeOperator.go.html to see an example of how to use GetRuntimeOperator API. func (client DataIntegrationClient) GetRuntimeOperator(ctx context.Context, request GetRuntimeOperatorRequest) (response GetRuntimeOperatorResponse, err error) { @@ -5153,7 +5154,7 @@ func (client DataIntegrationClient) getRuntimeOperator(ctx context.Context, requ // GetRuntimePipeline Retrieves a runtime pipeline using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetRuntimePipeline.go.html to see an example of how to use GetRuntimePipeline API. func (client DataIntegrationClient) GetRuntimePipeline(ctx context.Context, request GetRuntimePipelineRequest) (response GetRuntimePipelineResponse, err error) { @@ -5210,7 +5211,7 @@ func (client DataIntegrationClient) getRuntimePipeline(ctx context.Context, requ // GetSchedule Retrieves schedule by schedule key // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetSchedule.go.html to see an example of how to use GetSchedule API. func (client DataIntegrationClient) GetSchedule(ctx context.Context, request GetScheduleRequest) (response GetScheduleResponse, err error) { @@ -5267,7 +5268,7 @@ func (client DataIntegrationClient) getSchedule(ctx context.Context, request com // GetSchema Retrieves a schema that can be accessed using the specified connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetSchema.go.html to see an example of how to use GetSchema API. func (client DataIntegrationClient) GetSchema(ctx context.Context, request GetSchemaRequest) (response GetSchemaResponse, err error) { @@ -5324,7 +5325,7 @@ func (client DataIntegrationClient) getSchema(ctx context.Context, request commo // GetTask Retrieves a task using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetTask.go.html to see an example of how to use GetTask API. func (client DataIntegrationClient) GetTask(ctx context.Context, request GetTaskRequest) (response GetTaskResponse, err error) { @@ -5381,7 +5382,7 @@ func (client DataIntegrationClient) getTask(ctx context.Context, request common. // GetTaskRun Retrieves a task run using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetTaskRun.go.html to see an example of how to use GetTaskRun API. func (client DataIntegrationClient) GetTaskRun(ctx context.Context, request GetTaskRunRequest) (response GetTaskRunResponse, err error) { @@ -5438,7 +5439,7 @@ func (client DataIntegrationClient) getTaskRun(ctx context.Context, request comm // GetTaskSchedule Endpoint used to get taskSchedule by its key // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetTaskSchedule.go.html to see an example of how to use GetTaskSchedule API. func (client DataIntegrationClient) GetTaskSchedule(ctx context.Context, request GetTaskScheduleRequest) (response GetTaskScheduleResponse, err error) { @@ -5495,7 +5496,7 @@ func (client DataIntegrationClient) getTaskSchedule(ctx context.Context, request // GetTaskValidation Retrieves a task validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetTaskValidation.go.html to see an example of how to use GetTaskValidation API. func (client DataIntegrationClient) GetTaskValidation(ctx context.Context, request GetTaskValidationRequest) (response GetTaskValidationResponse, err error) { @@ -5552,7 +5553,7 @@ func (client DataIntegrationClient) getTaskValidation(ctx context.Context, reque // GetTemplate This endpoint can be used to get an application template using a key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetTemplate.go.html to see an example of how to use GetTemplate API. func (client DataIntegrationClient) GetTemplate(ctx context.Context, request GetTemplateRequest) (response GetTemplateResponse, err error) { @@ -5609,7 +5610,7 @@ func (client DataIntegrationClient) getTemplate(ctx context.Context, request com // GetUserDefinedFunction Retrieves a UserDefinedFunction using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetUserDefinedFunction.go.html to see an example of how to use GetUserDefinedFunction API. func (client DataIntegrationClient) GetUserDefinedFunction(ctx context.Context, request GetUserDefinedFunctionRequest) (response GetUserDefinedFunctionResponse, err error) { @@ -5666,7 +5667,7 @@ func (client DataIntegrationClient) getUserDefinedFunction(ctx context.Context, // GetUserDefinedFunctionValidation Retrieves a UserDefinedFunction validation using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetUserDefinedFunctionValidation.go.html to see an example of how to use GetUserDefinedFunctionValidation API. func (client DataIntegrationClient) GetUserDefinedFunctionValidation(ctx context.Context, request GetUserDefinedFunctionValidationRequest) (response GetUserDefinedFunctionValidationResponse, err error) { @@ -5723,7 +5724,7 @@ func (client DataIntegrationClient) getUserDefinedFunctionValidation(ctx context // GetWorkRequest Retrieves the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client DataIntegrationClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -5780,7 +5781,7 @@ func (client DataIntegrationClient) getWorkRequest(ctx context.Context, request // GetWorkspace Retrieves a Data Integration workspace using the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/GetWorkspace.go.html to see an example of how to use GetWorkspace API. func (client DataIntegrationClient) GetWorkspace(ctx context.Context, request GetWorkspaceRequest) (response GetWorkspaceResponse, err error) { @@ -5837,7 +5838,7 @@ func (client DataIntegrationClient) getWorkspace(ctx context.Context, request co // ListApplications Retrieves a list of applications and provides options to filter the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListApplications.go.html to see an example of how to use ListApplications API. func (client DataIntegrationClient) ListApplications(ctx context.Context, request ListApplicationsRequest) (response ListApplicationsResponse, err error) { @@ -5894,7 +5895,7 @@ func (client DataIntegrationClient) listApplications(ctx context.Context, reques // ListConnectionValidations Retrieves a list of connection validations within the specified workspace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListConnectionValidations.go.html to see an example of how to use ListConnectionValidations API. func (client DataIntegrationClient) ListConnectionValidations(ctx context.Context, request ListConnectionValidationsRequest) (response ListConnectionValidationsResponse, err error) { @@ -5951,7 +5952,7 @@ func (client DataIntegrationClient) listConnectionValidations(ctx context.Contex // ListConnections Retrieves a list of all connections. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListConnections.go.html to see an example of how to use ListConnections API. func (client DataIntegrationClient) ListConnections(ctx context.Context, request ListConnectionsRequest) (response ListConnectionsResponse, err error) { @@ -6008,7 +6009,7 @@ func (client DataIntegrationClient) listConnections(ctx context.Context, request // ListCopyObjectRequests This endpoint can be used to get the list of copy object requests. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListCopyObjectRequests.go.html to see an example of how to use ListCopyObjectRequests API. func (client DataIntegrationClient) ListCopyObjectRequests(ctx context.Context, request ListCopyObjectRequestsRequest) (response ListCopyObjectRequestsResponse, err error) { @@ -6065,7 +6066,7 @@ func (client DataIntegrationClient) listCopyObjectRequests(ctx context.Context, // ListDataAssets Retrieves a list of all data asset summaries. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListDataAssets.go.html to see an example of how to use ListDataAssets API. func (client DataIntegrationClient) ListDataAssets(ctx context.Context, request ListDataAssetsRequest) (response ListDataAssetsResponse, err error) { @@ -6122,7 +6123,7 @@ func (client DataIntegrationClient) listDataAssets(ctx context.Context, request // ListDataEntities Lists a summary of data entities from the data asset using the specified connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListDataEntities.go.html to see an example of how to use ListDataEntities API. func (client DataIntegrationClient) ListDataEntities(ctx context.Context, request ListDataEntitiesRequest) (response ListDataEntitiesResponse, err error) { @@ -6179,7 +6180,7 @@ func (client DataIntegrationClient) listDataEntities(ctx context.Context, reques // ListDataFlowValidations Retrieves a list of data flow validations within the specified workspace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListDataFlowValidations.go.html to see an example of how to use ListDataFlowValidations API. func (client DataIntegrationClient) ListDataFlowValidations(ctx context.Context, request ListDataFlowValidationsRequest) (response ListDataFlowValidationsResponse, err error) { @@ -6236,7 +6237,7 @@ func (client DataIntegrationClient) listDataFlowValidations(ctx context.Context, // ListDataFlows Retrieves a list of data flows in a project or folder. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListDataFlows.go.html to see an example of how to use ListDataFlows API. func (client DataIntegrationClient) ListDataFlows(ctx context.Context, request ListDataFlowsRequest) (response ListDataFlowsResponse, err error) { @@ -6293,7 +6294,7 @@ func (client DataIntegrationClient) listDataFlows(ctx context.Context, request c // ListDependentObjects Retrieves a list of all dependent objects for a specific application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListDependentObjects.go.html to see an example of how to use ListDependentObjects API. func (client DataIntegrationClient) ListDependentObjects(ctx context.Context, request ListDependentObjectsRequest) (response ListDependentObjectsResponse, err error) { @@ -6350,7 +6351,7 @@ func (client DataIntegrationClient) listDependentObjects(ctx context.Context, re // ListDisApplicationTaskRunLineages This endpoint can be used to list Task Run Lineages within a given time window. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListDisApplicationTaskRunLineages.go.html to see an example of how to use ListDisApplicationTaskRunLineages API. func (client DataIntegrationClient) ListDisApplicationTaskRunLineages(ctx context.Context, request ListDisApplicationTaskRunLineagesRequest) (response ListDisApplicationTaskRunLineagesResponse, err error) { @@ -6407,7 +6408,7 @@ func (client DataIntegrationClient) listDisApplicationTaskRunLineages(ctx contex // ListDisApplications Retrieves a list of DIS Applications in a compartment and provides options to filter the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListDisApplications.go.html to see an example of how to use ListDisApplications API. func (client DataIntegrationClient) ListDisApplications(ctx context.Context, request ListDisApplicationsRequest) (response ListDisApplicationsResponse, err error) { @@ -6464,7 +6465,7 @@ func (client DataIntegrationClient) listDisApplications(ctx context.Context, req // ListExportRequests This endpoint can be used to get the list of export object requests. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListExportRequests.go.html to see an example of how to use ListExportRequests API. func (client DataIntegrationClient) ListExportRequests(ctx context.Context, request ListExportRequestsRequest) (response ListExportRequestsResponse, err error) { @@ -6521,7 +6522,7 @@ func (client DataIntegrationClient) listExportRequests(ctx context.Context, requ // ListExternalPublicationValidations Retrieves a lists of external publication validations in a workspace and provides options to filter the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListExternalPublicationValidations.go.html to see an example of how to use ListExternalPublicationValidations API. func (client DataIntegrationClient) ListExternalPublicationValidations(ctx context.Context, request ListExternalPublicationValidationsRequest) (response ListExternalPublicationValidationsResponse, err error) { @@ -6578,7 +6579,7 @@ func (client DataIntegrationClient) listExternalPublicationValidations(ctx conte // ListExternalPublications Retrieves a list of external publications in an application and provides options to filter the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListExternalPublications.go.html to see an example of how to use ListExternalPublications API. func (client DataIntegrationClient) ListExternalPublications(ctx context.Context, request ListExternalPublicationsRequest) (response ListExternalPublicationsResponse, err error) { @@ -6635,7 +6636,7 @@ func (client DataIntegrationClient) listExternalPublications(ctx context.Context // ListFolders Retrieves a list of folders in a project and provides options to filter the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListFolders.go.html to see an example of how to use ListFolders API. func (client DataIntegrationClient) ListFolders(ctx context.Context, request ListFoldersRequest) (response ListFoldersResponse, err error) { @@ -6692,7 +6693,7 @@ func (client DataIntegrationClient) listFolders(ctx context.Context, request com // ListFunctionLibraries Retrieves a list of function libraries in a project and provides options to filter the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListFunctionLibraries.go.html to see an example of how to use ListFunctionLibraries API. func (client DataIntegrationClient) ListFunctionLibraries(ctx context.Context, request ListFunctionLibrariesRequest) (response ListFunctionLibrariesResponse, err error) { @@ -6749,7 +6750,7 @@ func (client DataIntegrationClient) listFunctionLibraries(ctx context.Context, r // ListImportRequests This endpoint can be used to get the list of import object requests. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListImportRequests.go.html to see an example of how to use ListImportRequests API. func (client DataIntegrationClient) ListImportRequests(ctx context.Context, request ListImportRequestsRequest) (response ListImportRequestsResponse, err error) { @@ -6806,7 +6807,7 @@ func (client DataIntegrationClient) listImportRequests(ctx context.Context, requ // ListPatchChanges Retrieves a list of patches in an application and provides options to filter the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListPatchChanges.go.html to see an example of how to use ListPatchChanges API. func (client DataIntegrationClient) ListPatchChanges(ctx context.Context, request ListPatchChangesRequest) (response ListPatchChangesResponse, err error) { @@ -6863,7 +6864,7 @@ func (client DataIntegrationClient) listPatchChanges(ctx context.Context, reques // ListPatches Retrieves a list of patches in an application and provides options to filter the list. For listing changes based on a period and logical objects changed, see ListPatchChanges API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListPatches.go.html to see an example of how to use ListPatches API. func (client DataIntegrationClient) ListPatches(ctx context.Context, request ListPatchesRequest) (response ListPatchesResponse, err error) { @@ -6920,7 +6921,7 @@ func (client DataIntegrationClient) listPatches(ctx context.Context, request com // ListPipelineValidations Retrieves a list of pipeline validations within the specified workspace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListPipelineValidations.go.html to see an example of how to use ListPipelineValidations API. func (client DataIntegrationClient) ListPipelineValidations(ctx context.Context, request ListPipelineValidationsRequest) (response ListPipelineValidationsResponse, err error) { @@ -6977,7 +6978,7 @@ func (client DataIntegrationClient) listPipelineValidations(ctx context.Context, // ListPipelines Retrieves a list of pipelines in a project or folder from within a workspace, the query parameter specifies the project or folder. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListPipelines.go.html to see an example of how to use ListPipelines API. func (client DataIntegrationClient) ListPipelines(ctx context.Context, request ListPipelinesRequest) (response ListPipelinesResponse, err error) { @@ -7034,7 +7035,7 @@ func (client DataIntegrationClient) listPipelines(ctx context.Context, request c // ListProjects Retrieves a lists of projects in a workspace and provides options to filter the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListProjects.go.html to see an example of how to use ListProjects API. func (client DataIntegrationClient) ListProjects(ctx context.Context, request ListProjectsRequest) (response ListProjectsResponse, err error) { @@ -7091,7 +7092,7 @@ func (client DataIntegrationClient) listProjects(ctx context.Context, request co // ListPublishedObjects Retrieves a list of all the published objects for a specified application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListPublishedObjects.go.html to see an example of how to use ListPublishedObjects API. func (client DataIntegrationClient) ListPublishedObjects(ctx context.Context, request ListPublishedObjectsRequest) (response ListPublishedObjectsResponse, err error) { @@ -7148,7 +7149,7 @@ func (client DataIntegrationClient) listPublishedObjects(ctx context.Context, re // ListReferences Retrieves a list of references in an application. Reference objects are created when dataflows and tasks use objects, such as data assets and connections. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListReferences.go.html to see an example of how to use ListReferences API. func (client DataIntegrationClient) ListReferences(ctx context.Context, request ListReferencesRequest) (response ListReferencesResponse, err error) { @@ -7205,7 +7206,7 @@ func (client DataIntegrationClient) listReferences(ctx context.Context, request // ListRuntimeOperators This endpoint can be used to list runtime operators with filtering options // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListRuntimeOperators.go.html to see an example of how to use ListRuntimeOperators API. func (client DataIntegrationClient) ListRuntimeOperators(ctx context.Context, request ListRuntimeOperatorsRequest) (response ListRuntimeOperatorsResponse, err error) { @@ -7262,7 +7263,7 @@ func (client DataIntegrationClient) listRuntimeOperators(ctx context.Context, re // ListRuntimePipelines This endpoint can be used to list runtime pipelines with filtering options // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListRuntimePipelines.go.html to see an example of how to use ListRuntimePipelines API. func (client DataIntegrationClient) ListRuntimePipelines(ctx context.Context, request ListRuntimePipelinesRequest) (response ListRuntimePipelinesResponse, err error) { @@ -7319,7 +7320,7 @@ func (client DataIntegrationClient) listRuntimePipelines(ctx context.Context, re // ListSchedules Use this endpoint to list schedules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListSchedules.go.html to see an example of how to use ListSchedules API. func (client DataIntegrationClient) ListSchedules(ctx context.Context, request ListSchedulesRequest) (response ListSchedulesResponse, err error) { @@ -7376,7 +7377,7 @@ func (client DataIntegrationClient) listSchedules(ctx context.Context, request c // ListSchemas Retrieves a list of all the schemas that can be accessed using the specified connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListSchemas.go.html to see an example of how to use ListSchemas API. func (client DataIntegrationClient) ListSchemas(ctx context.Context, request ListSchemasRequest) (response ListSchemasResponse, err error) { @@ -7433,7 +7434,7 @@ func (client DataIntegrationClient) listSchemas(ctx context.Context, request com // ListTaskRunLineages This endpoint can be used to list Task Run Lineages within a given time window. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListTaskRunLineages.go.html to see an example of how to use ListTaskRunLineages API. func (client DataIntegrationClient) ListTaskRunLineages(ctx context.Context, request ListTaskRunLineagesRequest) (response ListTaskRunLineagesResponse, err error) { @@ -7490,7 +7491,7 @@ func (client DataIntegrationClient) listTaskRunLineages(ctx context.Context, req // ListTaskRunLogs Gets log entries for task runs using its key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListTaskRunLogs.go.html to see an example of how to use ListTaskRunLogs API. func (client DataIntegrationClient) ListTaskRunLogs(ctx context.Context, request ListTaskRunLogsRequest) (response ListTaskRunLogsResponse, err error) { @@ -7547,7 +7548,7 @@ func (client DataIntegrationClient) listTaskRunLogs(ctx context.Context, request // ListTaskRuns Retrieves a list of task runs and provides options to filter the list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListTaskRuns.go.html to see an example of how to use ListTaskRuns API. func (client DataIntegrationClient) ListTaskRuns(ctx context.Context, request ListTaskRunsRequest) (response ListTaskRunsResponse, err error) { @@ -7604,7 +7605,7 @@ func (client DataIntegrationClient) listTaskRuns(ctx context.Context, request co // ListTaskSchedules This endpoint can be used to get the list of all the TaskSchedule objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListTaskSchedules.go.html to see an example of how to use ListTaskSchedules API. func (client DataIntegrationClient) ListTaskSchedules(ctx context.Context, request ListTaskSchedulesRequest) (response ListTaskSchedulesResponse, err error) { @@ -7661,7 +7662,7 @@ func (client DataIntegrationClient) listTaskSchedules(ctx context.Context, reque // ListTaskValidations Retrieves a list of task validations within the specified workspace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListTaskValidations.go.html to see an example of how to use ListTaskValidations API. func (client DataIntegrationClient) ListTaskValidations(ctx context.Context, request ListTaskValidationsRequest) (response ListTaskValidationsResponse, err error) { @@ -7718,7 +7719,7 @@ func (client DataIntegrationClient) listTaskValidations(ctx context.Context, req // ListTasks Retrieves a list of all tasks in a specified project or folder. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListTasks.go.html to see an example of how to use ListTasks API. func (client DataIntegrationClient) ListTasks(ctx context.Context, request ListTasksRequest) (response ListTasksResponse, err error) { @@ -7775,7 +7776,7 @@ func (client DataIntegrationClient) listTasks(ctx context.Context, request commo // ListTemplates This endpoint can be used to list application templates with filtering options. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListTemplates.go.html to see an example of how to use ListTemplates API. func (client DataIntegrationClient) ListTemplates(ctx context.Context, request ListTemplatesRequest) (response ListTemplatesResponse, err error) { @@ -7832,7 +7833,7 @@ func (client DataIntegrationClient) listTemplates(ctx context.Context, request c // ListUserDefinedFunctionValidations Retrieves a list of UserDefinedFunctionvalidations within the specified workspace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListUserDefinedFunctionValidations.go.html to see an example of how to use ListUserDefinedFunctionValidations API. func (client DataIntegrationClient) ListUserDefinedFunctionValidations(ctx context.Context, request ListUserDefinedFunctionValidationsRequest) (response ListUserDefinedFunctionValidationsResponse, err error) { @@ -7889,7 +7890,7 @@ func (client DataIntegrationClient) listUserDefinedFunctionValidations(ctx conte // ListUserDefinedFunctions Retrieves a list of UserDefinedFunctions in a function library. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListUserDefinedFunctions.go.html to see an example of how to use ListUserDefinedFunctions API. func (client DataIntegrationClient) ListUserDefinedFunctions(ctx context.Context, request ListUserDefinedFunctionsRequest) (response ListUserDefinedFunctionsResponse, err error) { @@ -7946,7 +7947,7 @@ func (client DataIntegrationClient) listUserDefinedFunctions(ctx context.Context // ListWorkRequestErrors Retrieves a paginated list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client DataIntegrationClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -8003,7 +8004,7 @@ func (client DataIntegrationClient) listWorkRequestErrors(ctx context.Context, r // ListWorkRequestLogs Retrieves a paginated list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client DataIntegrationClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -8060,7 +8061,7 @@ func (client DataIntegrationClient) listWorkRequestLogs(ctx context.Context, req // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client DataIntegrationClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -8117,7 +8118,7 @@ func (client DataIntegrationClient) listWorkRequests(ctx context.Context, reques // ListWorkspaces Retrieves a list of Data Integration workspaces. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/ListWorkspaces.go.html to see an example of how to use ListWorkspaces API. func (client DataIntegrationClient) ListWorkspaces(ctx context.Context, request ListWorkspacesRequest) (response ListWorkspacesResponse, err error) { @@ -8174,7 +8175,7 @@ func (client DataIntegrationClient) listWorkspaces(ctx context.Context, request // StartWorkspace Starts a workspace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/StartWorkspace.go.html to see an example of how to use StartWorkspace API. func (client DataIntegrationClient) StartWorkspace(ctx context.Context, request StartWorkspaceRequest) (response StartWorkspaceResponse, err error) { @@ -8236,7 +8237,7 @@ func (client DataIntegrationClient) startWorkspace(ctx context.Context, request // StopWorkspace Stops a workspace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/StopWorkspace.go.html to see an example of how to use StopWorkspace API. func (client DataIntegrationClient) StopWorkspace(ctx context.Context, request StopWorkspaceRequest) (response StopWorkspaceResponse, err error) { @@ -8298,7 +8299,7 @@ func (client DataIntegrationClient) stopWorkspace(ctx context.Context, request c // UpdateApplication Updates an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateApplication.go.html to see an example of how to use UpdateApplication API. func (client DataIntegrationClient) UpdateApplication(ctx context.Context, request UpdateApplicationRequest) (response UpdateApplicationResponse, err error) { @@ -8355,7 +8356,7 @@ func (client DataIntegrationClient) updateApplication(ctx context.Context, reque // UpdateApplicationDetailedDescription Updates the detailed description of an Application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateApplicationDetailedDescription.go.html to see an example of how to use UpdateApplicationDetailedDescription API. func (client DataIntegrationClient) UpdateApplicationDetailedDescription(ctx context.Context, request UpdateApplicationDetailedDescriptionRequest) (response UpdateApplicationDetailedDescriptionResponse, err error) { @@ -8412,7 +8413,7 @@ func (client DataIntegrationClient) updateApplicationDetailedDescription(ctx con // UpdateConnection Updates a connection under a data asset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateConnection.go.html to see an example of how to use UpdateConnection API. func (client DataIntegrationClient) UpdateConnection(ctx context.Context, request UpdateConnectionRequest) (response UpdateConnectionResponse, err error) { @@ -8469,7 +8470,7 @@ func (client DataIntegrationClient) updateConnection(ctx context.Context, reques // UpdateCopyObjectRequest Updates the status of a copy object request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateCopyObjectRequest.go.html to see an example of how to use UpdateCopyObjectRequest API. func (client DataIntegrationClient) UpdateCopyObjectRequest(ctx context.Context, request UpdateCopyObjectRequestRequest) (response UpdateCopyObjectRequestResponse, err error) { @@ -8526,7 +8527,7 @@ func (client DataIntegrationClient) updateCopyObjectRequest(ctx context.Context, // UpdateDataAsset Updates a specific data asset with default connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateDataAsset.go.html to see an example of how to use UpdateDataAsset API. func (client DataIntegrationClient) UpdateDataAsset(ctx context.Context, request UpdateDataAssetRequest) (response UpdateDataAssetResponse, err error) { @@ -8583,7 +8584,7 @@ func (client DataIntegrationClient) updateDataAsset(ctx context.Context, request // UpdateDataFlow Updates a specific data flow. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateDataFlow.go.html to see an example of how to use UpdateDataFlow API. func (client DataIntegrationClient) UpdateDataFlow(ctx context.Context, request UpdateDataFlowRequest) (response UpdateDataFlowResponse, err error) { @@ -8640,7 +8641,7 @@ func (client DataIntegrationClient) updateDataFlow(ctx context.Context, request // UpdateDisApplication Updates a DIS Application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateDisApplication.go.html to see an example of how to use UpdateDisApplication API. func (client DataIntegrationClient) UpdateDisApplication(ctx context.Context, request UpdateDisApplicationRequest) (response UpdateDisApplicationResponse, err error) { @@ -8697,7 +8698,7 @@ func (client DataIntegrationClient) updateDisApplication(ctx context.Context, re // UpdateDisApplicationDetailedDescription Updates the detailed description of an Application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateDisApplicationDetailedDescription.go.html to see an example of how to use UpdateDisApplicationDetailedDescription API. func (client DataIntegrationClient) UpdateDisApplicationDetailedDescription(ctx context.Context, request UpdateDisApplicationDetailedDescriptionRequest) (response UpdateDisApplicationDetailedDescriptionResponse, err error) { @@ -8754,7 +8755,7 @@ func (client DataIntegrationClient) updateDisApplicationDetailedDescription(ctx // UpdateExportRequest Updates the status of a export object request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateExportRequest.go.html to see an example of how to use UpdateExportRequest API. func (client DataIntegrationClient) UpdateExportRequest(ctx context.Context, request UpdateExportRequestRequest) (response UpdateExportRequestResponse, err error) { @@ -8811,7 +8812,7 @@ func (client DataIntegrationClient) updateExportRequest(ctx context.Context, req // UpdateExternalPublication Updates the external publication object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateExternalPublication.go.html to see an example of how to use UpdateExternalPublication API. func (client DataIntegrationClient) UpdateExternalPublication(ctx context.Context, request UpdateExternalPublicationRequest) (response UpdateExternalPublicationResponse, err error) { @@ -8868,7 +8869,7 @@ func (client DataIntegrationClient) updateExternalPublication(ctx context.Contex // UpdateFolder Updates a specific folder. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateFolder.go.html to see an example of how to use UpdateFolder API. func (client DataIntegrationClient) UpdateFolder(ctx context.Context, request UpdateFolderRequest) (response UpdateFolderResponse, err error) { @@ -8925,7 +8926,7 @@ func (client DataIntegrationClient) updateFolder(ctx context.Context, request co // UpdateFunctionLibrary Updates a specific Function Library. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateFunctionLibrary.go.html to see an example of how to use UpdateFunctionLibrary API. func (client DataIntegrationClient) UpdateFunctionLibrary(ctx context.Context, request UpdateFunctionLibraryRequest) (response UpdateFunctionLibraryResponse, err error) { @@ -8982,7 +8983,7 @@ func (client DataIntegrationClient) updateFunctionLibrary(ctx context.Context, r // UpdateImportRequest Updates the status of a import object request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateImportRequest.go.html to see an example of how to use UpdateImportRequest API. func (client DataIntegrationClient) UpdateImportRequest(ctx context.Context, request UpdateImportRequestRequest) (response UpdateImportRequestResponse, err error) { @@ -9039,7 +9040,7 @@ func (client DataIntegrationClient) updateImportRequest(ctx context.Context, req // UpdatePipeline Updates a specific pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdatePipeline.go.html to see an example of how to use UpdatePipeline API. func (client DataIntegrationClient) UpdatePipeline(ctx context.Context, request UpdatePipelineRequest) (response UpdatePipelineResponse, err error) { @@ -9096,7 +9097,7 @@ func (client DataIntegrationClient) updatePipeline(ctx context.Context, request // UpdateProject Updates a specific project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateProject.go.html to see an example of how to use UpdateProject API. func (client DataIntegrationClient) UpdateProject(ctx context.Context, request UpdateProjectRequest) (response UpdateProjectResponse, err error) { @@ -9153,7 +9154,7 @@ func (client DataIntegrationClient) updateProject(ctx context.Context, request c // UpdateReference Updates the application references. For example, to map a data asset to a different target object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateReference.go.html to see an example of how to use UpdateReference API. func (client DataIntegrationClient) UpdateReference(ctx context.Context, request UpdateReferenceRequest) (response UpdateReferenceResponse, err error) { @@ -9215,7 +9216,7 @@ func (client DataIntegrationClient) updateReference(ctx context.Context, request // UpdateSchedule Endpoint used to update the schedule // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateSchedule.go.html to see an example of how to use UpdateSchedule API. func (client DataIntegrationClient) UpdateSchedule(ctx context.Context, request UpdateScheduleRequest) (response UpdateScheduleResponse, err error) { @@ -9272,7 +9273,7 @@ func (client DataIntegrationClient) updateSchedule(ctx context.Context, request // UpdateTask Updates a specific task. For example, you can update the task description or move the task to a different folder by changing the `aggregatorKey` to a different folder in the registry. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateTask.go.html to see an example of how to use UpdateTask API. func (client DataIntegrationClient) UpdateTask(ctx context.Context, request UpdateTaskRequest) (response UpdateTaskResponse, err error) { @@ -9329,7 +9330,7 @@ func (client DataIntegrationClient) updateTask(ctx context.Context, request comm // UpdateTaskRun Updates the status of the task run. For example, aborts a task run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateTaskRun.go.html to see an example of how to use UpdateTaskRun API. func (client DataIntegrationClient) UpdateTaskRun(ctx context.Context, request UpdateTaskRunRequest) (response UpdateTaskRunResponse, err error) { @@ -9386,7 +9387,7 @@ func (client DataIntegrationClient) updateTaskRun(ctx context.Context, request c // UpdateTaskSchedule Endpoint used to update the TaskSchedule // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateTaskSchedule.go.html to see an example of how to use UpdateTaskSchedule API. func (client DataIntegrationClient) UpdateTaskSchedule(ctx context.Context, request UpdateTaskScheduleRequest) (response UpdateTaskScheduleResponse, err error) { @@ -9443,7 +9444,7 @@ func (client DataIntegrationClient) updateTaskSchedule(ctx context.Context, requ // UpdateUserDefinedFunction Updates a specific UserDefinedFunction. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateUserDefinedFunction.go.html to see an example of how to use UpdateUserDefinedFunction API. func (client DataIntegrationClient) UpdateUserDefinedFunction(ctx context.Context, request UpdateUserDefinedFunctionRequest) (response UpdateUserDefinedFunctionResponse, err error) { @@ -9500,7 +9501,7 @@ func (client DataIntegrationClient) updateUserDefinedFunction(ctx context.Contex // UpdateWorkspace Updates the specified Data Integration workspace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dataintegration/UpdateWorkspace.go.html to see an example of how to use UpdateWorkspace API. func (client DataIntegrationClient) UpdateWorkspace(ctx context.Context, request UpdateWorkspaceRequest) (response UpdateWorkspaceResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/decision_operator.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/decision_operator.go index 4bb1770a835..55f0c36011c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/decision_operator.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/decision_operator.go @@ -62,62 +62,62 @@ type DecisionOperator struct { TriggerRule DecisionOperatorTriggerRuleEnum `mandatory:"false" json:"triggerRule,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m DecisionOperator) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DecisionOperator) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DecisionOperator) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m DecisionOperator) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DecisionOperator) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m DecisionOperator) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m DecisionOperator) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m DecisionOperator) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DecisionOperator) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DecisionOperator) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m DecisionOperator) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m DecisionOperator) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/decision_output_port.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/decision_output_port.go index e7115e4d6f3..d8182ad5be5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/decision_output_port.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/decision_output_port.go @@ -48,37 +48,37 @@ type DecisionOutputPort struct { DecisionOutputPortType DecisionOutputPortDecisionOutputPortTypeEnum `mandatory:"true" json:"decisionOutputPortType"` } -//GetKey returns Key +// GetKey returns Key func (m DecisionOutputPort) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DecisionOutputPort) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DecisionOutputPort) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m DecisionOutputPort) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DecisionOutputPort) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m DecisionOutputPort) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DecisionOutputPort) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_entity.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_entity.go index a46792acc33..1784f6b66d1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_entity.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_entity.go @@ -57,7 +57,7 @@ type DerivedEntity struct { Mode DerivedEntityModeEnum `mandatory:"false" json:"mode,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m DerivedEntity) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_field.go index 80517c8ec3d..75fbf52c9d8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_field.go @@ -50,37 +50,37 @@ type DerivedField struct { Labels []string `mandatory:"false" json:"labels"` } -//GetKey returns Key +// GetKey returns Key func (m DerivedField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DerivedField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DerivedField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m DerivedField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DerivedField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m DerivedField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DerivedField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_type.go index 8facb969e80..0d948931c39 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/derived_type.go @@ -37,32 +37,32 @@ type DerivedType struct { Description *string `mandatory:"false" json:"description"` } -//GetKey returns Key +// GetKey returns Key func (m DerivedType) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DerivedType) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DerivedType) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m DerivedType) GetName() *string { return m.Name } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DerivedType) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m DerivedType) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/direct_field_map.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/direct_field_map.go index 4a87a765616..22b95dacd2c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/direct_field_map.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/direct_field_map.go @@ -46,7 +46,7 @@ type DirectFieldMap struct { ObjectStatus *int `mandatory:"false" json:"objectStatus"` } -//GetDescription returns Description +// GetDescription returns Description func (m DirectFieldMap) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/direct_named_field_map.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/direct_named_field_map.go index 7ed3cfafb28..9cf0975c9ec 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/direct_named_field_map.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/direct_named_field_map.go @@ -52,7 +52,7 @@ type DirectNamedFieldMap struct { ObjectStatus *int `mandatory:"false" json:"objectStatus"` } -//GetDescription returns Description +// GetDescription returns Description func (m DirectNamedFieldMap) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/distinct.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/distinct.go index 56f1ab9cb74..ca93aa70944 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/distinct.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/distinct.go @@ -54,62 +54,62 @@ type Distinct struct { OpConfigValues *ConfigValues `mandatory:"false" json:"opConfigValues"` } -//GetKey returns Key +// GetKey returns Key func (m Distinct) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Distinct) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Distinct) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Distinct) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Distinct) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Distinct) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Distinct) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Distinct) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Distinct) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Distinct) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Distinct) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Distinct) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_input_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_input_field.go index 0233356d928..4472dcb7c50 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_input_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_input_field.go @@ -44,37 +44,37 @@ type DynamicInputField struct { Labels []string `mandatory:"false" json:"labels"` } -//GetKey returns Key +// GetKey returns Key func (m DynamicInputField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DynamicInputField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DynamicInputField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m DynamicInputField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DynamicInputField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m DynamicInputField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DynamicInputField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_proxy_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_proxy_field.go index 4956fb818f9..b2076547f3f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_proxy_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_proxy_field.go @@ -44,37 +44,37 @@ type DynamicProxyField struct { Labels []string `mandatory:"false" json:"labels"` } -//GetKey returns Key +// GetKey returns Key func (m DynamicProxyField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DynamicProxyField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DynamicProxyField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m DynamicProxyField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DynamicProxyField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m DynamicProxyField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m DynamicProxyField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_type.go index e7aa4d74ab7..6d3fd4c8d8e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/dynamic_type.go @@ -41,32 +41,32 @@ type DynamicType struct { ConfigDefinition *ConfigDefinition `mandatory:"false" json:"configDefinition"` } -//GetKey returns Key +// GetKey returns Key func (m DynamicType) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m DynamicType) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m DynamicType) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m DynamicType) GetName() *string { return m.Name } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m DynamicType) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m DynamicType) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/end_operator.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/end_operator.go index 660b9bfbf17..24e336b6cda 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/end_operator.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/end_operator.go @@ -60,62 +60,62 @@ type EndOperator struct { TriggerRule EndOperatorTriggerRuleEnum `mandatory:"false" json:"triggerRule,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m EndOperator) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m EndOperator) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m EndOperator) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m EndOperator) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m EndOperator) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m EndOperator) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m EndOperator) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m EndOperator) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m EndOperator) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m EndOperator) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m EndOperator) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m EndOperator) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_file.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_file.go index 736cad4caba..43fbdb9e73d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_file.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_file.go @@ -71,7 +71,7 @@ type EntityShapeFromFile struct { EntityType EntityShapeFromFileEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m EntityShapeFromFile) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_object.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_object.go index 73c273127c6..4983305ac41 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_object.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_object.go @@ -69,7 +69,7 @@ type EntityShapeFromObject struct { EntityType EntityShapeFromObjectEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m EntityShapeFromObject) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_sql.go index 3389bfb5f44..0fc6b9968eb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/entity_shape_from_sql.go @@ -72,7 +72,7 @@ type EntityShapeFromSql struct { EntityType EntityShapeFromSqlEntityTypeEnum `mandatory:"false" json:"entityType,omitempty"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m EntityShapeFromSql) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/expression_operator.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/expression_operator.go index 937bf1e1e3b..00ee00625f5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/expression_operator.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/expression_operator.go @@ -62,62 +62,62 @@ type ExpressionOperator struct { TriggerRule ExpressionOperatorTriggerRuleEnum `mandatory:"false" json:"triggerRule,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m ExpressionOperator) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ExpressionOperator) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ExpressionOperator) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ExpressionOperator) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ExpressionOperator) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ExpressionOperator) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m ExpressionOperator) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m ExpressionOperator) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ExpressionOperator) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ExpressionOperator) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m ExpressionOperator) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m ExpressionOperator) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/filter.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/filter.go index 525c16b638c..20194ac1217 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/filter.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/filter.go @@ -56,62 +56,62 @@ type Filter struct { FilterCondition *Expression `mandatory:"false" json:"filterCondition"` } -//GetKey returns Key +// GetKey returns Key func (m Filter) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Filter) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Filter) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Filter) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Filter) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Filter) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Filter) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Filter) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Filter) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Filter) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Filter) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Filter) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/flatten.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/flatten.go index 1cf0542fdd9..1367fc6b1bb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/flatten.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/flatten.go @@ -60,62 +60,62 @@ type Flatten struct { MaterializedFlattenField *MaterializedDynamicField `mandatory:"false" json:"materializedFlattenField"` } -//GetKey returns Key +// GetKey returns Key func (m Flatten) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Flatten) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Flatten) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Flatten) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Flatten) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Flatten) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Flatten) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Flatten) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Flatten) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Flatten) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Flatten) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Flatten) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/flow_port.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/flow_port.go index 4b93e40d4eb..df2c1ee00ac 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/flow_port.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/flow_port.go @@ -39,37 +39,37 @@ type FlowPort struct { Description *string `mandatory:"false" json:"description"` } -//GetKey returns Key +// GetKey returns Key func (m FlowPort) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m FlowPort) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m FlowPort) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m FlowPort) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m FlowPort) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m FlowPort) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m FlowPort) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/function.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/function.go index 52f1514d255..a3985a728de 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/function.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/function.go @@ -56,62 +56,62 @@ type Function struct { OciFunction *OciFunction `mandatory:"false" json:"ociFunction"` } -//GetKey returns Key +// GetKey returns Key func (m Function) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Function) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Function) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Function) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Function) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Function) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Function) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Function) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Function) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Function) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Function) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Function) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/generic_rest_call_attribute.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/generic_rest_call_attribute.go index 3e7c86fc85d..1602fb02f7f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/generic_rest_call_attribute.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/generic_rest_call_attribute.go @@ -23,7 +23,7 @@ type GenericRestCallAttribute struct { FetchSize *int `mandatory:"false" json:"fetchSize"` } -//GetFetchSize returns FetchSize +// GetFetchSize returns FetchSize func (m GenericRestCallAttribute) GetFetchSize() *int { return m.FetchSize } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/grouped_name_pattern_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/grouped_name_pattern_rule.go index cf603dfcb68..e3e19e96662 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/grouped_name_pattern_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/grouped_name_pattern_rule.go @@ -63,37 +63,37 @@ type GroupedNamePatternRule struct { RuleType GroupedNamePatternRuleRuleTypeEnum `mandatory:"false" json:"ruleType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m GroupedNamePatternRule) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m GroupedNamePatternRule) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m GroupedNamePatternRule) GetParentRef() *ParentReference { return m.ParentRef } -//GetIsJavaRegexSyntax returns IsJavaRegexSyntax +// GetIsJavaRegexSyntax returns IsJavaRegexSyntax func (m GroupedNamePatternRule) GetIsJavaRegexSyntax() *bool { return m.IsJavaRegexSyntax } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m GroupedNamePatternRule) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m GroupedNamePatternRule) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m GroupedNamePatternRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/hourly_frequency_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/hourly_frequency_details.go index 4b3e947bde3..0543b41bdf2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/hourly_frequency_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/hourly_frequency_details.go @@ -28,7 +28,7 @@ type HourlyFrequencyDetails struct { Frequency AbstractFrequencyDetailsFrequencyEnum `mandatory:"false" json:"frequency,omitempty"` } -//GetFrequency returns Frequency +// GetFrequency returns Frequency func (m HourlyFrequencyDetails) GetFrequency() AbstractFrequencyDetailsFrequencyEnum { return m.Frequency } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_field.go index ba22c81b4a4..3b144d13740 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_field.go @@ -44,37 +44,37 @@ type InputField struct { Labels []string `mandatory:"false" json:"labels"` } -//GetKey returns Key +// GetKey returns Key func (m InputField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m InputField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m InputField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m InputField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m InputField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m InputField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m InputField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_link.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_link.go index 5f438f26c00..c6d0d1bb877 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_link.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_link.go @@ -42,32 +42,32 @@ type InputLink struct { FieldMap FieldMap `mandatory:"false" json:"fieldMap"` } -//GetKey returns Key +// GetKey returns Key func (m InputLink) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m InputLink) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m InputLink) GetParentRef() *ParentReference { return m.ParentRef } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m InputLink) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m InputLink) GetDescription() *string { return m.Description } -//GetPort returns Port +// GetPort returns Port func (m InputLink) GetPort() *string { return m.Port } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_port.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_port.go index 4b3c492ad22..b8841c3cb52 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_port.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_port.go @@ -45,37 +45,37 @@ type InputPort struct { PortType InputPortPortTypeEnum `mandatory:"false" json:"portType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m InputPort) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m InputPort) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m InputPort) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m InputPort) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m InputPort) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m InputPort) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m InputPort) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_proxy_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_proxy_field.go index 26230ee0fd5..eacb51c7b71 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_proxy_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/input_proxy_field.go @@ -47,37 +47,37 @@ type InputProxyField struct { Labels []string `mandatory:"false" json:"labels"` } -//GetKey returns Key +// GetKey returns Key func (m InputProxyField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m InputProxyField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m InputProxyField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m InputProxyField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m InputProxyField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m InputProxyField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m InputProxyField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/intersect.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/intersect.go index ff3bb021b4a..de167215054 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/intersect.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/intersect.go @@ -60,62 +60,62 @@ type Intersect struct { IntersectType IntersectIntersectTypeEnum `mandatory:"false" json:"intersectType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m Intersect) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Intersect) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Intersect) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Intersect) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Intersect) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Intersect) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Intersect) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Intersect) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Intersect) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Intersect) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Intersect) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Intersect) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/java_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/java_type.go index c8cac2cbe0e..47a32e1ab19 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/java_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/java_type.go @@ -42,32 +42,32 @@ type JavaType struct { ConfigDefinition *ConfigDefinition `mandatory:"false" json:"configDefinition"` } -//GetKey returns Key +// GetKey returns Key func (m JavaType) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m JavaType) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m JavaType) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m JavaType) GetName() *string { return m.Name } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m JavaType) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m JavaType) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/joiner.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/joiner.go index 93e45061f70..af8d8ff6abe 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/joiner.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/joiner.go @@ -59,62 +59,62 @@ type Joiner struct { JoinType JoinerJoinTypeEnum `mandatory:"false" json:"joinType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m Joiner) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Joiner) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Joiner) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Joiner) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Joiner) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Joiner) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Joiner) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Joiner) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Joiner) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Joiner) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Joiner) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Joiner) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/json_format_attribute.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/json_format_attribute.go index 30fd32d638c..ee5610f7f8f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/json_format_attribute.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/json_format_attribute.go @@ -26,7 +26,7 @@ type JsonFormatAttribute struct { Encoding *string `mandatory:"false" json:"encoding"` } -//GetIsFilePattern returns IsFilePattern +// GetIsFilePattern returns IsFilePattern func (m JsonFormatAttribute) GetIsFilePattern() *bool { return m.IsFilePattern } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/lookup.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/lookup.go index 898c6df01f9..bf5cf9e6319 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/lookup.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/lookup.go @@ -65,62 +65,62 @@ type Lookup struct { MultiMatchStrategy LookupMultiMatchStrategyEnum `mandatory:"false" json:"multiMatchStrategy,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m Lookup) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Lookup) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Lookup) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Lookup) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Lookup) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Lookup) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Lookup) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Lookup) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Lookup) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Lookup) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Lookup) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Lookup) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/macro_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/macro_field.go index 879c2d69ae0..2f6788314df 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/macro_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/macro_field.go @@ -51,37 +51,37 @@ type MacroField struct { Labels []string `mandatory:"false" json:"labels"` } -//GetKey returns Key +// GetKey returns Key func (m MacroField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m MacroField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m MacroField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m MacroField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m MacroField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m MacroField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m MacroField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/map_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/map_type.go index 95f56075ac4..b098532aca9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/map_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/map_type.go @@ -46,32 +46,32 @@ type MapType struct { ContainsNull *bool `mandatory:"false" json:"containsNull"` } -//GetKey returns Key +// GetKey returns Key func (m MapType) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m MapType) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m MapType) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m MapType) GetName() *string { return m.Name } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m MapType) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m MapType) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/materialized_composite_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/materialized_composite_type.go index 1900dc6873b..8ceba858c5f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/materialized_composite_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/materialized_composite_type.go @@ -45,32 +45,32 @@ type MaterializedCompositeType struct { ConfigDefinition *ConfigDefinition `mandatory:"false" json:"configDefinition"` } -//GetKey returns Key +// GetKey returns Key func (m MaterializedCompositeType) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m MaterializedCompositeType) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m MaterializedCompositeType) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m MaterializedCompositeType) GetName() *string { return m.Name } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m MaterializedCompositeType) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m MaterializedCompositeType) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/materialized_dynamic_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/materialized_dynamic_field.go index 171023396ad..82789d2a71e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/materialized_dynamic_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/materialized_dynamic_field.go @@ -44,37 +44,37 @@ type MaterializedDynamicField struct { Type *MaterializedCompositeType `mandatory:"false" json:"type"` } -//GetKey returns Key +// GetKey returns Key func (m MaterializedDynamicField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m MaterializedDynamicField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m MaterializedDynamicField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m MaterializedDynamicField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m MaterializedDynamicField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m MaterializedDynamicField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m MaterializedDynamicField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/merge_operator.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/merge_operator.go index c7396ea878f..41e52e47569 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/merge_operator.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/merge_operator.go @@ -62,62 +62,62 @@ type MergeOperator struct { TriggerRule MergeOperatorTriggerRuleEnum `mandatory:"false" json:"triggerRule,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m MergeOperator) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m MergeOperator) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m MergeOperator) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m MergeOperator) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m MergeOperator) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m MergeOperator) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m MergeOperator) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m MergeOperator) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m MergeOperator) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m MergeOperator) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m MergeOperator) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m MergeOperator) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/minus.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/minus.go index 0c313ea0465..5768b45ece0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/minus.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/minus.go @@ -60,62 +60,62 @@ type Minus struct { MinusType MinusMinusTypeEnum `mandatory:"false" json:"minusType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m Minus) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Minus) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Minus) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Minus) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Minus) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Minus) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Minus) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Minus) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Minus) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Minus) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Minus) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Minus) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/monthly_frequency_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/monthly_frequency_details.go index 28172e74817..1b8a94b73d0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/monthly_frequency_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/monthly_frequency_details.go @@ -31,7 +31,7 @@ type MonthlyFrequencyDetails struct { Frequency AbstractFrequencyDetailsFrequencyEnum `mandatory:"false" json:"frequency,omitempty"` } -//GetFrequency returns Frequency +// GetFrequency returns Frequency func (m MonthlyFrequencyDetails) GetFrequency() AbstractFrequencyDetailsFrequencyEnum { return m.Frequency } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/monthly_rule_frequency_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/monthly_rule_frequency_details.go index 5f345f1cbd0..c19d9927ac2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/monthly_rule_frequency_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/monthly_rule_frequency_details.go @@ -34,7 +34,7 @@ type MonthlyRuleFrequencyDetails struct { Frequency AbstractFrequencyDetailsFrequencyEnum `mandatory:"false" json:"frequency,omitempty"` } -//GetFrequency returns Frequency +// GetFrequency returns Frequency func (m MonthlyRuleFrequencyDetails) GetFrequency() AbstractFrequencyDetailsFrequencyEnum { return m.Frequency } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/name_list_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/name_list_rule.go index 57f6d4c15bd..cbb0de46065 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/name_list_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/name_list_rule.go @@ -60,37 +60,37 @@ type NameListRule struct { RuleType NameListRuleRuleTypeEnum `mandatory:"false" json:"ruleType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m NameListRule) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m NameListRule) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m NameListRule) GetParentRef() *ParentReference { return m.ParentRef } -//GetIsJavaRegexSyntax returns IsJavaRegexSyntax +// GetIsJavaRegexSyntax returns IsJavaRegexSyntax func (m NameListRule) GetIsJavaRegexSyntax() *bool { return m.IsJavaRegexSyntax } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m NameListRule) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m NameListRule) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m NameListRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/name_pattern_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/name_pattern_rule.go index 2255bdde4b9..e72a0fe110f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/name_pattern_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/name_pattern_rule.go @@ -60,37 +60,37 @@ type NamePatternRule struct { RuleType NamePatternRuleRuleTypeEnum `mandatory:"false" json:"ruleType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m NamePatternRule) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m NamePatternRule) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m NamePatternRule) GetParentRef() *ParentReference { return m.ParentRef } -//GetIsJavaRegexSyntax returns IsJavaRegexSyntax +// GetIsJavaRegexSyntax returns IsJavaRegexSyntax func (m NamePatternRule) GetIsJavaRegexSyntax() *bool { return m.IsJavaRegexSyntax } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m NamePatternRule) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m NamePatternRule) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m NamePatternRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/named_entity_map.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/named_entity_map.go index 6bd074f2dca..171fa7e4638 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/named_entity_map.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/named_entity_map.go @@ -42,7 +42,7 @@ type NamedEntityMap struct { ObjectStatus *int `mandatory:"false" json:"objectStatus"` } -//GetDescription returns Description +// GetDescription returns Description func (m NamedEntityMap) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/operation_from_api.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/operation_from_api.go index 8a1fae0ce58..765d38a461d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/operation_from_api.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/operation_from_api.go @@ -49,7 +49,7 @@ type OperationFromApi struct { OperationAttributes *GenericRestApiAttributes `mandatory:"false" json:"operationAttributes"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m OperationFromApi) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/operation_from_procedure.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/operation_from_procedure.go index ff1699697bd..7c3c4eb64d9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/operation_from_procedure.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/operation_from_procedure.go @@ -46,7 +46,7 @@ type OperationFromProcedure struct { ObjectStatus *int `mandatory:"false" json:"objectStatus"` } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m OperationFromProcedure) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_field.go index 46288b4a94a..393e96a39df 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_field.go @@ -44,37 +44,37 @@ type OutputField struct { Labels []string `mandatory:"false" json:"labels"` } -//GetKey returns Key +// GetKey returns Key func (m OutputField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m OutputField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m OutputField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m OutputField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m OutputField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m OutputField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m OutputField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_link.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_link.go index 5b80f1e969d..7f0ac801333 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_link.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_link.go @@ -40,32 +40,32 @@ type OutputLink struct { ToLinks []string `mandatory:"false" json:"toLinks"` } -//GetKey returns Key +// GetKey returns Key func (m OutputLink) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m OutputLink) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m OutputLink) GetParentRef() *ParentReference { return m.ParentRef } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m OutputLink) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m OutputLink) GetDescription() *string { return m.Description } -//GetPort returns Port +// GetPort returns Port func (m OutputLink) GetPort() *string { return m.Port } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_port.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_port.go index b6e9a390bc2..52e6accd65b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_port.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/output_port.go @@ -45,37 +45,37 @@ type OutputPort struct { PortType OutputPortPortTypeEnum `mandatory:"false" json:"portType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m OutputPort) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m OutputPort) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m OutputPort) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m OutputPort) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m OutputPort) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m OutputPort) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m OutputPort) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/parameter.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/parameter.go index 45dfecb709f..e7363fe6bf4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/parameter.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/parameter.go @@ -63,37 +63,37 @@ type Parameter struct { OutputAggregationType ParameterOutputAggregationTypeEnum `mandatory:"false" json:"outputAggregationType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m Parameter) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Parameter) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Parameter) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m Parameter) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Parameter) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m Parameter) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Parameter) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/parquet_format_attribute.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/parquet_format_attribute.go index e85d9350c39..33ee398bfda 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/parquet_format_attribute.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/parquet_format_attribute.go @@ -26,7 +26,7 @@ type ParquetFormatAttribute struct { Compression *string `mandatory:"false" json:"compression"` } -//GetIsFilePattern returns IsFilePattern +// GetIsFilePattern returns IsFilePattern func (m ParquetFormatAttribute) GetIsFilePattern() *bool { return m.IsFilePattern } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/pivot.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/pivot.go index 14fee5c7088..3a0c820be79 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/pivot.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/pivot.go @@ -60,62 +60,62 @@ type Pivot struct { PivotKeys *PivotKeys `mandatory:"false" json:"pivotKeys"` } -//GetKey returns Key +// GetKey returns Key func (m Pivot) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Pivot) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Pivot) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Pivot) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Pivot) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Pivot) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Pivot) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Pivot) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Pivot) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Pivot) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Pivot) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Pivot) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/pivot_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/pivot_field.go index 04c2a4ac2ba..d42b53b0c26 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/pivot_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/pivot_field.go @@ -48,37 +48,37 @@ type PivotField struct { ColumnNamePattern *string `mandatory:"false" json:"columnNamePattern"` } -//GetKey returns Key +// GetKey returns Key func (m PivotField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m PivotField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m PivotField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m PivotField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m PivotField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m PivotField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m PivotField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/primary_key.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/primary_key.go index 6d11a5e2bb9..f5f8a9e3333 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/primary_key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/primary_key.go @@ -37,32 +37,32 @@ type PrimaryKey struct { ObjectStatus *int `mandatory:"false" json:"objectStatus"` } -//GetKey returns Key +// GetKey returns Key func (m PrimaryKey) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m PrimaryKey) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m PrimaryKey) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m PrimaryKey) GetName() *string { return m.Name } -//GetAttributeRefs returns AttributeRefs +// GetAttributeRefs returns AttributeRefs func (m PrimaryKey) GetAttributeRefs() []KeyAttribute { return m.AttributeRefs } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m PrimaryKey) GetObjectStatus() *int { return m.ObjectStatus } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/projection.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/projection.go index 0cd91769772..dcc463cb479 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/projection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/projection.go @@ -54,62 +54,62 @@ type Projection struct { OpConfigValues *ConfigValues `mandatory:"false" json:"opConfigValues"` } -//GetKey returns Key +// GetKey returns Key func (m Projection) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Projection) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Projection) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Projection) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Projection) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Projection) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Projection) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Projection) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Projection) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Projection) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Projection) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Projection) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/proxy_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/proxy_field.go index 6a70865ae45..de1906bebe4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/proxy_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/proxy_field.go @@ -49,37 +49,37 @@ type ProxyField struct { Labels []string `mandatory:"false" json:"labels"` } -//GetKey returns Key +// GetKey returns Key func (m ProxyField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ProxyField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ProxyField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m ProxyField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ProxyField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m ProxyField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ProxyField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_data_loader_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_data_loader_task.go index 2c2ed8dadab..75c028ccc1c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_data_loader_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_data_loader_task.go @@ -66,42 +66,42 @@ type PublishedObjectFromDataLoaderTask struct { ParallelLoadLimit *int `mandatory:"false" json:"parallelLoadLimit"` } -//GetKey returns Key +// GetKey returns Key func (m PublishedObjectFromDataLoaderTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m PublishedObjectFromDataLoaderTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m PublishedObjectFromDataLoaderTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m PublishedObjectFromDataLoaderTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m PublishedObjectFromDataLoaderTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m PublishedObjectFromDataLoaderTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m PublishedObjectFromDataLoaderTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m PublishedObjectFromDataLoaderTask) GetIdentifier() *string { return m.Identifier } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_integration_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_integration_task.go index 50012f2062c..ff58c576289 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_integration_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_integration_task.go @@ -58,42 +58,42 @@ type PublishedObjectFromIntegrationTask struct { DataFlow *DataFlow `mandatory:"false" json:"dataFlow"` } -//GetKey returns Key +// GetKey returns Key func (m PublishedObjectFromIntegrationTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m PublishedObjectFromIntegrationTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m PublishedObjectFromIntegrationTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m PublishedObjectFromIntegrationTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m PublishedObjectFromIntegrationTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m PublishedObjectFromIntegrationTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m PublishedObjectFromIntegrationTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m PublishedObjectFromIntegrationTask) GetIdentifier() *string { return m.Identifier } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_pipeline_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_pipeline_task.go index 81162d109c8..7180c4dd2ed 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_pipeline_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_pipeline_task.go @@ -58,42 +58,42 @@ type PublishedObjectFromPipelineTask struct { Pipeline *Pipeline `mandatory:"false" json:"pipeline"` } -//GetKey returns Key +// GetKey returns Key func (m PublishedObjectFromPipelineTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m PublishedObjectFromPipelineTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m PublishedObjectFromPipelineTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m PublishedObjectFromPipelineTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m PublishedObjectFromPipelineTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m PublishedObjectFromPipelineTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m PublishedObjectFromPipelineTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m PublishedObjectFromPipelineTask) GetIdentifier() *string { return m.Identifier } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_pipeline_task_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_pipeline_task_summary.go index c35aec54f37..31c33906ec0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_pipeline_task_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_from_pipeline_task_summary.go @@ -60,47 +60,47 @@ type PublishedObjectFromPipelineTaskSummary struct { Pipeline *Pipeline `mandatory:"false" json:"pipeline"` } -//GetKey returns Key +// GetKey returns Key func (m PublishedObjectFromPipelineTaskSummary) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m PublishedObjectFromPipelineTaskSummary) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m PublishedObjectFromPipelineTaskSummary) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m PublishedObjectFromPipelineTaskSummary) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m PublishedObjectFromPipelineTaskSummary) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m PublishedObjectFromPipelineTaskSummary) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m PublishedObjectFromPipelineTaskSummary) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m PublishedObjectFromPipelineTaskSummary) GetIdentifier() *string { return m.Identifier } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m PublishedObjectFromPipelineTaskSummary) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_summary_from_data_loader_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_summary_from_data_loader_task.go index 0cd9a9851c7..4f4076c48bf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_summary_from_data_loader_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_summary_from_data_loader_task.go @@ -60,47 +60,47 @@ type PublishedObjectSummaryFromDataLoaderTask struct { DataFlow *DataFlow `mandatory:"false" json:"dataFlow"` } -//GetKey returns Key +// GetKey returns Key func (m PublishedObjectSummaryFromDataLoaderTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m PublishedObjectSummaryFromDataLoaderTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m PublishedObjectSummaryFromDataLoaderTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m PublishedObjectSummaryFromDataLoaderTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m PublishedObjectSummaryFromDataLoaderTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m PublishedObjectSummaryFromDataLoaderTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m PublishedObjectSummaryFromDataLoaderTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m PublishedObjectSummaryFromDataLoaderTask) GetIdentifier() *string { return m.Identifier } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m PublishedObjectSummaryFromDataLoaderTask) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_summary_from_integration_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_summary_from_integration_task.go index 9d3653ddaea..70262e3a22c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_summary_from_integration_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/published_object_summary_from_integration_task.go @@ -60,47 +60,47 @@ type PublishedObjectSummaryFromIntegrationTask struct { DataFlow *DataFlow `mandatory:"false" json:"dataFlow"` } -//GetKey returns Key +// GetKey returns Key func (m PublishedObjectSummaryFromIntegrationTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m PublishedObjectSummaryFromIntegrationTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m PublishedObjectSummaryFromIntegrationTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m PublishedObjectSummaryFromIntegrationTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m PublishedObjectSummaryFromIntegrationTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m PublishedObjectSummaryFromIntegrationTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m PublishedObjectSummaryFromIntegrationTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m PublishedObjectSummaryFromIntegrationTask) GetIdentifier() *string { return m.Identifier } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m PublishedObjectSummaryFromIntegrationTask) GetMetadata() *ObjectMetadata { return m.Metadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/read_operation_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/read_operation_config.go index 91f3e14b038..3eeac7f404a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/read_operation_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/read_operation_config.go @@ -48,17 +48,17 @@ type ReadOperationConfig struct { ObjectStatus *int `mandatory:"false" json:"objectStatus"` } -//GetMetadataConfigProperties returns MetadataConfigProperties +// GetMetadataConfigProperties returns MetadataConfigProperties func (m ReadOperationConfig) GetMetadataConfigProperties() map[string]string { return m.MetadataConfigProperties } -//GetDerivedAttributes returns DerivedAttributes +// GetDerivedAttributes returns DerivedAttributes func (m ReadOperationConfig) GetDerivedAttributes() map[string]string { return m.DerivedAttributes } -//GetCallAttribute returns CallAttribute +// GetCallAttribute returns CallAttribute func (m ReadOperationConfig) GetCallAttribute() *BipCallAttribute { return m.CallAttribute } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/referenced_data_object_from_api.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/referenced_data_object_from_api.go index d232f35c52e..18a09aa22ac 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/referenced_data_object_from_api.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/referenced_data_object_from_api.go @@ -43,37 +43,37 @@ type ReferencedDataObjectFromApi struct { Key *string `mandatory:"false" json:"key"` } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ReferencedDataObjectFromApi) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ReferencedDataObjectFromApi) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ReferencedDataObjectFromApi) GetName() *string { return m.Name } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ReferencedDataObjectFromApi) GetObjectVersion() *int { return m.ObjectVersion } -//GetResourceName returns ResourceName +// GetResourceName returns ResourceName func (m ReferencedDataObjectFromApi) GetResourceName() *string { return m.ResourceName } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ReferencedDataObjectFromApi) GetObjectStatus() *int { return m.ObjectStatus } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m ReferencedDataObjectFromApi) GetExternalKey() *string { return m.ExternalKey } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/referenced_data_object_from_procedure.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/referenced_data_object_from_procedure.go index 7a5cb7c57e0..75e2594c55f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/referenced_data_object_from_procedure.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/referenced_data_object_from_procedure.go @@ -43,37 +43,37 @@ type ReferencedDataObjectFromProcedure struct { Key *string `mandatory:"false" json:"key"` } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ReferencedDataObjectFromProcedure) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ReferencedDataObjectFromProcedure) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m ReferencedDataObjectFromProcedure) GetName() *string { return m.Name } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m ReferencedDataObjectFromProcedure) GetObjectVersion() *int { return m.ObjectVersion } -//GetResourceName returns ResourceName +// GetResourceName returns ResourceName func (m ReferencedDataObjectFromProcedure) GetResourceName() *string { return m.ResourceName } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ReferencedDataObjectFromProcedure) GetObjectStatus() *int { return m.ObjectStatus } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m ReferencedDataObjectFromProcedure) GetExternalKey() *string { return m.ExternalKey } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rename_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rename_rule.go index 24fc7e583cb..44f49eb0faa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rename_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rename_rule.go @@ -48,37 +48,37 @@ type RenameRule struct { ToName *string `mandatory:"false" json:"toName"` } -//GetKey returns Key +// GetKey returns Key func (m RenameRule) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m RenameRule) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m RenameRule) GetParentRef() *ParentReference { return m.ParentRef } -//GetIsJavaRegexSyntax returns IsJavaRegexSyntax +// GetIsJavaRegexSyntax returns IsJavaRegexSyntax func (m RenameRule) GetIsJavaRegexSyntax() *bool { return m.IsJavaRegexSyntax } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m RenameRule) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m RenameRule) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m RenameRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/resource_principal_auth_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/resource_principal_auth_config.go index e8e48dac5ba..a9751b42926 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/resource_principal_auth_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/resource_principal_auth_config.go @@ -31,17 +31,17 @@ type ResourcePrincipalAuthConfig struct { ResourcePrincipalSource ResourcePrincipalAuthConfigResourcePrincipalSourceEnum `mandatory:"false" json:"resourcePrincipalSource,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m ResourcePrincipalAuthConfig) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ResourcePrincipalAuthConfig) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ResourcePrincipalAuthConfig) GetParentRef() *ParentReference { return m.ParentRef } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rule_based_entity_map.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rule_based_entity_map.go index b4e371f95e5..4d0e2c7a5a7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rule_based_entity_map.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rule_based_entity_map.go @@ -48,7 +48,7 @@ type RuleBasedEntityMap struct { MapType RuleBasedEntityMapMapTypeEnum `mandatory:"false" json:"mapType,omitempty"` } -//GetDescription returns Description +// GetDescription returns Description func (m RuleBasedEntityMap) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rule_based_field_map.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rule_based_field_map.go index 4b9e2317902..e693813a570 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rule_based_field_map.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/rule_based_field_map.go @@ -52,7 +52,7 @@ type RuleBasedFieldMap struct { MapType RuleBasedFieldMapMapTypeEnum `mandatory:"false" json:"mapType,omitempty"` } -//GetDescription returns Description +// GetDescription returns Description func (m RuleBasedFieldMap) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/shape.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/shape.go index 953377324c7..06be9cc423f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/shape.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/shape.go @@ -41,37 +41,37 @@ type Shape struct { Type BaseType `mandatory:"false" json:"type"` } -//GetKey returns Key +// GetKey returns Key func (m Shape) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Shape) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Shape) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m Shape) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Shape) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m Shape) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Shape) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/shape_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/shape_field.go index 2213d2e9fa7..a93e80e45d9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/shape_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/shape_field.go @@ -47,37 +47,37 @@ type ShapeField struct { NativeShapeField *NativeShapeField `mandatory:"false" json:"nativeShapeField"` } -//GetKey returns Key +// GetKey returns Key func (m ShapeField) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m ShapeField) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m ShapeField) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m ShapeField) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m ShapeField) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m ShapeField) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ShapeField) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/sort_oper.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/sort_oper.go index 22ca05cfd7f..fa8ccc8a305 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/sort_oper.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/sort_oper.go @@ -56,62 +56,62 @@ type SortOper struct { SortKey *SortKey `mandatory:"false" json:"sortKey"` } -//GetKey returns Key +// GetKey returns Key func (m SortOper) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m SortOper) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m SortOper) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m SortOper) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m SortOper) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m SortOper) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m SortOper) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m SortOper) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m SortOper) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m SortOper) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m SortOper) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m SortOper) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/source.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/source.go index 5b0d93db4bd..77325829d37 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/source.go @@ -71,62 +71,62 @@ type Source struct { ReadOperationConfig *ReadOperationConfig `mandatory:"false" json:"readOperationConfig"` } -//GetKey returns Key +// GetKey returns Key func (m Source) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Source) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Source) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Source) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Source) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Source) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Source) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Source) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Source) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Source) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Source) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Source) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/split.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/split.go index fbd38ca7203..b7933b42c9f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/split.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/split.go @@ -57,62 +57,62 @@ type Split struct { DataRoutingStrategy SplitDataRoutingStrategyEnum `mandatory:"false" json:"dataRoutingStrategy,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m Split) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Split) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Split) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Split) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Split) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Split) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Split) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Split) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Split) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Split) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Split) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Split) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/start_operator.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/start_operator.go index f40f19571a5..768ba0b07fb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/start_operator.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/start_operator.go @@ -54,62 +54,62 @@ type StartOperator struct { OpConfigValues *ConfigValues `mandatory:"false" json:"opConfigValues"` } -//GetKey returns Key +// GetKey returns Key func (m StartOperator) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m StartOperator) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m StartOperator) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m StartOperator) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m StartOperator) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m StartOperator) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m StartOperator) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m StartOperator) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m StartOperator) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m StartOperator) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m StartOperator) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m StartOperator) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/target.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/target.go index e9400f2848f..b379250be41 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/target.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/target.go @@ -86,62 +86,62 @@ type Target struct { DataProperty TargetDataPropertyEnum `mandatory:"false" json:"dataProperty,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m Target) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Target) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Target) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Target) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Target) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Target) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Target) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Target) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Target) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Target) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Target) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Target) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_data_loader_task_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_data_loader_task_details.go index bbd2e8e320f..773b8260890 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_data_loader_task_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_data_loader_task_details.go @@ -73,82 +73,82 @@ type TaskFromDataLoaderTaskDetails struct { ParallelLoadLimit *int `mandatory:"false" json:"parallelLoadLimit"` } -//GetKey returns Key +// GetKey returns Key func (m TaskFromDataLoaderTaskDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskFromDataLoaderTaskDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskFromDataLoaderTaskDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskFromDataLoaderTaskDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskFromDataLoaderTaskDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskFromDataLoaderTaskDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskFromDataLoaderTaskDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskFromDataLoaderTaskDetails) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskFromDataLoaderTaskDetails) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskFromDataLoaderTaskDetails) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskFromDataLoaderTaskDetails) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskFromDataLoaderTaskDetails) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskFromDataLoaderTaskDetails) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskFromDataLoaderTaskDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskFromDataLoaderTaskDetails) GetKeyMap() map[string]string { return m.KeyMap } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m TaskFromDataLoaderTaskDetails) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_integration_task_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_integration_task_details.go index b3f525f683b..59691d81025 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_integration_task_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_integration_task_details.go @@ -65,82 +65,82 @@ type TaskFromIntegrationTaskDetails struct { DataFlow *DataFlow `mandatory:"false" json:"dataFlow"` } -//GetKey returns Key +// GetKey returns Key func (m TaskFromIntegrationTaskDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskFromIntegrationTaskDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskFromIntegrationTaskDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskFromIntegrationTaskDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskFromIntegrationTaskDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskFromIntegrationTaskDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskFromIntegrationTaskDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskFromIntegrationTaskDetails) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskFromIntegrationTaskDetails) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskFromIntegrationTaskDetails) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskFromIntegrationTaskDetails) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskFromIntegrationTaskDetails) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskFromIntegrationTaskDetails) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskFromIntegrationTaskDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskFromIntegrationTaskDetails) GetKeyMap() map[string]string { return m.KeyMap } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m TaskFromIntegrationTaskDetails) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_oci_dataflow_task_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_oci_dataflow_task_details.go index 47c5546576b..f36ca581a69 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_oci_dataflow_task_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_oci_dataflow_task_details.go @@ -65,82 +65,82 @@ type TaskFromOciDataflowTaskDetails struct { DataflowApplication *DataflowApplication `mandatory:"false" json:"dataflowApplication"` } -//GetKey returns Key +// GetKey returns Key func (m TaskFromOciDataflowTaskDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskFromOciDataflowTaskDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskFromOciDataflowTaskDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskFromOciDataflowTaskDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskFromOciDataflowTaskDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskFromOciDataflowTaskDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskFromOciDataflowTaskDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskFromOciDataflowTaskDetails) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskFromOciDataflowTaskDetails) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskFromOciDataflowTaskDetails) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskFromOciDataflowTaskDetails) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskFromOciDataflowTaskDetails) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskFromOciDataflowTaskDetails) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskFromOciDataflowTaskDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskFromOciDataflowTaskDetails) GetKeyMap() map[string]string { return m.KeyMap } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m TaskFromOciDataflowTaskDetails) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_pipeline_task_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_pipeline_task_details.go index 73002eab7de..91101c71eb9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_pipeline_task_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_pipeline_task_details.go @@ -65,82 +65,82 @@ type TaskFromPipelineTaskDetails struct { Pipeline *Pipeline `mandatory:"false" json:"pipeline"` } -//GetKey returns Key +// GetKey returns Key func (m TaskFromPipelineTaskDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskFromPipelineTaskDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskFromPipelineTaskDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskFromPipelineTaskDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskFromPipelineTaskDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskFromPipelineTaskDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskFromPipelineTaskDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskFromPipelineTaskDetails) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskFromPipelineTaskDetails) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskFromPipelineTaskDetails) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskFromPipelineTaskDetails) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskFromPipelineTaskDetails) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskFromPipelineTaskDetails) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskFromPipelineTaskDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskFromPipelineTaskDetails) GetKeyMap() map[string]string { return m.KeyMap } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m TaskFromPipelineTaskDetails) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_rest_task_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_rest_task_details.go index 8df0d52e7a0..a6a845a4365 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_rest_task_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_rest_task_details.go @@ -95,82 +95,82 @@ type TaskFromRestTaskDetails struct { CancelMethodType TaskFromRestTaskDetailsCancelMethodTypeEnum `mandatory:"false" json:"cancelMethodType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m TaskFromRestTaskDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskFromRestTaskDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskFromRestTaskDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskFromRestTaskDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskFromRestTaskDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskFromRestTaskDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskFromRestTaskDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskFromRestTaskDetails) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskFromRestTaskDetails) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskFromRestTaskDetails) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskFromRestTaskDetails) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskFromRestTaskDetails) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskFromRestTaskDetails) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskFromRestTaskDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskFromRestTaskDetails) GetKeyMap() map[string]string { return m.KeyMap } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m TaskFromRestTaskDetails) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_sql_task_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_sql_task_details.go index e04a2ec2a0e..c5a4c58ab8c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_sql_task_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_from_sql_task_details.go @@ -71,82 +71,82 @@ type TaskFromSqlTaskDetails struct { SqlScriptType TaskFromSqlTaskDetailsSqlScriptTypeEnum `mandatory:"false" json:"sqlScriptType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m TaskFromSqlTaskDetails) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskFromSqlTaskDetails) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskFromSqlTaskDetails) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskFromSqlTaskDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskFromSqlTaskDetails) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskFromSqlTaskDetails) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskFromSqlTaskDetails) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskFromSqlTaskDetails) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskFromSqlTaskDetails) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskFromSqlTaskDetails) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskFromSqlTaskDetails) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskFromSqlTaskDetails) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskFromSqlTaskDetails) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskFromSqlTaskDetails) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskFromSqlTaskDetails) GetKeyMap() map[string]string { return m.KeyMap } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m TaskFromSqlTaskDetails) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_operator.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_operator.go index 017558807b7..2b417c702ce 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_operator.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_operator.go @@ -82,62 +82,62 @@ type TaskOperator struct { TriggerRule TaskOperatorTriggerRuleEnum `mandatory:"false" json:"triggerRule,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m TaskOperator) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskOperator) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskOperator) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskOperator) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskOperator) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskOperator) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskOperator) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskOperator) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskOperator) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskOperator) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskOperator) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskOperator) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_data_loader_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_data_loader_task.go index 8d81a03716b..ca75ea91857 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_data_loader_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_data_loader_task.go @@ -71,77 +71,77 @@ type TaskSummaryFromDataLoaderTask struct { ParallelLoadLimit *int `mandatory:"false" json:"parallelLoadLimit"` } -//GetKey returns Key +// GetKey returns Key func (m TaskSummaryFromDataLoaderTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskSummaryFromDataLoaderTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskSummaryFromDataLoaderTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskSummaryFromDataLoaderTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskSummaryFromDataLoaderTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskSummaryFromDataLoaderTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskSummaryFromDataLoaderTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskSummaryFromDataLoaderTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskSummaryFromDataLoaderTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskSummaryFromDataLoaderTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskSummaryFromDataLoaderTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskSummaryFromDataLoaderTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskSummaryFromDataLoaderTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskSummaryFromDataLoaderTask) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskSummaryFromDataLoaderTask) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_integration_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_integration_task.go index 28659355ef1..a90244a15b1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_integration_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_integration_task.go @@ -63,77 +63,77 @@ type TaskSummaryFromIntegrationTask struct { DataFlow *DataFlow `mandatory:"false" json:"dataFlow"` } -//GetKey returns Key +// GetKey returns Key func (m TaskSummaryFromIntegrationTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskSummaryFromIntegrationTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskSummaryFromIntegrationTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskSummaryFromIntegrationTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskSummaryFromIntegrationTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskSummaryFromIntegrationTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskSummaryFromIntegrationTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskSummaryFromIntegrationTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskSummaryFromIntegrationTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskSummaryFromIntegrationTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskSummaryFromIntegrationTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskSummaryFromIntegrationTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskSummaryFromIntegrationTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskSummaryFromIntegrationTask) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskSummaryFromIntegrationTask) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_oci_dataflow_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_oci_dataflow_task.go index 32d63a0255e..92bd52b4b39 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_oci_dataflow_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_oci_dataflow_task.go @@ -63,77 +63,77 @@ type TaskSummaryFromOciDataflowTask struct { DataflowApplication *DataflowApplication `mandatory:"false" json:"dataflowApplication"` } -//GetKey returns Key +// GetKey returns Key func (m TaskSummaryFromOciDataflowTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskSummaryFromOciDataflowTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskSummaryFromOciDataflowTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskSummaryFromOciDataflowTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskSummaryFromOciDataflowTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskSummaryFromOciDataflowTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskSummaryFromOciDataflowTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskSummaryFromOciDataflowTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskSummaryFromOciDataflowTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskSummaryFromOciDataflowTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskSummaryFromOciDataflowTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskSummaryFromOciDataflowTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskSummaryFromOciDataflowTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskSummaryFromOciDataflowTask) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskSummaryFromOciDataflowTask) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_pipeline_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_pipeline_task.go index e6dc6861700..e572b434faa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_pipeline_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_pipeline_task.go @@ -63,77 +63,77 @@ type TaskSummaryFromPipelineTask struct { Pipeline *Pipeline `mandatory:"false" json:"pipeline"` } -//GetKey returns Key +// GetKey returns Key func (m TaskSummaryFromPipelineTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskSummaryFromPipelineTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskSummaryFromPipelineTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskSummaryFromPipelineTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskSummaryFromPipelineTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskSummaryFromPipelineTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskSummaryFromPipelineTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskSummaryFromPipelineTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskSummaryFromPipelineTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskSummaryFromPipelineTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskSummaryFromPipelineTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskSummaryFromPipelineTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskSummaryFromPipelineTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskSummaryFromPipelineTask) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskSummaryFromPipelineTask) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_rest_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_rest_task.go index 36559af0239..042f591cf53 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_rest_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_rest_task.go @@ -90,77 +90,77 @@ type TaskSummaryFromRestTask struct { CancelMethodType TaskSummaryFromRestTaskCancelMethodTypeEnum `mandatory:"false" json:"cancelMethodType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m TaskSummaryFromRestTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskSummaryFromRestTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskSummaryFromRestTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskSummaryFromRestTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskSummaryFromRestTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskSummaryFromRestTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskSummaryFromRestTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskSummaryFromRestTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskSummaryFromRestTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskSummaryFromRestTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskSummaryFromRestTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskSummaryFromRestTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskSummaryFromRestTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskSummaryFromRestTask) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskSummaryFromRestTask) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_sql_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_sql_task.go index e4881ca4eb1..2d321eeebff 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_sql_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/task_summary_from_sql_task.go @@ -69,77 +69,77 @@ type TaskSummaryFromSqlTask struct { SqlScriptType TaskSummaryFromSqlTaskSqlScriptTypeEnum `mandatory:"false" json:"sqlScriptType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m TaskSummaryFromSqlTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TaskSummaryFromSqlTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TaskSummaryFromSqlTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m TaskSummaryFromSqlTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TaskSummaryFromSqlTask) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m TaskSummaryFromSqlTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TaskSummaryFromSqlTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m TaskSummaryFromSqlTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m TaskSummaryFromSqlTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m TaskSummaryFromSqlTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m TaskSummaryFromSqlTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m TaskSummaryFromSqlTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m TaskSummaryFromSqlTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetMetadata returns Metadata +// GetMetadata returns Metadata func (m TaskSummaryFromSqlTask) GetMetadata() *ObjectMetadata { return m.Metadata } -//GetKeyMap returns KeyMap +// GetKeyMap returns KeyMap func (m TaskSummaryFromSqlTask) GetKeyMap() map[string]string { return m.KeyMap } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/type_list_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/type_list_rule.go index 552ec1980d4..c983e28e656 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/type_list_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/type_list_rule.go @@ -60,37 +60,37 @@ type TypeListRule struct { RuleType TypeListRuleRuleTypeEnum `mandatory:"false" json:"ruleType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m TypeListRule) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TypeListRule) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TypeListRule) GetParentRef() *ParentReference { return m.ParentRef } -//GetIsJavaRegexSyntax returns IsJavaRegexSyntax +// GetIsJavaRegexSyntax returns IsJavaRegexSyntax func (m TypeListRule) GetIsJavaRegexSyntax() *bool { return m.IsJavaRegexSyntax } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m TypeListRule) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TypeListRule) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m TypeListRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/typed_expression.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/typed_expression.go index bec1098c564..01636e0d379 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/typed_expression.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/typed_expression.go @@ -45,37 +45,37 @@ type TypedExpression struct { Type *string `mandatory:"false" json:"type"` } -//GetKey returns Key +// GetKey returns Key func (m TypedExpression) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TypedExpression) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TypedExpression) GetParentRef() *ParentReference { return m.ParentRef } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m TypedExpression) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TypedExpression) GetObjectStatus() *int { return m.ObjectStatus } -//GetName returns Name +// GetName returns Name func (m TypedExpression) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TypedExpression) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/typed_name_pattern_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/typed_name_pattern_rule.go index f9a6598b4e9..6cb99c9df3b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/typed_name_pattern_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/typed_name_pattern_rule.go @@ -66,37 +66,37 @@ type TypedNamePatternRule struct { RuleType TypedNamePatternRuleRuleTypeEnum `mandatory:"false" json:"ruleType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m TypedNamePatternRule) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m TypedNamePatternRule) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m TypedNamePatternRule) GetParentRef() *ParentReference { return m.ParentRef } -//GetIsJavaRegexSyntax returns IsJavaRegexSyntax +// GetIsJavaRegexSyntax returns IsJavaRegexSyntax func (m TypedNamePatternRule) GetIsJavaRegexSyntax() *bool { return m.IsJavaRegexSyntax } -//GetConfigValues returns ConfigValues +// GetConfigValues returns ConfigValues func (m TypedNamePatternRule) GetConfigValues() *ConfigValues { return m.ConfigValues } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m TypedNamePatternRule) GetObjectStatus() *int { return m.ObjectStatus } -//GetDescription returns Description +// GetDescription returns Description func (m TypedNamePatternRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/union.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/union.go index be53267dd4c..ab5a74813cf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/union.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/union.go @@ -60,62 +60,62 @@ type Union struct { UnionType UnionUnionTypeEnum `mandatory:"false" json:"unionType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m Union) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m Union) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m Union) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m Union) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Union) GetDescription() *string { return m.Description } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m Union) GetObjectVersion() *int { return m.ObjectVersion } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m Union) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m Union) GetOutputPorts() []TypedObject { return m.OutputPorts } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m Union) GetObjectStatus() *int { return m.ObjectStatus } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m Union) GetIdentifier() *string { return m.Identifier } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m Union) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m Union) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/unique_data_key.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/unique_data_key.go index b54ce1857fa..e885183cb38 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/unique_data_key.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/unique_data_key.go @@ -37,32 +37,32 @@ type UniqueDataKey struct { ObjectStatus *int `mandatory:"false" json:"objectStatus"` } -//GetKey returns Key +// GetKey returns Key func (m UniqueDataKey) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UniqueDataKey) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UniqueDataKey) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UniqueDataKey) GetName() *string { return m.Name } -//GetAttributeRefs returns AttributeRefs +// GetAttributeRefs returns AttributeRefs func (m UniqueDataKey) GetAttributeRefs() []KeyAttribute { return m.AttributeRefs } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UniqueDataKey) GetObjectStatus() *int { return m.ObjectStatus } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_adwc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_adwc.go index 06fede5cdd1..eb0c6e82bee 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_adwc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_adwc.go @@ -62,52 +62,52 @@ type UpdateConnectionFromAdwc struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromAdwc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromAdwc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromAdwc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromAdwc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromAdwc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromAdwc) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromAdwc) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromAdwc) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromAdwc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromAdwc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_amazon_s3.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_amazon_s3.go index 0f82948e1d7..9c7bc8dfce7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_amazon_s3.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_amazon_s3.go @@ -52,52 +52,52 @@ type UpdateConnectionFromAmazonS3 struct { SecretKey *SensitiveAttribute `mandatory:"false" json:"secretKey"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromAmazonS3) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromAmazonS3) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromAmazonS3) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromAmazonS3) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromAmazonS3) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromAmazonS3) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromAmazonS3) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromAmazonS3) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromAmazonS3) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromAmazonS3) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_atp.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_atp.go index 17f33b95742..f9593a7ded7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_atp.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_atp.go @@ -62,52 +62,52 @@ type UpdateConnectionFromAtp struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromAtp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromAtp) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromAtp) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromAtp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromAtp) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromAtp) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromAtp) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromAtp) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromAtp) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromAtp) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_bicc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_bicc.go index 057323be142..605ed6d5b6a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_bicc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_bicc.go @@ -55,52 +55,52 @@ type UpdateConnectionFromBicc struct { DefaultExternalStorage *ExternalStorage `mandatory:"false" json:"defaultExternalStorage"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromBicc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromBicc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromBicc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromBicc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromBicc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromBicc) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromBicc) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromBicc) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromBicc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromBicc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_bip.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_bip.go index 26a03e99dd8..96339e33293 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_bip.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_bip.go @@ -53,52 +53,52 @@ type UpdateConnectionFromBip struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromBip) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromBip) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromBip) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromBip) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromBip) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromBip) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromBip) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromBip) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromBip) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromBip) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_hdfs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_hdfs.go index b490ce20c93..7397bdcf3d3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_hdfs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_hdfs.go @@ -65,52 +65,52 @@ type UpdateConnectionFromHdfs struct { KeyTabContent *SensitiveAttribute `mandatory:"false" json:"keyTabContent"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromHdfs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromHdfs) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromHdfs) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromHdfs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromHdfs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromHdfs) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromHdfs) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromHdfs) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromHdfs) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromHdfs) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_jdbc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_jdbc.go index 3b20c4385d8..13098c64548 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_jdbc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_jdbc.go @@ -56,52 +56,52 @@ type UpdateConnectionFromJdbc struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromJdbc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromJdbc) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromJdbc) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromJdbc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromJdbc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromJdbc) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromJdbc) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromJdbc) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromJdbc) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromJdbc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_lake.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_lake.go index d9112191700..42deeb1fefd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_lake.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_lake.go @@ -48,52 +48,52 @@ type UpdateConnectionFromLake struct { RegistryMetadata *RegistryMetadata `mandatory:"false" json:"registryMetadata"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromLake) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromLake) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromLake) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromLake) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromLake) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromLake) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromLake) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromLake) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromLake) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromLake) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_my_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_my_sql.go index 72a328bec36..1afd595d6bf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_my_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_my_sql.go @@ -56,52 +56,52 @@ type UpdateConnectionFromMySql struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromMySql) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromMySql) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromMySql) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromMySql) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromMySql) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromMySql) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromMySql) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromMySql) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromMySql) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromMySql) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_my_sql_heat_wave.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_my_sql_heat_wave.go index d435e078d37..9c8500a5a7f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_my_sql_heat_wave.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_my_sql_heat_wave.go @@ -56,52 +56,52 @@ type UpdateConnectionFromMySqlHeatWave struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromMySqlHeatWave) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromMySqlHeatWave) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromMySqlHeatWave) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromMySqlHeatWave) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromMySqlHeatWave) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromMySqlHeatWave) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromMySqlHeatWave) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromMySqlHeatWave) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromMySqlHeatWave) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromMySqlHeatWave) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_object_storage.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_object_storage.go index 21f29c0605d..5e6dc63bb55 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_object_storage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_object_storage.go @@ -60,52 +60,52 @@ type UpdateConnectionFromObjectStorage struct { PassPhrase *string `mandatory:"false" json:"passPhrase"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromObjectStorage) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromObjectStorage) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromObjectStorage) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromObjectStorage) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromObjectStorage) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromObjectStorage) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromObjectStorage) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromObjectStorage) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromObjectStorage) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromObjectStorage) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle.go index 79e95318e81..cb36e40b4e9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle.go @@ -56,52 +56,52 @@ type UpdateConnectionFromOracle struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromOracle) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromOracle) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromOracle) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromOracle) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromOracle) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromOracle) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromOracle) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromOracle) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromOracle) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromOracle) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_ebs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_ebs.go index 2d3ae315307..8ab19a293a2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_ebs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_ebs.go @@ -56,52 +56,52 @@ type UpdateConnectionFromOracleEbs struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromOracleEbs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromOracleEbs) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromOracleEbs) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromOracleEbs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromOracleEbs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromOracleEbs) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromOracleEbs) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromOracleEbs) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromOracleEbs) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromOracleEbs) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_people_soft.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_people_soft.go index f9fe31bdc3d..689a0519206 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_people_soft.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_people_soft.go @@ -56,52 +56,52 @@ type UpdateConnectionFromOraclePeopleSoft struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromOraclePeopleSoft) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromOraclePeopleSoft) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromOraclePeopleSoft) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromOraclePeopleSoft) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromOraclePeopleSoft) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromOraclePeopleSoft) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromOraclePeopleSoft) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromOraclePeopleSoft) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromOraclePeopleSoft) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromOraclePeopleSoft) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_siebel.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_siebel.go index 4bae74d0bb2..8717d5325d4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_siebel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_oracle_siebel.go @@ -56,52 +56,52 @@ type UpdateConnectionFromOracleSiebel struct { PasswordSecret *SensitiveAttribute `mandatory:"false" json:"passwordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromOracleSiebel) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromOracleSiebel) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromOracleSiebel) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromOracleSiebel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromOracleSiebel) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromOracleSiebel) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromOracleSiebel) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromOracleSiebel) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromOracleSiebel) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromOracleSiebel) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_rest_basic_auth.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_rest_basic_auth.go index 6026e610bc8..8f73bebb178 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_rest_basic_auth.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_rest_basic_auth.go @@ -56,52 +56,52 @@ type UpdateConnectionFromRestBasicAuth struct { AuthHeader *string `mandatory:"false" json:"authHeader"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromRestBasicAuth) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromRestBasicAuth) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromRestBasicAuth) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromRestBasicAuth) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromRestBasicAuth) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromRestBasicAuth) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromRestBasicAuth) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromRestBasicAuth) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromRestBasicAuth) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromRestBasicAuth) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_rest_no_auth.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_rest_no_auth.go index a1a8e73cdeb..08cfdeb6ce4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_rest_no_auth.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_connection_from_rest_no_auth.go @@ -48,52 +48,52 @@ type UpdateConnectionFromRestNoAuth struct { RegistryMetadata *RegistryMetadata `mandatory:"false" json:"registryMetadata"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateConnectionFromRestNoAuth) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateConnectionFromRestNoAuth) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateConnectionFromRestNoAuth) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateConnectionFromRestNoAuth) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateConnectionFromRestNoAuth) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateConnectionFromRestNoAuth) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateConnectionFromRestNoAuth) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateConnectionFromRestNoAuth) GetIdentifier() *string { return m.Identifier } -//GetConnectionProperties returns ConnectionProperties +// GetConnectionProperties returns ConnectionProperties func (m UpdateConnectionFromRestNoAuth) GetConnectionProperties() []ConnectionProperty { return m.ConnectionProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateConnectionFromRestNoAuth) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_adwc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_adwc.go index 70d7f6dbc7e..d83fd85970c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_adwc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_adwc.go @@ -76,52 +76,52 @@ type UpdateDataAssetFromAdwc struct { DefaultConnection *UpdateConnectionFromAdwc `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromAdwc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromAdwc) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromAdwc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromAdwc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromAdwc) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromAdwc) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromAdwc) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromAdwc) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromAdwc) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromAdwc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_amazon_s3.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_amazon_s3.go index 04153744cca..231835f85df 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_amazon_s3.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_amazon_s3.go @@ -52,52 +52,52 @@ type UpdateDataAssetFromAmazonS3 struct { Region *string `mandatory:"false" json:"region"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromAmazonS3) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromAmazonS3) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromAmazonS3) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromAmazonS3) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromAmazonS3) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromAmazonS3) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromAmazonS3) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromAmazonS3) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromAmazonS3) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromAmazonS3) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_atp.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_atp.go index f516d23919f..fcc01077fc3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_atp.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_atp.go @@ -76,52 +76,52 @@ type UpdateDataAssetFromAtp struct { DefaultConnection *UpdateConnectionFromAtp `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromAtp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromAtp) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromAtp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromAtp) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromAtp) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromAtp) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromAtp) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromAtp) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromAtp) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromAtp) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_fusion_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_fusion_app.go index 123a4eebc07..b3266ed658c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_fusion_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_fusion_app.go @@ -52,52 +52,52 @@ type UpdateDataAssetFromFusionApp struct { ServiceUrl *string `mandatory:"false" json:"serviceUrl"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromFusionApp) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromFusionApp) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromFusionApp) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromFusionApp) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromFusionApp) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromFusionApp) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromFusionApp) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromFusionApp) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromFusionApp) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromFusionApp) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_hdfs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_hdfs.go index 2d86064b665..0b6ac40440b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_hdfs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_hdfs.go @@ -63,52 +63,52 @@ type UpdateDataAssetFromHdfs struct { ValidateCertificate *bool `mandatory:"false" json:"validateCertificate"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromHdfs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromHdfs) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromHdfs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromHdfs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromHdfs) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromHdfs) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromHdfs) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromHdfs) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromHdfs) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromHdfs) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_jdbc.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_jdbc.go index cda179709b7..9a98c4165e1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_jdbc.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_jdbc.go @@ -60,52 +60,52 @@ type UpdateDataAssetFromJdbc struct { DefaultConnection *UpdateConnectionFromJdbc `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromJdbc) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromJdbc) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromJdbc) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromJdbc) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromJdbc) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromJdbc) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromJdbc) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromJdbc) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromJdbc) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromJdbc) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_lake.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_lake.go index aebf200a276..ab30514c4f8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_lake.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_lake.go @@ -60,52 +60,52 @@ type UpdateDataAssetFromLake struct { LakeProxyEndpoint *string `mandatory:"false" json:"lakeProxyEndpoint"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromLake) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromLake) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromLake) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromLake) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromLake) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromLake) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromLake) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromLake) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromLake) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromLake) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_my_sql.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_my_sql.go index 0b03ea2ff99..ad85b5104f8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_my_sql.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_my_sql.go @@ -60,52 +60,52 @@ type UpdateDataAssetFromMySql struct { DefaultConnection *UpdateConnectionFromMySql `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromMySql) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromMySql) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromMySql) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromMySql) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromMySql) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromMySql) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromMySql) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromMySql) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromMySql) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromMySql) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_my_sql_heat_wave.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_my_sql_heat_wave.go index 1c9cdac5372..92a762c9b80 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_my_sql_heat_wave.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_my_sql_heat_wave.go @@ -60,52 +60,52 @@ type UpdateDataAssetFromMySqlHeatWave struct { ServiceName *string `mandatory:"false" json:"serviceName"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromMySqlHeatWave) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromMySqlHeatWave) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromMySqlHeatWave) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromMySqlHeatWave) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromMySqlHeatWave) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromMySqlHeatWave) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromMySqlHeatWave) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromMySqlHeatWave) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromMySqlHeatWave) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromMySqlHeatWave) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_object_storage.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_object_storage.go index 208244e2165..f6d4fa8a448 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_object_storage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_object_storage.go @@ -63,52 +63,52 @@ type UpdateDataAssetFromObjectStorage struct { DefaultConnection *UpdateConnectionFromObjectStorage `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromObjectStorage) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromObjectStorage) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromObjectStorage) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromObjectStorage) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromObjectStorage) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromObjectStorage) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromObjectStorage) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromObjectStorage) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromObjectStorage) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromObjectStorage) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle.go index 05d84730db1..40ea05fd17b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle.go @@ -73,52 +73,52 @@ type UpdateDataAssetFromOracle struct { DefaultConnection *UpdateConnectionFromOracle `mandatory:"false" json:"defaultConnection"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromOracle) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromOracle) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromOracle) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromOracle) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromOracle) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromOracle) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromOracle) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromOracle) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromOracle) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromOracle) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_ebs.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_ebs.go index b4ba2099e45..80e33fe08fb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_ebs.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_ebs.go @@ -70,52 +70,52 @@ type UpdateDataAssetFromOracleEbs struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromOracleEbs) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromOracleEbs) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromOracleEbs) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromOracleEbs) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromOracleEbs) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromOracleEbs) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromOracleEbs) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromOracleEbs) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromOracleEbs) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromOracleEbs) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_people_soft.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_people_soft.go index ecbf56d9c0a..924c00bd581 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_people_soft.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_people_soft.go @@ -70,52 +70,52 @@ type UpdateDataAssetFromOraclePeopleSoft struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromOraclePeopleSoft) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromOraclePeopleSoft) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromOraclePeopleSoft) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromOraclePeopleSoft) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromOraclePeopleSoft) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromOraclePeopleSoft) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromOraclePeopleSoft) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromOraclePeopleSoft) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromOraclePeopleSoft) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromOraclePeopleSoft) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_siebel.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_siebel.go index 021b7ccd70a..c21bed238d4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_siebel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_oracle_siebel.go @@ -70,52 +70,52 @@ type UpdateDataAssetFromOracleSiebel struct { WalletPasswordSecret *SensitiveAttribute `mandatory:"false" json:"walletPasswordSecret"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromOracleSiebel) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromOracleSiebel) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromOracleSiebel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromOracleSiebel) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromOracleSiebel) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromOracleSiebel) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromOracleSiebel) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromOracleSiebel) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromOracleSiebel) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromOracleSiebel) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_rest.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_rest.go index 00674250dde..280e683cdc6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_rest.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_data_asset_from_rest.go @@ -57,52 +57,52 @@ type UpdateDataAssetFromRest struct { RegistryMetadata *RegistryMetadata `mandatory:"false" json:"registryMetadata"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateDataAssetFromRest) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateDataAssetFromRest) GetModelVersion() *string { return m.ModelVersion } -//GetName returns Name +// GetName returns Name func (m UpdateDataAssetFromRest) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDataAssetFromRest) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateDataAssetFromRest) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateDataAssetFromRest) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateDataAssetFromRest) GetIdentifier() *string { return m.Identifier } -//GetExternalKey returns ExternalKey +// GetExternalKey returns ExternalKey func (m UpdateDataAssetFromRest) GetExternalKey() *string { return m.ExternalKey } -//GetAssetProperties returns AssetProperties +// GetAssetProperties returns AssetProperties func (m UpdateDataAssetFromRest) GetAssetProperties() map[string]string { return m.AssetProperties } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateDataAssetFromRest) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_data_loader_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_data_loader_task.go index 03c67b930bb..b8e17479ac6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_data_loader_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_data_loader_task.go @@ -68,72 +68,72 @@ type UpdateTaskFromDataLoaderTask struct { ParallelLoadLimit *int `mandatory:"false" json:"parallelLoadLimit"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateTaskFromDataLoaderTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateTaskFromDataLoaderTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateTaskFromDataLoaderTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateTaskFromDataLoaderTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateTaskFromDataLoaderTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateTaskFromDataLoaderTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateTaskFromDataLoaderTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateTaskFromDataLoaderTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m UpdateTaskFromDataLoaderTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m UpdateTaskFromDataLoaderTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m UpdateTaskFromDataLoaderTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m UpdateTaskFromDataLoaderTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m UpdateTaskFromDataLoaderTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateTaskFromDataLoaderTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_integration_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_integration_task.go index dd64444dce7..0bec8d66aa1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_integration_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_integration_task.go @@ -60,72 +60,72 @@ type UpdateTaskFromIntegrationTask struct { DataFlow *DataFlow `mandatory:"false" json:"dataFlow"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateTaskFromIntegrationTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateTaskFromIntegrationTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateTaskFromIntegrationTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateTaskFromIntegrationTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateTaskFromIntegrationTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateTaskFromIntegrationTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateTaskFromIntegrationTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateTaskFromIntegrationTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m UpdateTaskFromIntegrationTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m UpdateTaskFromIntegrationTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m UpdateTaskFromIntegrationTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m UpdateTaskFromIntegrationTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m UpdateTaskFromIntegrationTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateTaskFromIntegrationTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_oci_dataflow_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_oci_dataflow_task.go index d276ecf0381..b7eb00e8fbf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_oci_dataflow_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_oci_dataflow_task.go @@ -60,72 +60,72 @@ type UpdateTaskFromOciDataflowTask struct { DataflowApplication *DataflowApplication `mandatory:"false" json:"dataflowApplication"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateTaskFromOciDataflowTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateTaskFromOciDataflowTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateTaskFromOciDataflowTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateTaskFromOciDataflowTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateTaskFromOciDataflowTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateTaskFromOciDataflowTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateTaskFromOciDataflowTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateTaskFromOciDataflowTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m UpdateTaskFromOciDataflowTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m UpdateTaskFromOciDataflowTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m UpdateTaskFromOciDataflowTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m UpdateTaskFromOciDataflowTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m UpdateTaskFromOciDataflowTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateTaskFromOciDataflowTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_pipeline_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_pipeline_task.go index 277d12bdba7..d458e490d0a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_pipeline_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_pipeline_task.go @@ -60,72 +60,72 @@ type UpdateTaskFromPipelineTask struct { Pipeline *Pipeline `mandatory:"false" json:"pipeline"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateTaskFromPipelineTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateTaskFromPipelineTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateTaskFromPipelineTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateTaskFromPipelineTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateTaskFromPipelineTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateTaskFromPipelineTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateTaskFromPipelineTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateTaskFromPipelineTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m UpdateTaskFromPipelineTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m UpdateTaskFromPipelineTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m UpdateTaskFromPipelineTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m UpdateTaskFromPipelineTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m UpdateTaskFromPipelineTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateTaskFromPipelineTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_rest_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_rest_task.go index 18129c800c4..1f0bb178e7b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_rest_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_rest_task.go @@ -93,72 +93,72 @@ type UpdateTaskFromRestTask struct { CancelMethodType UpdateTaskFromRestTaskCancelMethodTypeEnum `mandatory:"false" json:"cancelMethodType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateTaskFromRestTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateTaskFromRestTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateTaskFromRestTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateTaskFromRestTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateTaskFromRestTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateTaskFromRestTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateTaskFromRestTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateTaskFromRestTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m UpdateTaskFromRestTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m UpdateTaskFromRestTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m UpdateTaskFromRestTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m UpdateTaskFromRestTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m UpdateTaskFromRestTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateTaskFromRestTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_sql_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_sql_task.go index 5e7b651bb83..6652ad77464 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_sql_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/update_task_from_sql_task.go @@ -66,72 +66,72 @@ type UpdateTaskFromSqlTask struct { SqlScriptType UpdateTaskFromSqlTaskSqlScriptTypeEnum `mandatory:"false" json:"sqlScriptType,omitempty"` } -//GetKey returns Key +// GetKey returns Key func (m UpdateTaskFromSqlTask) GetKey() *string { return m.Key } -//GetModelVersion returns ModelVersion +// GetModelVersion returns ModelVersion func (m UpdateTaskFromSqlTask) GetModelVersion() *string { return m.ModelVersion } -//GetParentRef returns ParentRef +// GetParentRef returns ParentRef func (m UpdateTaskFromSqlTask) GetParentRef() *ParentReference { return m.ParentRef } -//GetName returns Name +// GetName returns Name func (m UpdateTaskFromSqlTask) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateTaskFromSqlTask) GetDescription() *string { return m.Description } -//GetObjectStatus returns ObjectStatus +// GetObjectStatus returns ObjectStatus func (m UpdateTaskFromSqlTask) GetObjectStatus() *int { return m.ObjectStatus } -//GetObjectVersion returns ObjectVersion +// GetObjectVersion returns ObjectVersion func (m UpdateTaskFromSqlTask) GetObjectVersion() *int { return m.ObjectVersion } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m UpdateTaskFromSqlTask) GetIdentifier() *string { return m.Identifier } -//GetInputPorts returns InputPorts +// GetInputPorts returns InputPorts func (m UpdateTaskFromSqlTask) GetInputPorts() []InputPort { return m.InputPorts } -//GetOutputPorts returns OutputPorts +// GetOutputPorts returns OutputPorts func (m UpdateTaskFromSqlTask) GetOutputPorts() []OutputPort { return m.OutputPorts } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m UpdateTaskFromSqlTask) GetParameters() []Parameter { return m.Parameters } -//GetOpConfigValues returns OpConfigValues +// GetOpConfigValues returns OpConfigValues func (m UpdateTaskFromSqlTask) GetOpConfigValues() *ConfigValues { return m.OpConfigValues } -//GetConfigProviderDelegate returns ConfigProviderDelegate +// GetConfigProviderDelegate returns ConfigProviderDelegate func (m UpdateTaskFromSqlTask) GetConfigProviderDelegate() *ConfigProvider { return m.ConfigProviderDelegate } -//GetRegistryMetadata returns RegistryMetadata +// GetRegistryMetadata returns RegistryMetadata func (m UpdateTaskFromSqlTask) GetRegistryMetadata() *RegistryMetadata { return m.RegistryMetadata } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/weekly_frequency_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/weekly_frequency_details.go index 620399f4b4d..582c0997dc7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/weekly_frequency_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/weekly_frequency_details.go @@ -27,7 +27,7 @@ type WeeklyFrequencyDetails struct { Frequency AbstractFrequencyDetailsFrequencyEnum `mandatory:"false" json:"frequency,omitempty"` } -//GetFrequency returns Frequency +// GetFrequency returns Frequency func (m WeeklyFrequencyDetails) GetFrequency() AbstractFrequencyDetailsFrequencyEnum { return m.Frequency } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/write_operation_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/write_operation_config.go index 0c3a7dc76e3..f03c539b558 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/write_operation_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dataintegration/write_operation_config.go @@ -53,17 +53,17 @@ type WriteOperationConfig struct { WriteMode WriteOperationConfigWriteModeEnum `mandatory:"false" json:"writeMode,omitempty"` } -//GetMetadataConfigProperties returns MetadataConfigProperties +// GetMetadataConfigProperties returns MetadataConfigProperties func (m WriteOperationConfig) GetMetadataConfigProperties() map[string]string { return m.MetadataConfigProperties } -//GetDerivedAttributes returns DerivedAttributes +// GetDerivedAttributes returns DerivedAttributes func (m WriteOperationConfig) GetDerivedAttributes() map[string]string { return m.DerivedAttributes } -//GetCallAttribute returns CallAttribute +// GetCallAttribute returns CallAttribute func (m WriteOperationConfig) GetCallAttribute() *BipCallAttribute { return m.CallAttribute } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datalabelingservice/datalabelingservice_datalabelingmanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/datalabelingservice/datalabelingservice_datalabelingmanagement_client.go index 40619f06cb5..713cc5ed6ac 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datalabelingservice/datalabelingservice_datalabelingmanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datalabelingservice/datalabelingservice_datalabelingmanagement_client.go @@ -93,7 +93,7 @@ func (client *DataLabelingManagementClient) ConfigurationProvider() *common.Conf // AddDatasetLabels Add Labels to the Dataset LabelSet until the maximum number of Labels has been reached. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/AddDatasetLabels.go.html to see an example of how to use AddDatasetLabels API. // A default retry strategy applies to this operation AddDatasetLabels() @@ -156,7 +156,7 @@ func (client DataLabelingManagementClient) addDatasetLabels(ctx context.Context, // ChangeDatasetCompartment Moves a Dataset resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/ChangeDatasetCompartment.go.html to see an example of how to use ChangeDatasetCompartment API. // A default retry strategy applies to this operation ChangeDatasetCompartment() @@ -214,7 +214,7 @@ func (client DataLabelingManagementClient) changeDatasetCompartment(ctx context. // CreateDataset Creates a new Dataset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/CreateDataset.go.html to see an example of how to use CreateDataset API. // A default retry strategy applies to this operation CreateDataset() @@ -277,7 +277,7 @@ func (client DataLabelingManagementClient) createDataset(ctx context.Context, re // DeleteDataset Deletes a Dataset resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/DeleteDataset.go.html to see an example of how to use DeleteDataset API. // A default retry strategy applies to this operation DeleteDataset() @@ -335,7 +335,7 @@ func (client DataLabelingManagementClient) deleteDataset(ctx context.Context, re // GenerateDatasetRecords Generates Record resources from the Dataset's data source // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/GenerateDatasetRecords.go.html to see an example of how to use GenerateDatasetRecords API. // A default retry strategy applies to this operation GenerateDatasetRecords() @@ -398,7 +398,7 @@ func (client DataLabelingManagementClient) generateDatasetRecords(ctx context.Co // GetDataset Gets a Dataset by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/GetDataset.go.html to see an example of how to use GetDataset API. // A default retry strategy applies to this operation GetDataset() @@ -456,7 +456,7 @@ func (client DataLabelingManagementClient) getDataset(ctx context.Context, reque // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -514,7 +514,7 @@ func (client DataLabelingManagementClient) getWorkRequest(ctx context.Context, r // ImportPreAnnotatedData Imports records and annotations from dataset files into existing Dataset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/ImportPreAnnotatedData.go.html to see an example of how to use ImportPreAnnotatedData API. // A default retry strategy applies to this operation ImportPreAnnotatedData() @@ -577,7 +577,7 @@ func (client DataLabelingManagementClient) importPreAnnotatedData(ctx context.Co // ListAnnotationFormats These are a static list in a given region. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/ListAnnotationFormats.go.html to see an example of how to use ListAnnotationFormats API. // A default retry strategy applies to this operation ListAnnotationFormats() @@ -635,7 +635,7 @@ func (client DataLabelingManagementClient) listAnnotationFormats(ctx context.Con // ListDatasets Returns a list of Datasets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/ListDatasets.go.html to see an example of how to use ListDatasets API. // A default retry strategy applies to this operation ListDatasets() @@ -693,7 +693,7 @@ func (client DataLabelingManagementClient) listDatasets(ctx context.Context, req // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -751,7 +751,7 @@ func (client DataLabelingManagementClient) listWorkRequestErrors(ctx context.Con // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -809,7 +809,7 @@ func (client DataLabelingManagementClient) listWorkRequestLogs(ctx context.Conte // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -867,7 +867,7 @@ func (client DataLabelingManagementClient) listWorkRequests(ctx context.Context, // RemoveDatasetLabels Removes the labels from the Dataset Labelset. Labels can only be removed if there are no Annotations associated with the Dataset that reference the Label names. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/RemoveDatasetLabels.go.html to see an example of how to use RemoveDatasetLabels API. // A default retry strategy applies to this operation RemoveDatasetLabels() @@ -930,7 +930,7 @@ func (client DataLabelingManagementClient) removeDatasetLabels(ctx context.Conte // RenameDatasetLabels Renames the labels from the Dataset Labelset. Labels that are renamed will be reflected in Annotations associated with the Dataset that reference the Label names. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/RenameDatasetLabels.go.html to see an example of how to use RenameDatasetLabels API. // A default retry strategy applies to this operation RenameDatasetLabels() @@ -994,7 +994,7 @@ func (client DataLabelingManagementClient) renameDatasetLabels(ctx context.Conte // SnapshotDataset Writes the dataset records and annotations in a consolidated format out to an object storage reference for consumption. // While the snapshot takes place, there may be a time while records and annotations cannot be created to ensure the snapshot is a point in time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/SnapshotDataset.go.html to see an example of how to use SnapshotDataset API. // A default retry strategy applies to this operation SnapshotDataset() @@ -1057,7 +1057,7 @@ func (client DataLabelingManagementClient) snapshotDataset(ctx context.Context, // UpdateDataset Updates the Dataset // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datalabelingservice/UpdateDataset.go.html to see an example of how to use UpdateDataset API. // A default retry strategy applies to this operation UpdateDataset() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/autonomous_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/autonomous_database_details.go index 3d0a1081b28..73ebaa5fe71 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/autonomous_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/autonomous_database_details.go @@ -26,7 +26,7 @@ type AutonomousDatabaseDetails struct { InfrastructureType InfrastructureTypeEnum `mandatory:"true" json:"infrastructureType"` } -//GetInfrastructureType returns InfrastructureType +// GetInfrastructureType returns InfrastructureType func (m AutonomousDatabaseDetails) GetInfrastructureType() InfrastructureTypeEnum { return m.InfrastructureType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/compatible_formats_for_data_types.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/compatible_formats_for_data_types.go index fb2d577aeda..76f681e239f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/compatible_formats_for_data_types.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/compatible_formats_for_data_types.go @@ -17,11 +17,12 @@ import ( // CompatibleFormatsForDataTypes A list of basic masking formats compatible with and grouped by the supported data types. The data types are grouped into // the following categories - -// Character - Includes CHAR, NCHAR, VARCHAR2, and NVARCHAR2 -// Numeric - Includes NUMBER, FLOAT, RAW, BINARY_FLOAT, and BINARY_DOUBLE -// Date - Includes DATE and TIMESTAMP -// LOB - Includes BLOB, CLOB, and NCLOB -// All - Includes all the supported data types +// +// Character - Includes CHAR, NCHAR, VARCHAR2, and NVARCHAR2 +// Numeric - Includes NUMBER, FLOAT, RAW, BINARY_FLOAT, and BINARY_DOUBLE +// Date - Includes DATE and TIMESTAMP +// LOB - Includes BLOB, CLOB, and NCLOB +// All - Includes all the supported data types type CompatibleFormatsForDataTypes struct { // An array of lists of basic masking formats compatible with the supported data types. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/create_sensitive_category_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/create_sensitive_category_details.go index b4823ff798a..c7bae690d69 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/create_sensitive_category_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/create_sensitive_category_details.go @@ -43,37 +43,37 @@ type CreateSensitiveCategoryDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateSensitiveCategoryDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateSensitiveCategoryDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetShortName returns ShortName +// GetShortName returns ShortName func (m CreateSensitiveCategoryDetails) GetShortName() *string { return m.ShortName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateSensitiveCategoryDetails) GetDescription() *string { return m.Description } -//GetParentCategoryId returns ParentCategoryId +// GetParentCategoryId returns ParentCategoryId func (m CreateSensitiveCategoryDetails) GetParentCategoryId() *string { return m.ParentCategoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSensitiveCategoryDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSensitiveCategoryDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/create_sensitive_type_pattern_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/create_sensitive_type_pattern_details.go index f88c282f529..4d61aa76589 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/create_sensitive_type_pattern_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/create_sensitive_type_pattern_details.go @@ -59,37 +59,37 @@ type CreateSensitiveTypePatternDetails struct { SearchType SensitiveTypePatternSearchTypeEnum `mandatory:"false" json:"searchType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateSensitiveTypePatternDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateSensitiveTypePatternDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetShortName returns ShortName +// GetShortName returns ShortName func (m CreateSensitiveTypePatternDetails) GetShortName() *string { return m.ShortName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateSensitiveTypePatternDetails) GetDescription() *string { return m.Description } -//GetParentCategoryId returns ParentCategoryId +// GetParentCategoryId returns ParentCategoryId func (m CreateSensitiveTypePatternDetails) GetParentCategoryId() *string { return m.ParentCategoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSensitiveTypePatternDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSensitiveTypePatternDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/database_cloud_service_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/database_cloud_service_details.go index 600c036e468..4755da5d2a7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/database_cloud_service_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/database_cloud_service_details.go @@ -35,7 +35,7 @@ type DatabaseCloudServiceDetails struct { InfrastructureType InfrastructureTypeEnum `mandatory:"true" json:"infrastructureType"` } -//GetInfrastructureType returns InfrastructureType +// GetInfrastructureType returns InfrastructureType func (m DatabaseCloudServiceDetails) GetInfrastructureType() InfrastructureTypeEnum { return m.InfrastructureType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/datasafe_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/datasafe_client.go index aa509e34d9b..2bb804e6feb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/datasafe_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/datasafe_client.go @@ -93,7 +93,7 @@ func (client *DataSafeClient) ConfigurationProvider() *common.ConfigurationProvi // ActivateTargetDatabase Reactivates a previously deactivated Data Safe target database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ActivateTargetDatabase.go.html to see an example of how to use ActivateTargetDatabase API. // A default retry strategy applies to this operation ActivateTargetDatabase() @@ -159,7 +159,7 @@ func (client DataSafeClient) activateTargetDatabase(ctx context.Context, request // data model and uses this information to create columns in the masking policy. It also assigns // default masking formats to these columns based on the associated sensitive types. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/AddMaskingColumnsFromSdm.go.html to see an example of how to use AddMaskingColumnsFromSdm API. // A default retry strategy applies to this operation AddMaskingColumnsFromSdm() @@ -217,7 +217,7 @@ func (client DataSafeClient) addMaskingColumnsFromSdm(ctx context.Context, reque // AlertsUpdate Updates alerts in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/AlertsUpdate.go.html to see an example of how to use AlertsUpdate API. // A default retry strategy applies to this operation AlertsUpdate() @@ -283,7 +283,7 @@ func (client DataSafeClient) alertsUpdate(ctx context.Context, request common.OC // attribute of the discovery results you want to process. ApplyDiscoveryJobResults automatically reads the plannedAction // attribute and updates the sensitive data model to reflect the actions you planned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ApplyDiscoveryJobResults.go.html to see an example of how to use ApplyDiscoveryJobResults API. // A default retry strategy applies to this operation ApplyDiscoveryJobResults() @@ -346,7 +346,7 @@ func (client DataSafeClient) applyDiscoveryJobResults(ctx context.Context, reque // latest sdmMaskingPolicydifference is used. Note that if the masking policy associated with the SdmMaskingPolicyDifference used for this // operation is not associated with the original SDM anymore, this operation won't be allowed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ApplySdmMaskingPolicyDifference.go.html to see an example of how to use ApplySdmMaskingPolicyDifference API. // A default retry strategy applies to this operation ApplySdmMaskingPolicyDifference() @@ -409,7 +409,7 @@ func (client DataSafeClient) applySdmMaskingPolicyDifference(ctx context.Context // CalculateAuditVolumeAvailable Calculates the volume of audit events available on the target database to be collected. Measurable up to the defined retention period of the audit target resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CalculateAuditVolumeAvailable.go.html to see an example of how to use CalculateAuditVolumeAvailable API. // A default retry strategy applies to this operation CalculateAuditVolumeAvailable() @@ -472,7 +472,7 @@ func (client DataSafeClient) calculateAuditVolumeAvailable(ctx context.Context, // CalculateAuditVolumeCollected Calculates the volume of audit events collected by data safe. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CalculateAuditVolumeCollected.go.html to see an example of how to use CalculateAuditVolumeCollected API. // A default retry strategy applies to this operation CalculateAuditVolumeCollected() @@ -535,7 +535,7 @@ func (client DataSafeClient) calculateAuditVolumeCollected(ctx context.Context, // CancelWorkRequest Cancel the given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -598,7 +598,7 @@ func (client DataSafeClient) cancelWorkRequest(ctx context.Context, request comm // ChangeAlertCompartment Moves the specified alert into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeAlertCompartment.go.html to see an example of how to use ChangeAlertCompartment API. // A default retry strategy applies to this operation ChangeAlertCompartment() @@ -661,7 +661,7 @@ func (client DataSafeClient) changeAlertCompartment(ctx context.Context, request // ChangeAuditArchiveRetrievalCompartment Moves the archive retreival to the specified compartment. When provided, if-Match is checked against ETag value of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeAuditArchiveRetrievalCompartment.go.html to see an example of how to use ChangeAuditArchiveRetrievalCompartment API. // A default retry strategy applies to this operation ChangeAuditArchiveRetrievalCompartment() @@ -724,7 +724,7 @@ func (client DataSafeClient) changeAuditArchiveRetrievalCompartment(ctx context. // ChangeAuditPolicyCompartment Moves the specified audit policy and its dependent resources into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeAuditPolicyCompartment.go.html to see an example of how to use ChangeAuditPolicyCompartment API. // A default retry strategy applies to this operation ChangeAuditPolicyCompartment() @@ -787,7 +787,7 @@ func (client DataSafeClient) changeAuditPolicyCompartment(ctx context.Context, r // ChangeAuditProfileCompartment Moves the specified audit profile and its dependent resources into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeAuditProfileCompartment.go.html to see an example of how to use ChangeAuditProfileCompartment API. // A default retry strategy applies to this operation ChangeAuditProfileCompartment() @@ -850,7 +850,7 @@ func (client DataSafeClient) changeAuditProfileCompartment(ctx context.Context, // ChangeDataSafePrivateEndpointCompartment Moves the Data Safe private endpoint and its dependent resources to the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeDataSafePrivateEndpointCompartment.go.html to see an example of how to use ChangeDataSafePrivateEndpointCompartment API. // A default retry strategy applies to this operation ChangeDataSafePrivateEndpointCompartment() @@ -908,7 +908,7 @@ func (client DataSafeClient) changeDataSafePrivateEndpointCompartment(ctx contex // ChangeDiscoveryJobCompartment Moves the specified discovery job and its dependent resources into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeDiscoveryJobCompartment.go.html to see an example of how to use ChangeDiscoveryJobCompartment API. // A default retry strategy applies to this operation ChangeDiscoveryJobCompartment() @@ -971,7 +971,7 @@ func (client DataSafeClient) changeDiscoveryJobCompartment(ctx context.Context, // ChangeLibraryMaskingFormatCompartment Moves the specified library masking format into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeLibraryMaskingFormatCompartment.go.html to see an example of how to use ChangeLibraryMaskingFormatCompartment API. // A default retry strategy applies to this operation ChangeLibraryMaskingFormatCompartment() @@ -1034,7 +1034,7 @@ func (client DataSafeClient) changeLibraryMaskingFormatCompartment(ctx context.C // ChangeMaskingPolicyCompartment Moves the specified masking policy and its dependent resources into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeMaskingPolicyCompartment.go.html to see an example of how to use ChangeMaskingPolicyCompartment API. // A default retry strategy applies to this operation ChangeMaskingPolicyCompartment() @@ -1097,7 +1097,7 @@ func (client DataSafeClient) changeMaskingPolicyCompartment(ctx context.Context, // ChangeOnPremConnectorCompartment Moves the specified on-premises connector into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeOnPremConnectorCompartment.go.html to see an example of how to use ChangeOnPremConnectorCompartment API. // A default retry strategy applies to this operation ChangeOnPremConnectorCompartment() @@ -1160,7 +1160,7 @@ func (client DataSafeClient) changeOnPremConnectorCompartment(ctx context.Contex // ChangeReportCompartment Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeReportCompartment.go.html to see an example of how to use ChangeReportCompartment API. // A default retry strategy applies to this operation ChangeReportCompartment() @@ -1223,7 +1223,7 @@ func (client DataSafeClient) changeReportCompartment(ctx context.Context, reques // ChangeReportDefinitionCompartment Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeReportDefinitionCompartment.go.html to see an example of how to use ChangeReportDefinitionCompartment API. // A default retry strategy applies to this operation ChangeReportDefinitionCompartment() @@ -1286,7 +1286,7 @@ func (client DataSafeClient) changeReportDefinitionCompartment(ctx context.Conte // ChangeRetention Change the online and offline months . // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeRetention.go.html to see an example of how to use ChangeRetention API. // A default retry strategy applies to this operation ChangeRetention() @@ -1349,7 +1349,7 @@ func (client DataSafeClient) changeRetention(ctx context.Context, request common // ChangeSdmMaskingPolicyDifferenceCompartment Moves the specified SDM masking policy difference into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeSdmMaskingPolicyDifferenceCompartment.go.html to see an example of how to use ChangeSdmMaskingPolicyDifferenceCompartment API. // A default retry strategy applies to this operation ChangeSdmMaskingPolicyDifferenceCompartment() @@ -1414,7 +1414,7 @@ func (client DataSafeClient) changeSdmMaskingPolicyDifferenceCompartment(ctx con // To start, call first the operation ListSecurityAssessments with filters "type = save_schedule". This returns the scheduleAssessmentId. Then, call this changeCompartment with the scheduleAssessmentId. // The existing saved security assessments created due to the schedule are not moved. However, all new saves will be associated with the new compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeSecurityAssessmentCompartment.go.html to see an example of how to use ChangeSecurityAssessmentCompartment API. // A default retry strategy applies to this operation ChangeSecurityAssessmentCompartment() @@ -1477,7 +1477,7 @@ func (client DataSafeClient) changeSecurityAssessmentCompartment(ctx context.Con // ChangeSensitiveDataModelCompartment Moves the specified sensitive data model and its dependent resources into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeSensitiveDataModelCompartment.go.html to see an example of how to use ChangeSensitiveDataModelCompartment API. // A default retry strategy applies to this operation ChangeSensitiveDataModelCompartment() @@ -1540,7 +1540,7 @@ func (client DataSafeClient) changeSensitiveDataModelCompartment(ctx context.Con // ChangeSensitiveTypeCompartment Moves the specified sensitive type into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeSensitiveTypeCompartment.go.html to see an example of how to use ChangeSensitiveTypeCompartment API. // A default retry strategy applies to this operation ChangeSensitiveTypeCompartment() @@ -1603,7 +1603,7 @@ func (client DataSafeClient) changeSensitiveTypeCompartment(ctx context.Context, // ChangeTargetAlertPolicyAssociationCompartment Moves the specified target-alert policy Association into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeTargetAlertPolicyAssociationCompartment.go.html to see an example of how to use ChangeTargetAlertPolicyAssociationCompartment API. // A default retry strategy applies to this operation ChangeTargetAlertPolicyAssociationCompartment() @@ -1666,7 +1666,7 @@ func (client DataSafeClient) changeTargetAlertPolicyAssociationCompartment(ctx c // ChangeTargetDatabaseCompartment Moves the Data Safe target database to the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeTargetDatabaseCompartment.go.html to see an example of how to use ChangeTargetDatabaseCompartment API. // A default retry strategy applies to this operation ChangeTargetDatabaseCompartment() @@ -1733,7 +1733,7 @@ func (client DataSafeClient) changeTargetDatabaseCompartment(ctx context.Context // ChangeUserAssessmentCompartment with the scheduleAssessmentId. The existing saved user assessments created per the schedule // are not be moved. However, all new saves will be associated with the new compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ChangeUserAssessmentCompartment.go.html to see an example of how to use ChangeUserAssessmentCompartment API. // A default retry strategy applies to this operation ChangeUserAssessmentCompartment() @@ -1797,7 +1797,7 @@ func (client DataSafeClient) changeUserAssessmentCompartment(ctx context.Context // CompareSecurityAssessment Compares two security assessments. For this comparison, a security assessment can be a saved assessment, a latest assessment, or a baseline assessment. // For example, you can compare saved assessment or a latest assessment against a baseline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CompareSecurityAssessment.go.html to see an example of how to use CompareSecurityAssessment API. // A default retry strategy applies to this operation CompareSecurityAssessment() @@ -1861,7 +1861,7 @@ func (client DataSafeClient) compareSecurityAssessment(ctx context.Context, requ // CompareUserAssessment Compares two user assessments. For this comparison, a user assessment can be a saved, a latest assessment, or a baseline. // As an example, it can be used to compare a user assessment saved or a latest assessment with a baseline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CompareUserAssessment.go.html to see an example of how to use CompareUserAssessment API. // A default retry strategy applies to this operation CompareUserAssessment() @@ -1926,7 +1926,7 @@ func (client DataSafeClient) compareUserAssessment(ctx context.Context, request // Save the id from the response of this operation. Call GetAuditArchiveRetrieval operation after an hour, passing the id to know the status of // this operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateAuditArchiveRetrieval.go.html to see an example of how to use CreateAuditArchiveRetrieval API. // A default retry strategy applies to this operation CreateAuditArchiveRetrieval() @@ -1989,7 +1989,7 @@ func (client DataSafeClient) createAuditArchiveRetrieval(ctx context.Context, re // CreateDataSafePrivateEndpoint Creates a new Data Safe private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateDataSafePrivateEndpoint.go.html to see an example of how to use CreateDataSafePrivateEndpoint API. // A default retry strategy applies to this operation CreateDataSafePrivateEndpoint() @@ -2056,7 +2056,7 @@ func (client DataSafeClient) createDataSafePrivateEndpoint(ctx context.Context, // to specify the action you want perform on these results, and then ApplyDiscoveryJobResults to process the results // and apply them to the sensitive data model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateDiscoveryJob.go.html to see an example of how to use CreateDiscoveryJob API. // A default retry strategy applies to this operation CreateDiscoveryJob() @@ -2123,7 +2123,7 @@ func (client DataSafeClient) createDiscoveryJob(ctx context.Context, request com // parts of a data value separately and then combine them to get the final data value // for masking. Note that you cannot define masking condition in a library masking format. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateLibraryMaskingFormat.go.html to see an example of how to use CreateLibraryMaskingFormat API. // A default retry strategy applies to this operation CreateLibraryMaskingFormat() @@ -2203,7 +2203,7 @@ func (client DataSafeClient) createLibraryMaskingFormat(ctx context.Context, req // like to mask together. It enables you to do group or compound masking that ensures that the // masked data across the columns in a group continue to retain the same logical relationship. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateMaskingColumn.go.html to see an example of how to use CreateMaskingColumn API. // A default retry strategy applies to this operation CreateMaskingColumn() @@ -2279,7 +2279,7 @@ func (client DataSafeClient) createMaskingColumn(ctx context.Context, request co // and it automatically adds the child columns (in referential relationship with the parent columns) // from the associated sensitive data model or target database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateMaskingPolicy.go.html to see an example of how to use CreateMaskingPolicy API. // A default retry strategy applies to this operation CreateMaskingPolicy() @@ -2342,7 +2342,7 @@ func (client DataSafeClient) createMaskingPolicy(ctx context.Context, request co // CreateOnPremConnector Creates a new on-premises connector. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateOnPremConnector.go.html to see an example of how to use CreateOnPremConnector API. // A default retry strategy applies to this operation CreateOnPremConnector() @@ -2405,7 +2405,7 @@ func (client DataSafeClient) createOnPremConnector(ctx context.Context, request // CreateReportDefinition Creates a new report definition with parameters specified in the body. The report definition is stored in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateReportDefinition.go.html to see an example of how to use CreateReportDefinition API. // A default retry strategy applies to this operation CreateReportDefinition() @@ -2472,7 +2472,7 @@ func (client DataSafeClient) createReportDefinition(ctx context.Context, request // to specify the action you want perform on these columns, and then ApplySdmMaskingPolicyDifference to process the // difference columns and apply them to the masking policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateSdmMaskingPolicyDifference.go.html to see an example of how to use CreateSdmMaskingPolicyDifference API. // A default retry strategy applies to this operation CreateSdmMaskingPolicyDifference() @@ -2537,7 +2537,7 @@ func (client DataSafeClient) createSdmMaskingPolicyDifference(ctx context.Contex // it will save the latest assessments in the specified compartment. If a schedule is passed, it will persist the latest assessments, // at the defined date and time, in the format defined by RFC3339 (https://tools.ietf.org/html/rfc3339). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateSecurityAssessment.go.html to see an example of how to use CreateSecurityAssessment API. // A default retry strategy applies to this operation CreateSecurityAssessment() @@ -2600,7 +2600,7 @@ func (client DataSafeClient) createSecurityAssessment(ctx context.Context, reque // CreateSensitiveColumn Creates a new sensitive column in the specified sensitive data model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateSensitiveColumn.go.html to see an example of how to use CreateSensitiveColumn API. // A default retry strategy applies to this operation CreateSensitiveColumn() @@ -2665,7 +2665,7 @@ func (client DataSafeClient) createSensitiveColumn(ctx context.Context, request // and adds the discovered columns to the sensitive data model. Otherwise, it creates an empty sensitive data model // that can be updated later. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateSensitiveDataModel.go.html to see an example of how to use CreateSensitiveDataModel API. // A default retry strategy applies to this operation CreateSensitiveDataModel() @@ -2730,7 +2730,7 @@ func (client DataSafeClient) createSensitiveDataModel(ctx context.Context, reque // While sensitive types are used for data discovery, sensitive categories are used for logically grouping the related // or similar sensitive types. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateSensitiveType.go.html to see an example of how to use CreateSensitiveType API. // A default retry strategy applies to this operation CreateSensitiveType() @@ -2793,7 +2793,7 @@ func (client DataSafeClient) createSensitiveType(ctx context.Context, request co // CreateTargetAlertPolicyAssociation Creates a new target-alert policy association to track a alert policy applied on target. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateTargetAlertPolicyAssociation.go.html to see an example of how to use CreateTargetAlertPolicyAssociation API. // A default retry strategy applies to this operation CreateTargetAlertPolicyAssociation() @@ -2856,7 +2856,7 @@ func (client DataSafeClient) createTargetAlertPolicyAssociation(ctx context.Cont // CreateTargetDatabase Registers the specified database with Data Safe and creates a Data Safe target database in the Data Safe Console. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateTargetDatabase.go.html to see an example of how to use CreateTargetDatabase API. // A default retry strategy applies to this operation CreateTargetDatabase() @@ -2921,7 +2921,7 @@ func (client DataSafeClient) createTargetDatabase(ctx context.Context, request c // specified compartment. If a scheduled is passed in, this operation persists the latest assessments that exist at the defined // date and time, in the format defined by RFC3339 (https://tools.ietf.org/html/rfc3339). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/CreateUserAssessment.go.html to see an example of how to use CreateUserAssessment API. // A default retry strategy applies to this operation CreateUserAssessment() @@ -2984,7 +2984,7 @@ func (client DataSafeClient) createUserAssessment(ctx context.Context, request c // DeactivateTargetDatabase Deactivates a target database in Data Safe. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeactivateTargetDatabase.go.html to see an example of how to use DeactivateTargetDatabase API. // A default retry strategy applies to this operation DeactivateTargetDatabase() @@ -3048,7 +3048,7 @@ func (client DataSafeClient) deactivateTargetDatabase(ctx context.Context, reque // DeleteAuditArchiveRetrieval To unload retrieved archive data, call the operation ListAuditArchiveRetrieval first. // This will return the auditArchiveRetrievalId. Then call this operation with auditArchiveRetrievalId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteAuditArchiveRetrieval.go.html to see an example of how to use DeleteAuditArchiveRetrieval API. // A default retry strategy applies to this operation DeleteAuditArchiveRetrieval() @@ -3106,7 +3106,7 @@ func (client DataSafeClient) deleteAuditArchiveRetrieval(ctx context.Context, re // DeleteAuditTrail Deletes the specified audit trail. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteAuditTrail.go.html to see an example of how to use DeleteAuditTrail API. // A default retry strategy applies to this operation DeleteAuditTrail() @@ -3164,7 +3164,7 @@ func (client DataSafeClient) deleteAuditTrail(ctx context.Context, request commo // DeleteDataSafePrivateEndpoint Deletes the specified Data Safe private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteDataSafePrivateEndpoint.go.html to see an example of how to use DeleteDataSafePrivateEndpoint API. // A default retry strategy applies to this operation DeleteDataSafePrivateEndpoint() @@ -3222,7 +3222,7 @@ func (client DataSafeClient) deleteDataSafePrivateEndpoint(ctx context.Context, // DeleteDiscoveryJob Deletes the specified discovery job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteDiscoveryJob.go.html to see an example of how to use DeleteDiscoveryJob API. // A default retry strategy applies to this operation DeleteDiscoveryJob() @@ -3280,7 +3280,7 @@ func (client DataSafeClient) deleteDiscoveryJob(ctx context.Context, request com // DeleteDiscoveryJobResult Deletes the specified discovery result. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteDiscoveryJobResult.go.html to see an example of how to use DeleteDiscoveryJobResult API. // A default retry strategy applies to this operation DeleteDiscoveryJobResult() @@ -3338,7 +3338,7 @@ func (client DataSafeClient) deleteDiscoveryJobResult(ctx context.Context, reque // DeleteLibraryMaskingFormat Deletes the specified library masking format. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteLibraryMaskingFormat.go.html to see an example of how to use DeleteLibraryMaskingFormat API. // A default retry strategy applies to this operation DeleteLibraryMaskingFormat() @@ -3396,7 +3396,7 @@ func (client DataSafeClient) deleteLibraryMaskingFormat(ctx context.Context, req // DeleteMaskingColumn Deletes the specified masking column. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteMaskingColumn.go.html to see an example of how to use DeleteMaskingColumn API. // A default retry strategy applies to this operation DeleteMaskingColumn() @@ -3454,7 +3454,7 @@ func (client DataSafeClient) deleteMaskingColumn(ctx context.Context, request co // DeleteMaskingPolicy Deletes the specified masking policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteMaskingPolicy.go.html to see an example of how to use DeleteMaskingPolicy API. // A default retry strategy applies to this operation DeleteMaskingPolicy() @@ -3512,7 +3512,7 @@ func (client DataSafeClient) deleteMaskingPolicy(ctx context.Context, request co // DeleteOnPremConnector Deletes the specified on-premises connector. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteOnPremConnector.go.html to see an example of how to use DeleteOnPremConnector API. // A default retry strategy applies to this operation DeleteOnPremConnector() @@ -3570,7 +3570,7 @@ func (client DataSafeClient) deleteOnPremConnector(ctx context.Context, request // DeleteReportDefinition Deletes the specified report definition. Only the user created report definition can be deleted. The seeded report definitions cannot be deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteReportDefinition.go.html to see an example of how to use DeleteReportDefinition API. // A default retry strategy applies to this operation DeleteReportDefinition() @@ -3628,7 +3628,7 @@ func (client DataSafeClient) deleteReportDefinition(ctx context.Context, request // DeleteSdmMaskingPolicyDifference Deletes the specified SDM Masking policy difference. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteSdmMaskingPolicyDifference.go.html to see an example of how to use DeleteSdmMaskingPolicyDifference API. // A default retry strategy applies to this operation DeleteSdmMaskingPolicyDifference() @@ -3689,7 +3689,7 @@ func (client DataSafeClient) deleteSdmMaskingPolicyDifference(ctx context.Contex // That operation returns the scheduleAssessmentId. Then, call DeleteSecurityAssessment with the scheduleAssessmentId. // If the assessment being deleted is the baseline for that compartment, then it will impact all baselines in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteSecurityAssessment.go.html to see an example of how to use DeleteSecurityAssessment API. // A default retry strategy applies to this operation DeleteSecurityAssessment() @@ -3747,7 +3747,7 @@ func (client DataSafeClient) deleteSecurityAssessment(ctx context.Context, reque // DeleteSensitiveColumn Deletes the specified sensitive column. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteSensitiveColumn.go.html to see an example of how to use DeleteSensitiveColumn API. // A default retry strategy applies to this operation DeleteSensitiveColumn() @@ -3805,7 +3805,7 @@ func (client DataSafeClient) deleteSensitiveColumn(ctx context.Context, request // DeleteSensitiveDataModel Deletes the specified sensitive data model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteSensitiveDataModel.go.html to see an example of how to use DeleteSensitiveDataModel API. // A default retry strategy applies to this operation DeleteSensitiveDataModel() @@ -3863,7 +3863,7 @@ func (client DataSafeClient) deleteSensitiveDataModel(ctx context.Context, reque // DeleteSensitiveType Deletes the specified sensitive type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteSensitiveType.go.html to see an example of how to use DeleteSensitiveType API. // A default retry strategy applies to this operation DeleteSensitiveType() @@ -3921,7 +3921,7 @@ func (client DataSafeClient) deleteSensitiveType(ctx context.Context, request co // DeleteTargetAlertPolicyAssociation Deletes the specified target-alert policy Association. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteTargetAlertPolicyAssociation.go.html to see an example of how to use DeleteTargetAlertPolicyAssociation API. // A default retry strategy applies to this operation DeleteTargetAlertPolicyAssociation() @@ -3979,7 +3979,7 @@ func (client DataSafeClient) deleteTargetAlertPolicyAssociation(ctx context.Cont // DeleteTargetDatabase Deregisters the specified database from Data Safe and removes the target database from the Data Safe Console. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteTargetDatabase.go.html to see an example of how to use DeleteTargetDatabase API. // A default retry strategy applies to this operation DeleteTargetDatabase() @@ -4040,7 +4040,7 @@ func (client DataSafeClient) deleteTargetDatabase(ctx context.Context, request c // That call returns the scheduleAssessmentId. Then call DeleteUserAssessment with the scheduleAssessmentId. // If the assessment being deleted is the baseline for that compartment, then it will impact all baselines in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DeleteUserAssessment.go.html to see an example of how to use DeleteUserAssessment API. // A default retry strategy applies to this operation DeleteUserAssessment() @@ -4101,7 +4101,7 @@ func (client DataSafeClient) deleteUserAssessment(ctx context.Context, request c // when they become available for audit collection because of change of database version // or change of database unified mode or change of data base edition or being deleted previously etc. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DiscoverAuditTrails.go.html to see an example of how to use DiscoverAuditTrails API. // A default retry strategy applies to this operation DiscoverAuditTrails() @@ -4167,7 +4167,7 @@ func (client DataSafeClient) discoverAuditTrails(ctx context.Context, request co // report file and then use DownloadDiscoveryReport to download the generated file. By default, it downloads report for // all the columns in a sensitive data model. Use the discoveryJobId attribute to download report for a specific discovery job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DownloadDiscoveryReport.go.html to see an example of how to use DownloadDiscoveryReport API. // A default retry strategy applies to this operation DownloadDiscoveryReport() @@ -4224,7 +4224,7 @@ func (client DataSafeClient) downloadDiscoveryReport(ctx context.Context, reques // DownloadMaskingLog Downloads the masking log generated by the last masking operation on a target database using the specified masking policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DownloadMaskingLog.go.html to see an example of how to use DownloadMaskingLog API. // A default retry strategy applies to this operation DownloadMaskingLog() @@ -4284,7 +4284,7 @@ func (client DataSafeClient) downloadMaskingLog(ctx context.Context, request com // DownloadMaskingPolicy operation. Use GenerateMaskingPolicyForDownload to generate // a masking policy file and then use DownloadMaskingPolicy to download the generated file. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DownloadMaskingPolicy.go.html to see an example of how to use DownloadMaskingPolicy API. // A default retry strategy applies to this operation DownloadMaskingPolicy() @@ -4343,7 +4343,7 @@ func (client DataSafeClient) downloadMaskingPolicy(ctx context.Context, request // operation is a prerequisite for the DownloadMaskingReport operation. Use GenerateMaskingReportForDownload // to generate a masking report file and then use DownloadMaskingReport to download the generated file. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DownloadMaskingReport.go.html to see an example of how to use DownloadMaskingReport API. // A default retry strategy applies to this operation DownloadMaskingReport() @@ -4400,7 +4400,7 @@ func (client DataSafeClient) downloadMaskingReport(ctx context.Context, request // DownloadPrivilegeScript Downloads the privilege script to grant/revoke required roles from the Data Safe account on the target database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DownloadPrivilegeScript.go.html to see an example of how to use DownloadPrivilegeScript API. // A default retry strategy applies to this operation DownloadPrivilegeScript() @@ -4463,7 +4463,7 @@ func (client DataSafeClient) downloadPrivilegeScript(ctx context.Context, reques // DownloadSecurityAssessmentReport Downloads the report of the specified security assessment. To download the security assessment report, it needs to be generated first. // Please use GenerateSecurityAssessmentReport to generate a downloadable report in the preferred format (PDF, XLS). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DownloadSecurityAssessmentReport.go.html to see an example of how to use DownloadSecurityAssessmentReport API. // A default retry strategy applies to this operation DownloadSecurityAssessmentReport() @@ -4528,7 +4528,7 @@ func (client DataSafeClient) downloadSecurityAssessmentReport(ctx context.Contex // Use GenerateSensitiveDataModelForDownload to generate a data model file and then use DownloadSensitiveDataModel // to download the generated file. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DownloadSensitiveDataModel.go.html to see an example of how to use DownloadSensitiveDataModel API. // A default retry strategy applies to this operation DownloadSensitiveDataModel() @@ -4586,7 +4586,7 @@ func (client DataSafeClient) downloadSensitiveDataModel(ctx context.Context, req // DownloadUserAssessmentReport Downloads the report of the specified user assessment. To download the user assessment report, it needs to be generated first. // Please use GenerateUserAssessmentReport to generate a downloadable report in the preferred format (PDF, XLS). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/DownloadUserAssessmentReport.go.html to see an example of how to use DownloadUserAssessmentReport API. // A default retry strategy applies to this operation DownloadUserAssessmentReport() @@ -4648,7 +4648,7 @@ func (client DataSafeClient) downloadUserAssessmentReport(ctx context.Context, r // EnableDataSafeConfiguration Enables Data Safe in the tenancy and region. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/EnableDataSafeConfiguration.go.html to see an example of how to use EnableDataSafeConfiguration API. // A default retry strategy applies to this operation EnableDataSafeConfiguration() @@ -4709,7 +4709,7 @@ func (client DataSafeClient) enableDataSafeConfiguration(ctx context.Context, re // By default, it generates report for all the columns in a sensitive data model. Use the discoveryJobId attribute // to generate report for a specific discovery job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GenerateDiscoveryReportForDownload.go.html to see an example of how to use GenerateDiscoveryReportForDownload API. // A default retry strategy applies to this operation GenerateDiscoveryReportForDownload() @@ -4771,7 +4771,7 @@ func (client DataSafeClient) generateDiscoveryReportForDownload(ctx context.Cont // Note that file generation and download are serial operations. The download operation // can't be invoked while the generate operation is in progress. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GenerateMaskingPolicyForDownload.go.html to see an example of how to use GenerateMaskingPolicyForDownload API. // A default retry strategy applies to this operation GenerateMaskingPolicyForDownload() @@ -4832,7 +4832,7 @@ func (client DataSafeClient) generateMaskingPolicyForDownload(ctx context.Contex // masking report file and then use DownloadMaskingReport to download // the generated file. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GenerateMaskingReportForDownload.go.html to see an example of how to use GenerateMaskingReportForDownload API. // A default retry strategy applies to this operation GenerateMaskingReportForDownload() @@ -4890,7 +4890,7 @@ func (client DataSafeClient) generateMaskingReportForDownload(ctx context.Contex // GenerateOnPremConnectorConfiguration Creates and downloads the configuration of the specified on-premises connector. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GenerateOnPremConnectorConfiguration.go.html to see an example of how to use GenerateOnPremConnectorConfiguration API. // A default retry strategy applies to this operation GenerateOnPremConnectorConfiguration() @@ -4952,7 +4952,7 @@ func (client DataSafeClient) generateOnPremConnectorConfiguration(ctx context.Co // GenerateReport Generates a PDF or XLS report based on parameters and report definition. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GenerateReport.go.html to see an example of how to use GenerateReport API. // A default retry strategy applies to this operation GenerateReport() @@ -5016,7 +5016,7 @@ func (client DataSafeClient) generateReport(ctx context.Context, request common. // GenerateSecurityAssessmentReport Generates the report of the specified security assessment. You can get the report in PDF or XLS format. // After generating the report, use DownloadSecurityAssessmentReport to download it in the preferred format. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GenerateSecurityAssessmentReport.go.html to see an example of how to use GenerateSecurityAssessmentReport API. // A default retry strategy applies to this operation GenerateSecurityAssessmentReport() @@ -5082,7 +5082,7 @@ func (client DataSafeClient) generateSecurityAssessmentReport(ctx context.Contex // to download the generated file. Note that file generation and download are serial operations. The download operation // can't be invoked while the generate operation is in progress. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GenerateSensitiveDataModelForDownload.go.html to see an example of how to use GenerateSensitiveDataModelForDownload API. // A default retry strategy applies to this operation GenerateSensitiveDataModelForDownload() @@ -5141,7 +5141,7 @@ func (client DataSafeClient) generateSensitiveDataModelForDownload(ctx context.C // GenerateUserAssessmentReport Generates the report of the specified user assessment. The report is available in PDF or XLS format. // After generating the report, use DownloadUserAssessmentReport to download it in the preferred format. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GenerateUserAssessmentReport.go.html to see an example of how to use GenerateUserAssessmentReport API. // A default retry strategy applies to this operation GenerateUserAssessmentReport() @@ -5204,7 +5204,7 @@ func (client DataSafeClient) generateUserAssessmentReport(ctx context.Context, r // GetAlert Gets the details of the specified alerts. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetAlert.go.html to see an example of how to use GetAlert API. // A default retry strategy applies to this operation GetAlert() @@ -5262,7 +5262,7 @@ func (client DataSafeClient) getAlert(ctx context.Context, request common.OCIReq // GetAlertPolicy Gets the details of alert policy by its ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetAlertPolicy.go.html to see an example of how to use GetAlertPolicy API. // A default retry strategy applies to this operation GetAlertPolicy() @@ -5320,7 +5320,7 @@ func (client DataSafeClient) getAlertPolicy(ctx context.Context, request common. // GetAuditArchiveRetrieval Gets the details of the specified archive retreival. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetAuditArchiveRetrieval.go.html to see an example of how to use GetAuditArchiveRetrieval API. // A default retry strategy applies to this operation GetAuditArchiveRetrieval() @@ -5378,7 +5378,7 @@ func (client DataSafeClient) getAuditArchiveRetrieval(ctx context.Context, reque // GetAuditPolicy Gets a audit policy by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetAuditPolicy.go.html to see an example of how to use GetAuditPolicy API. // A default retry strategy applies to this operation GetAuditPolicy() @@ -5436,7 +5436,7 @@ func (client DataSafeClient) getAuditPolicy(ctx context.Context, request common. // GetAuditProfile Gets the details of audit profile resource and associated audit trails of the audit profile. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetAuditProfile.go.html to see an example of how to use GetAuditProfile API. // A default retry strategy applies to this operation GetAuditProfile() @@ -5494,7 +5494,7 @@ func (client DataSafeClient) getAuditProfile(ctx context.Context, request common // GetAuditTrail Gets the details of audit trail. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetAuditTrail.go.html to see an example of how to use GetAuditTrail API. // A default retry strategy applies to this operation GetAuditTrail() @@ -5558,7 +5558,7 @@ func (client DataSafeClient) getAuditTrail(ctx context.Context, request common.O // LOB - Includes BLOB, CLOB, and NCLOB // All - Includes all the supported data types // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetCompatibleFormatsForDataTypes.go.html to see an example of how to use GetCompatibleFormatsForDataTypes API. // A default retry strategy applies to this operation GetCompatibleFormatsForDataTypes() @@ -5619,7 +5619,7 @@ func (client DataSafeClient) getCompatibleFormatsForDataTypes(ctx context.Contex // the other library masking formats that have the sensitiveTypeIds attribute containing // the OCID of the sensitive type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetCompatibleFormatsForSensitiveTypes.go.html to see an example of how to use GetCompatibleFormatsForSensitiveTypes API. // A default retry strategy applies to this operation GetCompatibleFormatsForSensitiveTypes() @@ -5677,7 +5677,7 @@ func (client DataSafeClient) getCompatibleFormatsForSensitiveTypes(ctx context.C // GetDataSafeConfiguration Gets the details of the Data Safe configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetDataSafeConfiguration.go.html to see an example of how to use GetDataSafeConfiguration API. // A default retry strategy applies to this operation GetDataSafeConfiguration() @@ -5735,7 +5735,7 @@ func (client DataSafeClient) getDataSafeConfiguration(ctx context.Context, reque // GetDataSafePrivateEndpoint Gets the details of the specified Data Safe private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetDataSafePrivateEndpoint.go.html to see an example of how to use GetDataSafePrivateEndpoint API. // A default retry strategy applies to this operation GetDataSafePrivateEndpoint() @@ -5793,7 +5793,7 @@ func (client DataSafeClient) getDataSafePrivateEndpoint(ctx context.Context, req // GetDifferenceColumn Gets the details of the specified SDM Masking policy difference column. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetDifferenceColumn.go.html to see an example of how to use GetDifferenceColumn API. // A default retry strategy applies to this operation GetDifferenceColumn() @@ -5851,7 +5851,7 @@ func (client DataSafeClient) getDifferenceColumn(ctx context.Context, request co // GetDiscoveryJob Gets the details of the specified discovery job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetDiscoveryJob.go.html to see an example of how to use GetDiscoveryJob API. // A default retry strategy applies to this operation GetDiscoveryJob() @@ -5909,7 +5909,7 @@ func (client DataSafeClient) getDiscoveryJob(ctx context.Context, request common // GetDiscoveryJobResult Gets the details of the specified discovery result. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetDiscoveryJobResult.go.html to see an example of how to use GetDiscoveryJobResult API. // A default retry strategy applies to this operation GetDiscoveryJobResult() @@ -5967,7 +5967,7 @@ func (client DataSafeClient) getDiscoveryJobResult(ctx context.Context, request // GetLibraryMaskingFormat Gets the details of the specified library masking format. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetLibraryMaskingFormat.go.html to see an example of how to use GetLibraryMaskingFormat API. // A default retry strategy applies to this operation GetLibraryMaskingFormat() @@ -6025,7 +6025,7 @@ func (client DataSafeClient) getLibraryMaskingFormat(ctx context.Context, reques // GetMaskingColumn Gets the details of the specified masking column. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetMaskingColumn.go.html to see an example of how to use GetMaskingColumn API. // A default retry strategy applies to this operation GetMaskingColumn() @@ -6083,7 +6083,7 @@ func (client DataSafeClient) getMaskingColumn(ctx context.Context, request commo // GetMaskingPolicy Gets the details of the specified masking policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetMaskingPolicy.go.html to see an example of how to use GetMaskingPolicy API. // A default retry strategy applies to this operation GetMaskingPolicy() @@ -6141,7 +6141,7 @@ func (client DataSafeClient) getMaskingPolicy(ctx context.Context, request commo // GetMaskingReport Gets the details of the specified masking report. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetMaskingReport.go.html to see an example of how to use GetMaskingReport API. // A default retry strategy applies to this operation GetMaskingReport() @@ -6199,7 +6199,7 @@ func (client DataSafeClient) getMaskingReport(ctx context.Context, request commo // GetOnPremConnector Gets the details of the specified on-premises connector. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetOnPremConnector.go.html to see an example of how to use GetOnPremConnector API. // A default retry strategy applies to this operation GetOnPremConnector() @@ -6259,7 +6259,7 @@ func (client DataSafeClient) getOnPremConnector(ctx context.Context, request com // The GetProfile operation returns only the profiles in the specified 'userAssessmentId'. // This does not include any subcompartments of the current compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetProfile.go.html to see an example of how to use GetProfile API. // A default retry strategy applies to this operation GetProfile() @@ -6317,7 +6317,7 @@ func (client DataSafeClient) getProfile(ctx context.Context, request common.OCIR // GetReport Gets a report by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetReport.go.html to see an example of how to use GetReport API. // A default retry strategy applies to this operation GetReport() @@ -6375,7 +6375,7 @@ func (client DataSafeClient) getReport(ctx context.Context, request common.OCIRe // GetReportContent Downloads the specified report in the form of PDF or XLXS. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetReportContent.go.html to see an example of how to use GetReportContent API. // A default retry strategy applies to this operation GetReportContent() @@ -6432,7 +6432,7 @@ func (client DataSafeClient) getReportContent(ctx context.Context, request commo // GetReportDefinition Gets the details of report definition specified by the identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetReportDefinition.go.html to see an example of how to use GetReportDefinition API. // A default retry strategy applies to this operation GetReportDefinition() @@ -6490,7 +6490,7 @@ func (client DataSafeClient) getReportDefinition(ctx context.Context, request co // GetSdmMaskingPolicyDifference Gets the details of the specified SDM Masking policy difference. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetSdmMaskingPolicyDifference.go.html to see an example of how to use GetSdmMaskingPolicyDifference API. // A default retry strategy applies to this operation GetSdmMaskingPolicyDifference() @@ -6548,7 +6548,7 @@ func (client DataSafeClient) getSdmMaskingPolicyDifference(ctx context.Context, // GetSecurityAssessment Gets the details of the specified security assessment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetSecurityAssessment.go.html to see an example of how to use GetSecurityAssessment API. // A default retry strategy applies to this operation GetSecurityAssessment() @@ -6606,7 +6606,7 @@ func (client DataSafeClient) getSecurityAssessment(ctx context.Context, request // GetSecurityAssessmentComparison Gets the details of the comparison report on the security assessments submitted for comparison. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetSecurityAssessmentComparison.go.html to see an example of how to use GetSecurityAssessmentComparison API. // A default retry strategy applies to this operation GetSecurityAssessmentComparison() @@ -6664,7 +6664,7 @@ func (client DataSafeClient) getSecurityAssessmentComparison(ctx context.Context // GetSensitiveColumn Gets the details of the specified sensitive column. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetSensitiveColumn.go.html to see an example of how to use GetSensitiveColumn API. // A default retry strategy applies to this operation GetSensitiveColumn() @@ -6722,7 +6722,7 @@ func (client DataSafeClient) getSensitiveColumn(ctx context.Context, request com // GetSensitiveDataModel Gets the details of the specified sensitive data model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetSensitiveDataModel.go.html to see an example of how to use GetSensitiveDataModel API. // A default retry strategy applies to this operation GetSensitiveDataModel() @@ -6780,7 +6780,7 @@ func (client DataSafeClient) getSensitiveDataModel(ctx context.Context, request // GetSensitiveType Gets the details of the specified sensitive type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetSensitiveType.go.html to see an example of how to use GetSensitiveType API. // A default retry strategy applies to this operation GetSensitiveType() @@ -6838,7 +6838,7 @@ func (client DataSafeClient) getSensitiveType(ctx context.Context, request commo // GetTargetAlertPolicyAssociation Gets the details of target-alert policy association by its ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetTargetAlertPolicyAssociation.go.html to see an example of how to use GetTargetAlertPolicyAssociation API. // A default retry strategy applies to this operation GetTargetAlertPolicyAssociation() @@ -6896,7 +6896,7 @@ func (client DataSafeClient) getTargetAlertPolicyAssociation(ctx context.Context // GetTargetDatabase Returns the details of the specified Data Safe target database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetTargetDatabase.go.html to see an example of how to use GetTargetDatabase API. // A default retry strategy applies to this operation GetTargetDatabase() @@ -6954,7 +6954,7 @@ func (client DataSafeClient) getTargetDatabase(ctx context.Context, request comm // GetUserAssessment Gets a user assessment by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetUserAssessment.go.html to see an example of how to use GetUserAssessment API. // A default retry strategy applies to this operation GetUserAssessment() @@ -7012,7 +7012,7 @@ func (client DataSafeClient) getUserAssessment(ctx context.Context, request comm // GetUserAssessmentComparison Gets the details of the comparison report for the user assessments provided. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetUserAssessmentComparison.go.html to see an example of how to use GetUserAssessmentComparison API. // A default retry strategy applies to this operation GetUserAssessmentComparison() @@ -7070,7 +7070,7 @@ func (client DataSafeClient) getUserAssessmentComparison(ctx context.Context, re // GetWorkRequest Gets the details of the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -7128,7 +7128,7 @@ func (client DataSafeClient) getWorkRequest(ctx context.Context, request common. // ListAlertAnalytics Returns the aggregation details of the alerts. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAlertAnalytics.go.html to see an example of how to use ListAlertAnalytics API. // A default retry strategy applies to this operation ListAlertAnalytics() @@ -7191,7 +7191,7 @@ func (client DataSafeClient) listAlertAnalytics(ctx context.Context, request com // ListAlertPolicies Gets a list of all alert policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAlertPolicies.go.html to see an example of how to use ListAlertPolicies API. // A default retry strategy applies to this operation ListAlertPolicies() @@ -7250,7 +7250,7 @@ func (client DataSafeClient) listAlertPolicies(ctx context.Context, request comm // ListAlertPolicyRules Lists the rules of the specified alert policy. The alert policy is said to be satisfied when all rules in the policy evaulate to true. // If there are three rules: rule1,rule2 and rule3, the policy is satisfied if rule1 AND rule2 AND rule3 is True. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAlertPolicyRules.go.html to see an example of how to use ListAlertPolicyRules API. // A default retry strategy applies to this operation ListAlertPolicyRules() @@ -7308,7 +7308,7 @@ func (client DataSafeClient) listAlertPolicyRules(ctx context.Context, request c // ListAlerts Gets a list of all alerts. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAlerts.go.html to see an example of how to use ListAlerts API. // A default retry strategy applies to this operation ListAlerts() @@ -7366,7 +7366,7 @@ func (client DataSafeClient) listAlerts(ctx context.Context, request common.OCIR // ListAuditArchiveRetrievals Returns the list of audit archive retrieval. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAuditArchiveRetrievals.go.html to see an example of how to use ListAuditArchiveRetrievals API. // A default retry strategy applies to this operation ListAuditArchiveRetrievals() @@ -7433,7 +7433,7 @@ func (client DataSafeClient) listAuditArchiveRetrievals(ctx context.Context, req // /ListAuditEventAnalytics?summaryField=targetName&groupBy=targetName // This will give the number of events group by targetName. Only targetName summary column would be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAuditEventAnalytics.go.html to see an example of how to use ListAuditEventAnalytics API. // A default retry strategy applies to this operation ListAuditEventAnalytics() @@ -7506,7 +7506,7 @@ func (client DataSafeClient) listAuditEventAnalytics(ctx context.Context, reques // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAuditEvents.go.html to see an example of how to use ListAuditEvents API. // A default retry strategy applies to this operation ListAuditEvents() @@ -7575,7 +7575,7 @@ func (client DataSafeClient) listAuditEvents(ctx context.Context, request common // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAuditPolicies.go.html to see an example of how to use ListAuditPolicies API. // A default retry strategy applies to this operation ListAuditPolicies() @@ -7645,7 +7645,7 @@ func (client DataSafeClient) listAuditPolicies(ctx context.Context, request comm // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // **Example:** ListAuditPolicyAnalytics?groupBy=auditPolicyCategory // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAuditPolicyAnalytics.go.html to see an example of how to use ListAuditPolicyAnalytics API. // A default retry strategy applies to this operation ListAuditPolicyAnalytics() @@ -7713,7 +7713,7 @@ func (client DataSafeClient) listAuditPolicyAnalytics(ctx context.Context, reque // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAuditProfileAnalytics.go.html to see an example of how to use ListAuditProfileAnalytics API. // A default retry strategy applies to this operation ListAuditProfileAnalytics() @@ -7782,7 +7782,7 @@ func (client DataSafeClient) listAuditProfileAnalytics(ctx context.Context, requ // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAuditProfiles.go.html to see an example of how to use ListAuditProfiles API. // A default retry strategy applies to this operation ListAuditProfiles() @@ -7850,7 +7850,7 @@ func (client DataSafeClient) listAuditProfiles(ctx context.Context, request comm // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAuditTrailAnalytics.go.html to see an example of how to use ListAuditTrailAnalytics API. // A default retry strategy applies to this operation ListAuditTrailAnalytics() @@ -7919,7 +7919,7 @@ func (client DataSafeClient) listAuditTrailAnalytics(ctx context.Context, reques // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAuditTrails.go.html to see an example of how to use ListAuditTrails API. // A default retry strategy applies to this operation ListAuditTrails() @@ -7977,7 +7977,7 @@ func (client DataSafeClient) listAuditTrails(ctx context.Context, request common // ListAvailableAuditVolumes Retrieves a list of audit trails, and associated audit event volume for each trail up to defined start date. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListAvailableAuditVolumes.go.html to see an example of how to use ListAvailableAuditVolumes API. // A default retry strategy applies to this operation ListAvailableAuditVolumes() @@ -8035,7 +8035,7 @@ func (client DataSafeClient) listAvailableAuditVolumes(ctx context.Context, requ // ListCollectedAuditVolumes Gets a list of all collected audit volume data points. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListCollectedAuditVolumes.go.html to see an example of how to use ListCollectedAuditVolumes API. // A default retry strategy applies to this operation ListCollectedAuditVolumes() @@ -8093,7 +8093,7 @@ func (client DataSafeClient) listCollectedAuditVolumes(ctx context.Context, requ // ListColumns Returns a list of column metadata objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListColumns.go.html to see an example of how to use ListColumns API. // A default retry strategy applies to this operation ListColumns() @@ -8151,7 +8151,7 @@ func (client DataSafeClient) listColumns(ctx context.Context, request common.OCI // ListDataSafePrivateEndpoints Gets a list of Data Safe private endpoints. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListDataSafePrivateEndpoints.go.html to see an example of how to use ListDataSafePrivateEndpoints API. // A default retry strategy applies to this operation ListDataSafePrivateEndpoints() @@ -8209,7 +8209,7 @@ func (client DataSafeClient) listDataSafePrivateEndpoints(ctx context.Context, r // ListDifferenceColumns Gets a list of columns of a SDM masking policy difference resource based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListDifferenceColumns.go.html to see an example of how to use ListDifferenceColumns API. // A default retry strategy applies to this operation ListDifferenceColumns() @@ -8269,7 +8269,7 @@ func (client DataSafeClient) listDifferenceColumns(ctx context.Context, request // If CompartmentIdInSubtreeQueryParam is specified as true, the behaviour // is equivalent to accessLevel "ACCESSIBLE" by default. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListDiscoveryAnalytics.go.html to see an example of how to use ListDiscoveryAnalytics API. // A default retry strategy applies to this operation ListDiscoveryAnalytics() @@ -8327,7 +8327,7 @@ func (client DataSafeClient) listDiscoveryAnalytics(ctx context.Context, request // ListDiscoveryJobResults Gets a list of discovery results based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListDiscoveryJobResults.go.html to see an example of how to use ListDiscoveryJobResults API. // A default retry strategy applies to this operation ListDiscoveryJobResults() @@ -8385,7 +8385,7 @@ func (client DataSafeClient) listDiscoveryJobResults(ctx context.Context, reques // ListDiscoveryJobs Gets a list of incremental discovery jobs based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListDiscoveryJobs.go.html to see an example of how to use ListDiscoveryJobs API. // A default retry strategy applies to this operation ListDiscoveryJobs() @@ -8443,7 +8443,7 @@ func (client DataSafeClient) listDiscoveryJobs(ctx context.Context, request comm // ListFindings List all the findings from all the targets in the specified assessment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListFindings.go.html to see an example of how to use ListFindings API. // A default retry strategy applies to this operation ListFindings() @@ -8504,7 +8504,7 @@ func (client DataSafeClient) listFindings(ctx context.Context, request common.OC // roles a privilege grant is. The userKey in this operation is a system-generated identifier. Perform the operation ListUsers // to get the userKey for a particular user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListGrants.go.html to see an example of how to use ListGrants API. // A default retry strategy applies to this operation ListGrants() @@ -8562,7 +8562,7 @@ func (client DataSafeClient) listGrants(ctx context.Context, request common.OCIR // ListLibraryMaskingFormats Gets a list of library masking formats based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListLibraryMaskingFormats.go.html to see an example of how to use ListLibraryMaskingFormats API. // A default retry strategy applies to this operation ListLibraryMaskingFormats() @@ -8620,7 +8620,7 @@ func (client DataSafeClient) listLibraryMaskingFormats(ctx context.Context, requ // ListMaskedColumns Gets a list of masked columns present in the specified masking report and based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListMaskedColumns.go.html to see an example of how to use ListMaskedColumns API. // A default retry strategy applies to this operation ListMaskedColumns() @@ -8680,7 +8680,7 @@ func (client DataSafeClient) listMaskedColumns(ctx context.Context, request comm // If CompartmentIdInSubtreeQueryParam is specified as true, the behaviour // is equivalent to accessLevel "ACCESSIBLE" by default. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListMaskingAnalytics.go.html to see an example of how to use ListMaskingAnalytics API. // A default retry strategy applies to this operation ListMaskingAnalytics() @@ -8738,7 +8738,7 @@ func (client DataSafeClient) listMaskingAnalytics(ctx context.Context, request c // ListMaskingColumns Gets a list of masking columns present in the specified masking policy and based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListMaskingColumns.go.html to see an example of how to use ListMaskingColumns API. // A default retry strategy applies to this operation ListMaskingColumns() @@ -8796,7 +8796,7 @@ func (client DataSafeClient) listMaskingColumns(ctx context.Context, request com // ListMaskingObjects Gets a list of masking objects present in the specified masking policy and based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListMaskingObjects.go.html to see an example of how to use ListMaskingObjects API. // A default retry strategy applies to this operation ListMaskingObjects() @@ -8854,7 +8854,7 @@ func (client DataSafeClient) listMaskingObjects(ctx context.Context, request com // ListMaskingPolicies Gets a list of masking policies based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListMaskingPolicies.go.html to see an example of how to use ListMaskingPolicies API. // A default retry strategy applies to this operation ListMaskingPolicies() @@ -8912,7 +8912,7 @@ func (client DataSafeClient) listMaskingPolicies(ctx context.Context, request co // ListMaskingReports Gets a list of masking reports based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListMaskingReports.go.html to see an example of how to use ListMaskingReports API. // A default retry strategy applies to this operation ListMaskingReports() @@ -8970,7 +8970,7 @@ func (client DataSafeClient) listMaskingReports(ctx context.Context, request com // ListMaskingSchemas Gets a list of masking schemas present in the specified masking policy and based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListMaskingSchemas.go.html to see an example of how to use ListMaskingSchemas API. // A default retry strategy applies to this operation ListMaskingSchemas() @@ -9028,7 +9028,7 @@ func (client DataSafeClient) listMaskingSchemas(ctx context.Context, request com // ListOnPremConnectors Gets a list of on-premises connectors. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListOnPremConnectors.go.html to see an example of how to use ListOnPremConnectors API. // A default retry strategy applies to this operation ListOnPremConnectors() @@ -9097,7 +9097,7 @@ func (client DataSafeClient) listOnPremConnectors(ctx context.Context, request c // To use ListProfileAnalytics to get a full list of all compartments and subcompartments in the tenancy from the root compartment, // set the parameter compartmentIdInSubtree to true and accessLevel to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListProfileAnalytics.go.html to see an example of how to use ListProfileAnalytics API. // A default retry strategy applies to this operation ListProfileAnalytics() @@ -9166,7 +9166,7 @@ func (client DataSafeClient) listProfileAnalytics(ctx context.Context, request c // To get a full list of all compartments and subcompartments in the tenancy (root compartment), set the parameter // 'compartmentIdInSubtree' to true and 'accessLevel' to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListProfileSummaries.go.html to see an example of how to use ListProfileSummaries API. // A default retry strategy applies to this operation ListProfileSummaries() @@ -9226,7 +9226,7 @@ func (client DataSafeClient) listProfileSummaries(ctx context.Context, request c // The ListReportDefinitions operation returns only the report definitions in the specified `compartmentId`. // It also returns the seeded report definitions which are available to all the compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListReportDefinitions.go.html to see an example of how to use ListReportDefinitions API. // A default retry strategy applies to this operation ListReportDefinitions() @@ -9284,7 +9284,7 @@ func (client DataSafeClient) listReportDefinitions(ctx context.Context, request // ListReports Gets a list of all the reports in the compartment. It contains information such as report generation time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListReports.go.html to see an example of how to use ListReports API. // A default retry strategy applies to this operation ListReports() @@ -9342,7 +9342,7 @@ func (client DataSafeClient) listReports(ctx context.Context, request common.OCI // ListRoles Returns a list of role metadata objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListRoles.go.html to see an example of how to use ListRoles API. // A default retry strategy applies to this operation ListRoles() @@ -9400,7 +9400,7 @@ func (client DataSafeClient) listRoles(ctx context.Context, request common.OCIRe // ListSchemas Returns list of schema. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListSchemas.go.html to see an example of how to use ListSchemas API. // A default retry strategy applies to this operation ListSchemas() @@ -9458,7 +9458,7 @@ func (client DataSafeClient) listSchemas(ctx context.Context, request common.OCI // ListSdmMaskingPolicyDifferences Gets a list of SDM and masking policy difference resources based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListSdmMaskingPolicyDifferences.go.html to see an example of how to use ListSdmMaskingPolicyDifferences API. // A default retry strategy applies to this operation ListSdmMaskingPolicyDifferences() @@ -9527,7 +9527,7 @@ func (client DataSafeClient) listSdmMaskingPolicyDifferences(ctx context.Context // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListSecurityAssessments.go.html to see an example of how to use ListSecurityAssessments API. // A default retry strategy applies to this operation ListSecurityAssessments() @@ -9585,7 +9585,7 @@ func (client DataSafeClient) listSecurityAssessments(ctx context.Context, reques // ListSensitiveColumns Gets a list of sensitive columns present in the specified sensitive data model based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListSensitiveColumns.go.html to see an example of how to use ListSensitiveColumns API. // A default retry strategy applies to this operation ListSensitiveColumns() @@ -9643,7 +9643,7 @@ func (client DataSafeClient) listSensitiveColumns(ctx context.Context, request c // ListSensitiveDataModels Gets a list of sensitive data models based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListSensitiveDataModels.go.html to see an example of how to use ListSensitiveDataModels API. // A default retry strategy applies to this operation ListSensitiveDataModels() @@ -9701,7 +9701,7 @@ func (client DataSafeClient) listSensitiveDataModels(ctx context.Context, reques // ListSensitiveObjects Gets a list of sensitive objects present in the specified sensitive data model based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListSensitiveObjects.go.html to see an example of how to use ListSensitiveObjects API. // A default retry strategy applies to this operation ListSensitiveObjects() @@ -9759,7 +9759,7 @@ func (client DataSafeClient) listSensitiveObjects(ctx context.Context, request c // ListSensitiveSchemas Gets a list of sensitive schemas present in the specified sensitive data model based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListSensitiveSchemas.go.html to see an example of how to use ListSensitiveSchemas API. // A default retry strategy applies to this operation ListSensitiveSchemas() @@ -9817,7 +9817,7 @@ func (client DataSafeClient) listSensitiveSchemas(ctx context.Context, request c // ListSensitiveTypes Gets a list of sensitive types based on the specified query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListSensitiveTypes.go.html to see an example of how to use ListSensitiveTypes API. // A default retry strategy applies to this operation ListSensitiveTypes() @@ -9875,7 +9875,7 @@ func (client DataSafeClient) listSensitiveTypes(ctx context.Context, request com // ListTables Returns a list of table metadata objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListTables.go.html to see an example of how to use ListTables API. // A default retry strategy applies to this operation ListTables() @@ -9933,7 +9933,7 @@ func (client DataSafeClient) listTables(ctx context.Context, request common.OCIR // ListTargetAlertPolicyAssociations Gets a list of all target-alert policy associations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListTargetAlertPolicyAssociations.go.html to see an example of how to use ListTargetAlertPolicyAssociations API. // A default retry strategy applies to this operation ListTargetAlertPolicyAssociations() @@ -9991,7 +9991,7 @@ func (client DataSafeClient) listTargetAlertPolicyAssociations(ctx context.Conte // ListTargetDatabases Returns the list of registered target databases in Data Safe. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListTargetDatabases.go.html to see an example of how to use ListTargetDatabases API. // A default retry strategy applies to this operation ListTargetDatabases() @@ -10060,7 +10060,7 @@ func (client DataSafeClient) listTargetDatabases(ctx context.Context, request co // To use ListUserAnalytics to get a full list of all compartments and subcompartments in the tenancy from the root compartment, // set the parameter compartmentIdInSubtree to true and accessLevel to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListUserAnalytics.go.html to see an example of how to use ListUserAnalytics API. // A default retry strategy applies to this operation ListUserAnalytics() @@ -10129,7 +10129,7 @@ func (client DataSafeClient) listUserAnalytics(ctx context.Context, request comm // To get a full list of all compartments and subcompartments in the tenancy (root compartment), // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ACCESSIBLE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListUserAssessments.go.html to see an example of how to use ListUserAssessments API. // A default retry strategy applies to this operation ListUserAssessments() @@ -10190,7 +10190,7 @@ func (client DataSafeClient) listUserAssessments(ctx context.Context, request co // of the latest password change. It also contains the user category derived from these user details as well as privileges // granted to each user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListUsers.go.html to see an example of how to use ListUsers API. // A default retry strategy applies to this operation ListUsers() @@ -10248,7 +10248,7 @@ func (client DataSafeClient) listUsers(ctx context.Context, request common.OCIRe // ListWorkRequestErrors Gets a list of errors for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -10306,7 +10306,7 @@ func (client DataSafeClient) listWorkRequestErrors(ctx context.Context, request // ListWorkRequestLogs Gets a list of log entries for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -10364,7 +10364,7 @@ func (client DataSafeClient) listWorkRequestLogs(ctx context.Context, request co // ListWorkRequests Gets a list of work requests. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -10422,7 +10422,7 @@ func (client DataSafeClient) listWorkRequests(ctx context.Context, request commo // MaskData Masks data using the specified masking policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/MaskData.go.html to see an example of how to use MaskData API. // A default retry strategy applies to this operation MaskData() @@ -10480,7 +10480,7 @@ func (client DataSafeClient) maskData(ctx context.Context, request common.OCIReq // ModifyGlobalSettings Modifies Global Settings in Data Safe in the tenancy and region. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ModifyGlobalSettings.go.html to see an example of how to use ModifyGlobalSettings API. // A default retry strategy applies to this operation ModifyGlobalSettings() @@ -10543,7 +10543,7 @@ func (client DataSafeClient) modifyGlobalSettings(ctx context.Context, request c // PatchAlerts Updates the status of one or more alert specified by the alert IDs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/PatchAlerts.go.html to see an example of how to use PatchAlerts API. // A default retry strategy applies to this operation PatchAlerts() @@ -10602,7 +10602,7 @@ func (client DataSafeClient) patchAlerts(ctx context.Context, request common.OCI // PatchDiscoveryJobResults Patches one or more discovery results. You can use this operation to set the plannedAction attribute before using // ApplyDiscoveryJobResults to process the results based on this attribute. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/PatchDiscoveryJobResults.go.html to see an example of how to use PatchDiscoveryJobResults API. // A default retry strategy applies to this operation PatchDiscoveryJobResults() @@ -10662,7 +10662,7 @@ func (client DataSafeClient) patchDiscoveryJobResults(ctx context.Context, reque // masking columns. To create masking columns, use CreateMaskingColumnDetails as the patch // value. And to update masking columns, use UpdateMaskingColumnDetails as the patch value. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/PatchMaskingColumns.go.html to see an example of how to use PatchMaskingColumns API. // A default retry strategy applies to this operation PatchMaskingColumns() @@ -10721,7 +10721,7 @@ func (client DataSafeClient) patchMaskingColumns(ctx context.Context, request co // PatchSdmMaskingPolicyDifferenceColumns Patches one or more SDM masking policy difference columns. You can use this operation to set the plannedAction attribute before using // ApplySdmMaskingPolicyDifference to process the difference based on this attribute. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/PatchSdmMaskingPolicyDifferenceColumns.go.html to see an example of how to use PatchSdmMaskingPolicyDifferenceColumns API. // A default retry strategy applies to this operation PatchSdmMaskingPolicyDifferenceColumns() @@ -10781,7 +10781,7 @@ func (client DataSafeClient) patchSdmMaskingPolicyDifferenceColumns(ctx context. // To create sensitive columns, use CreateSensitiveColumnDetails as the patch value. And to update sensitive columns, // use UpdateSensitiveColumnDetails as the patch value. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/PatchSensitiveColumns.go.html to see an example of how to use PatchSensitiveColumns API. // A default retry strategy applies to this operation PatchSensitiveColumns() @@ -10839,7 +10839,7 @@ func (client DataSafeClient) patchSensitiveColumns(ctx context.Context, request // PatchTargetAlertPolicyAssociation Creates new target-alert policy associations that will be applied on the target database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/PatchTargetAlertPolicyAssociation.go.html to see an example of how to use PatchTargetAlertPolicyAssociation API. // A default retry strategy applies to this operation PatchTargetAlertPolicyAssociation() @@ -10897,7 +10897,7 @@ func (client DataSafeClient) patchTargetAlertPolicyAssociation(ctx context.Conte // ProvisionAuditPolicy Provision audit policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ProvisionAuditPolicy.go.html to see an example of how to use ProvisionAuditPolicy API. // A default retry strategy applies to this operation ProvisionAuditPolicy() @@ -10961,7 +10961,7 @@ func (client DataSafeClient) provisionAuditPolicy(ctx context.Context, request c // RefreshSecurityAssessment Runs a security assessment, refreshes the latest assessment, and saves it for future reference. // The assessment runs with a securityAssessmentId of type LATEST. Before you start, first call the ListSecurityAssessments operation with filter "type = latest" to get the security assessment id for the target's latest assessment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/RefreshSecurityAssessment.go.html to see an example of how to use RefreshSecurityAssessment API. // A default retry strategy applies to this operation RefreshSecurityAssessment() @@ -11026,7 +11026,7 @@ func (client DataSafeClient) refreshSecurityAssessment(ctx context.Context, requ // Before you start, first call the ListUserAssessments operation with filter "type = latest" to get the user assessment ID for // the target's latest assessment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/RefreshUserAssessment.go.html to see an example of how to use RefreshUserAssessment API. // A default retry strategy applies to this operation RefreshUserAssessment() @@ -11089,7 +11089,7 @@ func (client DataSafeClient) refreshUserAssessment(ctx context.Context, request // RemoveScheduleReport Deletes the schedule of a PDF or XLS report. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/RemoveScheduleReport.go.html to see an example of how to use RemoveScheduleReport API. // A default retry strategy applies to this operation RemoveScheduleReport() @@ -11152,7 +11152,7 @@ func (client DataSafeClient) removeScheduleReport(ctx context.Context, request c // ResumeAuditTrail Resumes the specified audit trail once it got stopped. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ResumeAuditTrail.go.html to see an example of how to use ResumeAuditTrail API. // A default retry strategy applies to this operation ResumeAuditTrail() @@ -11210,7 +11210,7 @@ func (client DataSafeClient) resumeAuditTrail(ctx context.Context, request commo // ResumeWorkRequest Resume the given work request. Issuing a resume does not guarantee of immediate resume of the work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ResumeWorkRequest.go.html to see an example of how to use ResumeWorkRequest API. // A default retry strategy applies to this operation ResumeWorkRequest() @@ -11273,7 +11273,7 @@ func (client DataSafeClient) resumeWorkRequest(ctx context.Context, request comm // RetrieveAuditPolicies Retrieves the audit policy details from the source target database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/RetrieveAuditPolicies.go.html to see an example of how to use RetrieveAuditPolicies API. // A default retry strategy applies to this operation RetrieveAuditPolicies() @@ -11336,7 +11336,7 @@ func (client DataSafeClient) retrieveAuditPolicies(ctx context.Context, request // ScheduleReport Schedules a PDF or XLS report based on parameters and report definition. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/ScheduleReport.go.html to see an example of how to use ScheduleReport API. // A default retry strategy applies to this operation ScheduleReport() @@ -11399,7 +11399,7 @@ func (client DataSafeClient) scheduleReport(ctx context.Context, request common. // SetSecurityAssessmentBaseline Sets the saved security assessment as the baseline in the compartment where the the specified assessment resides. The security assessment needs to be of type 'SAVED'. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/SetSecurityAssessmentBaseline.go.html to see an example of how to use SetSecurityAssessmentBaseline API. // A default retry strategy applies to this operation SetSecurityAssessmentBaseline() @@ -11462,7 +11462,7 @@ func (client DataSafeClient) setSecurityAssessmentBaseline(ctx context.Context, // SetUserAssessmentBaseline Sets the saved user assessment as the baseline in the compartment where the specified assessment resides. The user assessment needs to be of type 'SAVED'. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/SetUserAssessmentBaseline.go.html to see an example of how to use SetUserAssessmentBaseline API. // A default retry strategy applies to this operation SetUserAssessmentBaseline() @@ -11525,7 +11525,7 @@ func (client DataSafeClient) setUserAssessmentBaseline(ctx context.Context, requ // StartAuditTrail Starts collection of audit records on the specified audit trail. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/StartAuditTrail.go.html to see an example of how to use StartAuditTrail API. // A default retry strategy applies to this operation StartAuditTrail() @@ -11588,7 +11588,7 @@ func (client DataSafeClient) startAuditTrail(ctx context.Context, request common // StopAuditTrail Stops the specified audit trail. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/StopAuditTrail.go.html to see an example of how to use StopAuditTrail API. // A default retry strategy applies to this operation StopAuditTrail() @@ -11646,7 +11646,7 @@ func (client DataSafeClient) stopAuditTrail(ctx context.Context, request common. // SuspendWorkRequest Suspend the given work request. Issuing a suspend does not guarantee of a immediate suspend of the work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/SuspendWorkRequest.go.html to see an example of how to use SuspendWorkRequest API. // A default retry strategy applies to this operation SuspendWorkRequest() @@ -11710,7 +11710,7 @@ func (client DataSafeClient) suspendWorkRequest(ctx context.Context, request com // UnsetSecurityAssessmentBaseline Removes the baseline setting for the saved security assessment. The saved security assessment is no longer considered a baseline. // Sets the if-match parameter to the value of the etag from a previous GET or POST response for that resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UnsetSecurityAssessmentBaseline.go.html to see an example of how to use UnsetSecurityAssessmentBaseline API. // A default retry strategy applies to this operation UnsetSecurityAssessmentBaseline() @@ -11774,7 +11774,7 @@ func (client DataSafeClient) unsetSecurityAssessmentBaseline(ctx context.Context // UnsetUserAssessmentBaseline Removes the baseline setting for the saved user assessment. The saved user assessment is no longer considered a baseline. // Sets the if-match parameter to the value of the etag from a previous GET or POST response for that resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UnsetUserAssessmentBaseline.go.html to see an example of how to use UnsetUserAssessmentBaseline API. // A default retry strategy applies to this operation UnsetUserAssessmentBaseline() @@ -11837,7 +11837,7 @@ func (client DataSafeClient) unsetUserAssessmentBaseline(ctx context.Context, re // UpdateAlert Updates the status of the specified alert. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateAlert.go.html to see an example of how to use UpdateAlert API. // A default retry strategy applies to this operation UpdateAlert() @@ -11895,7 +11895,7 @@ func (client DataSafeClient) updateAlert(ctx context.Context, request common.OCI // UpdateAuditArchiveRetrieval Updates the audit archive retrieval. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateAuditArchiveRetrieval.go.html to see an example of how to use UpdateAuditArchiveRetrieval API. // A default retry strategy applies to this operation UpdateAuditArchiveRetrieval() @@ -11953,7 +11953,7 @@ func (client DataSafeClient) updateAuditArchiveRetrieval(ctx context.Context, re // UpdateAuditPolicy Updates the audit policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateAuditPolicy.go.html to see an example of how to use UpdateAuditPolicy API. // A default retry strategy applies to this operation UpdateAuditPolicy() @@ -12011,7 +12011,7 @@ func (client DataSafeClient) updateAuditPolicy(ctx context.Context, request comm // UpdateAuditProfile Updates one or more attributes of the specified audit profile. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateAuditProfile.go.html to see an example of how to use UpdateAuditProfile API. // A default retry strategy applies to this operation UpdateAuditProfile() @@ -12069,7 +12069,7 @@ func (client DataSafeClient) updateAuditProfile(ctx context.Context, request com // UpdateAuditTrail Updates one or more attributes of the specified audit trail. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateAuditTrail.go.html to see an example of how to use UpdateAuditTrail API. // A default retry strategy applies to this operation UpdateAuditTrail() @@ -12127,7 +12127,7 @@ func (client DataSafeClient) updateAuditTrail(ctx context.Context, request commo // UpdateDataSafePrivateEndpoint Updates one or more attributes of the specified Data Safe private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateDataSafePrivateEndpoint.go.html to see an example of how to use UpdateDataSafePrivateEndpoint API. // A default retry strategy applies to this operation UpdateDataSafePrivateEndpoint() @@ -12185,7 +12185,7 @@ func (client DataSafeClient) updateDataSafePrivateEndpoint(ctx context.Context, // UpdateLibraryMaskingFormat Updates one or more attributes of the specified library masking format. Note that updating the formatEntries attribute replaces all the existing masking format entries with the specified format entries. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateLibraryMaskingFormat.go.html to see an example of how to use UpdateLibraryMaskingFormat API. // A default retry strategy applies to this operation UpdateLibraryMaskingFormat() @@ -12244,7 +12244,7 @@ func (client DataSafeClient) updateLibraryMaskingFormat(ctx context.Context, req // UpdateMaskingColumn Updates one or more attributes of the specified masking column. Note that updating the maskingFormats // attribute replaces the currently assigned masking formats with the specified masking formats. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateMaskingColumn.go.html to see an example of how to use UpdateMaskingColumn API. // A default retry strategy applies to this operation UpdateMaskingColumn() @@ -12302,7 +12302,7 @@ func (client DataSafeClient) updateMaskingColumn(ctx context.Context, request co // UpdateMaskingPolicy Updates one or more attributes of the specified masking policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateMaskingPolicy.go.html to see an example of how to use UpdateMaskingPolicy API. // A default retry strategy applies to this operation UpdateMaskingPolicy() @@ -12360,7 +12360,7 @@ func (client DataSafeClient) updateMaskingPolicy(ctx context.Context, request co // UpdateOnPremConnector Updates one or more attributes of the specified on-premises connector. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateOnPremConnector.go.html to see an example of how to use UpdateOnPremConnector API. // A default retry strategy applies to this operation UpdateOnPremConnector() @@ -12418,7 +12418,7 @@ func (client DataSafeClient) updateOnPremConnector(ctx context.Context, request // UpdateOnPremConnectorWallet Updates the wallet for the specified on-premises connector to a new version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateOnPremConnectorWallet.go.html to see an example of how to use UpdateOnPremConnectorWallet API. // A default retry strategy applies to this operation UpdateOnPremConnectorWallet() @@ -12481,7 +12481,7 @@ func (client DataSafeClient) updateOnPremConnectorWallet(ctx context.Context, re // UpdateReportDefinition Updates the specified report definition. Only user created report definition can be updated. Seeded report definitions need to be saved as new report definition first. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateReportDefinition.go.html to see an example of how to use UpdateReportDefinition API. // A default retry strategy applies to this operation UpdateReportDefinition() @@ -12544,7 +12544,7 @@ func (client DataSafeClient) updateReportDefinition(ctx context.Context, request // UpdateSdmMaskingPolicyDifference Updates one or more attributes of the specified sdm masking policy difference. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateSdmMaskingPolicyDifference.go.html to see an example of how to use UpdateSdmMaskingPolicyDifference API. // A default retry strategy applies to this operation UpdateSdmMaskingPolicyDifference() @@ -12602,7 +12602,7 @@ func (client DataSafeClient) updateSdmMaskingPolicyDifference(ctx context.Contex // UpdateSecurityAssessment Updates one or more attributes of the specified security assessment. This operation allows to update the security assessment displayName, description, or schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateSecurityAssessment.go.html to see an example of how to use UpdateSecurityAssessment API. // A default retry strategy applies to this operation UpdateSecurityAssessment() @@ -12660,7 +12660,7 @@ func (client DataSafeClient) updateSecurityAssessment(ctx context.Context, reque // UpdateSensitiveColumn Updates one or more attributes of the specified sensitive column. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateSensitiveColumn.go.html to see an example of how to use UpdateSensitiveColumn API. // A default retry strategy applies to this operation UpdateSensitiveColumn() @@ -12719,7 +12719,7 @@ func (client DataSafeClient) updateSensitiveColumn(ctx context.Context, request // UpdateSensitiveDataModel Updates one or more attributes of the specified sensitive data model. Note that updating any attribute of a sensitive // data model does not perform data discovery. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateSensitiveDataModel.go.html to see an example of how to use UpdateSensitiveDataModel API. // A default retry strategy applies to this operation UpdateSensitiveDataModel() @@ -12777,7 +12777,7 @@ func (client DataSafeClient) updateSensitiveDataModel(ctx context.Context, reque // UpdateSensitiveType Updates one or more attributes of the specified sensitive type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateSensitiveType.go.html to see an example of how to use UpdateSensitiveType API. // A default retry strategy applies to this operation UpdateSensitiveType() @@ -12835,7 +12835,7 @@ func (client DataSafeClient) updateSensitiveType(ctx context.Context, request co // UpdateTargetAlertPolicyAssociation Updates the specified target-alert policy association. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateTargetAlertPolicyAssociation.go.html to see an example of how to use UpdateTargetAlertPolicyAssociation API. // A default retry strategy applies to this operation UpdateTargetAlertPolicyAssociation() @@ -12893,7 +12893,7 @@ func (client DataSafeClient) updateTargetAlertPolicyAssociation(ctx context.Cont // UpdateTargetDatabase Updates one or more attributes of the specified Data Safe target database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateTargetDatabase.go.html to see an example of how to use UpdateTargetDatabase API. // A default retry strategy applies to this operation UpdateTargetDatabase() @@ -12956,7 +12956,7 @@ func (client DataSafeClient) updateTargetDatabase(ctx context.Context, request c // UpdateUserAssessment Updates one or more attributes of the specified user assessment. This operation allows to update the user assessment displayName, description, or schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UpdateUserAssessment.go.html to see an example of how to use UpdateUserAssessment API. // A default retry strategy applies to this operation UpdateUserAssessment() @@ -13018,7 +13018,7 @@ func (client DataSafeClient) updateUserAssessment(ctx context.Context, request c // Note that the upload operation replaces the content of the specified masking policy, // including all the existing columns and masking formats, with the content of the file. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UploadMaskingPolicy.go.html to see an example of how to use UploadMaskingPolicy API. // A default retry strategy applies to this operation UploadMaskingPolicy() @@ -13079,7 +13079,7 @@ func (client DataSafeClient) uploadMaskingPolicy(ctx context.Context, request co // and then use this endpoint to upload the data model file. Note that the upload operation replaces the content of the // specified sensitive data model, including all the existing columns and their relationships, with the content of the file. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datasafe/UploadSensitiveDataModel.go.html to see an example of how to use UploadSensitiveDataModel API. // A default retry strategy applies to this operation UploadSensitiveDataModel() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/delete_rows_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/delete_rows_format_entry.go index 638bf236166..734d3521bde 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/delete_rows_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/delete_rows_format_entry.go @@ -30,7 +30,7 @@ type DeleteRowsFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m DeleteRowsFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_encryption_date_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_encryption_date_format_entry.go index c941cd6fa04..d8a960202a8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_encryption_date_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_encryption_date_format_entry.go @@ -45,7 +45,7 @@ type DeterministicEncryptionDateFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m DeterministicEncryptionDateFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_encryption_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_encryption_format_entry.go index 16011ea63f1..a4f448f8d63 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_encryption_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_encryption_format_entry.go @@ -48,7 +48,7 @@ type DeterministicEncryptionFormatEntry struct { RegularExpression *string `mandatory:"false" json:"regularExpression"` } -//GetDescription returns Description +// GetDescription returns Description func (m DeterministicEncryptionFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_substitution_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_substitution_format_entry.go index 0c93d8771d8..3f9daf16a0c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_substitution_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/deterministic_substitution_format_entry.go @@ -41,7 +41,7 @@ type DeterministicSubstitutionFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m DeterministicSubstitutionFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/fixed_number_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/fixed_number_format_entry.go index 0f55dbb119f..1ddd1756d35 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/fixed_number_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/fixed_number_format_entry.go @@ -27,7 +27,7 @@ type FixedNumberFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m FixedNumberFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/fixed_string_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/fixed_string_format_entry.go index dbf05645684..698b6b49514 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/fixed_string_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/fixed_string_format_entry.go @@ -27,7 +27,7 @@ type FixedStringFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m FixedStringFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/installed_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/installed_database_details.go index dc3e3cd038f..3d23c502591 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/installed_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/installed_database_details.go @@ -35,7 +35,7 @@ type InstalledDatabaseDetails struct { InfrastructureType InfrastructureTypeEnum `mandatory:"true" json:"infrastructureType"` } -//GetInfrastructureType returns InfrastructureType +// GetInfrastructureType returns InfrastructureType func (m InstalledDatabaseDetails) GetInfrastructureType() InfrastructureTypeEnum { return m.InfrastructureType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/library_masking_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/library_masking_format_entry.go index 265346e469e..7ee8aa2e4db 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/library_masking_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/library_masking_format_entry.go @@ -30,7 +30,7 @@ type LibraryMaskingFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m LibraryMaskingFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/null_value_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/null_value_format_entry.go index d33e38ab2fd..b4fbea90fe2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/null_value_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/null_value_format_entry.go @@ -25,7 +25,7 @@ type NullValueFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m NullValueFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_insert_instruction.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_insert_instruction.go index 588f0dae8f8..ccd8e1438c2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_insert_instruction.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_insert_instruction.go @@ -26,7 +26,7 @@ type PatchInsertInstruction struct { Value *interface{} `mandatory:"true" json:"value"` } -//GetSelection returns Selection +// GetSelection returns Selection func (m PatchInsertInstruction) GetSelection() *string { return m.Selection } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_merge_instruction.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_merge_instruction.go index db9a337c761..a47821022bb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_merge_instruction.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_merge_instruction.go @@ -26,7 +26,7 @@ type PatchMergeInstruction struct { Value *interface{} `mandatory:"false" json:"value"` } -//GetSelection returns Selection +// GetSelection returns Selection func (m PatchMergeInstruction) GetSelection() *string { return m.Selection } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_remove_instruction.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_remove_instruction.go index 19a51864a3d..83975f95b44 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_remove_instruction.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/patch_remove_instruction.go @@ -23,7 +23,7 @@ type PatchRemoveInstruction struct { Selection *string `mandatory:"true" json:"selection"` } -//GetSelection returns Selection +// GetSelection returns Selection func (m PatchRemoveInstruction) GetSelection() *string { return m.Selection } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/ppf_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/ppf_format_entry.go index a109ddf40f3..758e87ff8ad 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/ppf_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/ppf_format_entry.go @@ -36,7 +36,7 @@ type PpfFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m PpfFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/preserve_original_data_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/preserve_original_data_format_entry.go index 5583ad416b2..6981355d0dd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/preserve_original_data_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/preserve_original_data_format_entry.go @@ -26,7 +26,7 @@ type PreserveOriginalDataFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m PreserveOriginalDataFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_date_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_date_format_entry.go index fd5594f6712..88917e5e3e7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_date_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_date_format_entry.go @@ -35,7 +35,7 @@ type RandomDateFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m RandomDateFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_decimal_number_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_decimal_number_format_entry.go index 1cd279c08b8..ecf6278de48 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_decimal_number_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_decimal_number_format_entry.go @@ -36,7 +36,7 @@ type RandomDecimalNumberFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m RandomDecimalNumberFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_digits_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_digits_format_entry.go index 20d9ba2d80c..41d74ab1789 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_digits_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_digits_format_entry.go @@ -39,7 +39,7 @@ type RandomDigitsFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m RandomDigitsFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_list_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_list_format_entry.go index 57a0f2c0d1c..97695091d64 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_list_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_list_format_entry.go @@ -31,7 +31,7 @@ type RandomListFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m RandomListFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_number_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_number_format_entry.go index 647bab9adc7..f68a344b894 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_number_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_number_format_entry.go @@ -38,7 +38,7 @@ type RandomNumberFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m RandomNumberFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_string_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_string_format_entry.go index 5a65eba14f9..76a380bc455 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_string_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_string_format_entry.go @@ -38,7 +38,7 @@ type RandomStringFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m RandomStringFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_substitution_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_substitution_format_entry.go index 66680d261bc..d053c268ea4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_substitution_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/random_substitution_format_entry.go @@ -40,7 +40,7 @@ type RandomSubstitutionFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m RandomSubstitutionFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/regular_expression_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/regular_expression_format_entry.go index 5e6970e5067..77572e885b2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/regular_expression_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/regular_expression_format_entry.go @@ -36,7 +36,7 @@ type RegularExpressionFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m RegularExpressionFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sensitive_category.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sensitive_category.go index 43945d84541..e3db0934e74 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sensitive_category.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sensitive_category.go @@ -62,67 +62,67 @@ type SensitiveCategory struct { Source SensitiveTypeSourceEnum `mandatory:"true" json:"source"` } -//GetId returns Id +// GetId returns Id func (m SensitiveCategory) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m SensitiveCategory) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m SensitiveCategory) GetCompartmentId() *string { return m.CompartmentId } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SensitiveCategory) GetLifecycleState() DiscoveryLifecycleStateEnum { return m.LifecycleState } -//GetShortName returns ShortName +// GetShortName returns ShortName func (m SensitiveCategory) GetShortName() *string { return m.ShortName } -//GetSource returns Source +// GetSource returns Source func (m SensitiveCategory) GetSource() SensitiveTypeSourceEnum { return m.Source } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SensitiveCategory) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SensitiveCategory) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetDescription returns Description +// GetDescription returns Description func (m SensitiveCategory) GetDescription() *string { return m.Description } -//GetParentCategoryId returns ParentCategoryId +// GetParentCategoryId returns ParentCategoryId func (m SensitiveCategory) GetParentCategoryId() *string { return m.ParentCategoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SensitiveCategory) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SensitiveCategory) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m SensitiveCategory) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sensitive_type_pattern.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sensitive_type_pattern.go index 114674b504d..a3435c41c41 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sensitive_type_pattern.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sensitive_type_pattern.go @@ -78,67 +78,67 @@ type SensitiveTypePattern struct { Source SensitiveTypeSourceEnum `mandatory:"true" json:"source"` } -//GetId returns Id +// GetId returns Id func (m SensitiveTypePattern) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m SensitiveTypePattern) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m SensitiveTypePattern) GetCompartmentId() *string { return m.CompartmentId } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SensitiveTypePattern) GetLifecycleState() DiscoveryLifecycleStateEnum { return m.LifecycleState } -//GetShortName returns ShortName +// GetShortName returns ShortName func (m SensitiveTypePattern) GetShortName() *string { return m.ShortName } -//GetSource returns Source +// GetSource returns Source func (m SensitiveTypePattern) GetSource() SensitiveTypeSourceEnum { return m.Source } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SensitiveTypePattern) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SensitiveTypePattern) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetDescription returns Description +// GetDescription returns Description func (m SensitiveTypePattern) GetDescription() *string { return m.Description } -//GetParentCategoryId returns ParentCategoryId +// GetParentCategoryId returns ParentCategoryId func (m SensitiveTypePattern) GetParentCategoryId() *string { return m.ParentCategoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SensitiveTypePattern) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SensitiveTypePattern) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m SensitiveTypePattern) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/shuffle_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/shuffle_format_entry.go index 9341c40d0ed..0b258a8f9e0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/shuffle_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/shuffle_format_entry.go @@ -35,7 +35,7 @@ type ShuffleFormatEntry struct { GroupingColumns []string `mandatory:"false" json:"groupingColumns"` } -//GetDescription returns Description +// GetDescription returns Description func (m ShuffleFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sql_expression_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sql_expression_format_entry.go index 573062e5036..da6c2ef64ac 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sql_expression_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/sql_expression_format_entry.go @@ -34,7 +34,7 @@ type SqlExpressionFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m SqlExpressionFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/substring_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/substring_format_entry.go index 2e36cb5b9de..9c2b57ce44d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/substring_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/substring_format_entry.go @@ -37,7 +37,7 @@ type SubstringFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m SubstringFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/truncate_table_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/truncate_table_format_entry.go index 9aaecc8f6ad..f1798f5f160 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/truncate_table_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/truncate_table_format_entry.go @@ -27,7 +27,7 @@ type TruncateTableFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m TruncateTableFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/udf_format_entry.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/udf_format_entry.go index f96eb204859..c7b99c0d6a7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/udf_format_entry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/udf_format_entry.go @@ -31,7 +31,7 @@ type UdfFormatEntry struct { Description *string `mandatory:"false" json:"description"` } -//GetDescription returns Description +// GetDescription returns Description func (m UdfFormatEntry) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/update_sensitive_category_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/update_sensitive_category_details.go index 6dc49198029..53a8947602a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/update_sensitive_category_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/update_sensitive_category_details.go @@ -40,32 +40,32 @@ type UpdateSensitiveCategoryDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateSensitiveCategoryDetails) GetDisplayName() *string { return m.DisplayName } -//GetShortName returns ShortName +// GetShortName returns ShortName func (m UpdateSensitiveCategoryDetails) GetShortName() *string { return m.ShortName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateSensitiveCategoryDetails) GetDescription() *string { return m.Description } -//GetParentCategoryId returns ParentCategoryId +// GetParentCategoryId returns ParentCategoryId func (m UpdateSensitiveCategoryDetails) GetParentCategoryId() *string { return m.ParentCategoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateSensitiveCategoryDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateSensitiveCategoryDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/update_sensitive_type_pattern_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/update_sensitive_type_pattern_details.go index 0e12be0fc8f..83d60f5fcc7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/update_sensitive_type_pattern_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datasafe/update_sensitive_type_pattern_details.go @@ -56,32 +56,32 @@ type UpdateSensitiveTypePatternDetails struct { SearchType SensitiveTypePatternSearchTypeEnum `mandatory:"false" json:"searchType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateSensitiveTypePatternDetails) GetDisplayName() *string { return m.DisplayName } -//GetShortName returns ShortName +// GetShortName returns ShortName func (m UpdateSensitiveTypePatternDetails) GetShortName() *string { return m.ShortName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateSensitiveTypePatternDetails) GetDescription() *string { return m.Description } -//GetParentCategoryId returns ParentCategoryId +// GetParentCategoryId returns ParentCategoryId func (m UpdateSensitiveTypePatternDetails) GetParentCategoryId() *string { return m.ParentCategoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateSensitiveTypePatternDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateSensitiveTypePatternDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/datascience_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/datascience_client.go index 08b0ab49f48..0e190c01243 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/datascience_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/datascience_client.go @@ -93,7 +93,7 @@ func (client *DataScienceClient) ConfigurationProvider() *common.ConfigurationPr // ActivateModel Activates the model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ActivateModel.go.html to see an example of how to use ActivateModel API. // A default retry strategy applies to this operation ActivateModel() @@ -151,7 +151,7 @@ func (client DataScienceClient) activateModel(ctx context.Context, request commo // ActivateModelDeployment Activates the model deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ActivateModelDeployment.go.html to see an example of how to use ActivateModelDeployment API. func (client DataScienceClient) ActivateModelDeployment(ctx context.Context, request ActivateModelDeploymentRequest) (response ActivateModelDeploymentResponse, err error) { @@ -208,7 +208,7 @@ func (client DataScienceClient) activateModelDeployment(ctx context.Context, req // ActivateNotebookSession Activates the notebook session. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ActivateNotebookSession.go.html to see an example of how to use ActivateNotebookSession API. func (client DataScienceClient) ActivateNotebookSession(ctx context.Context, request ActivateNotebookSessionRequest) (response ActivateNotebookSessionResponse, err error) { @@ -265,7 +265,7 @@ func (client DataScienceClient) activateNotebookSession(ctx context.Context, req // CancelJobRun Cancels an IN_PROGRESS job run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CancelJobRun.go.html to see an example of how to use CancelJobRun API. // A default retry strategy applies to this operation CancelJobRun() @@ -323,7 +323,7 @@ func (client DataScienceClient) cancelJobRun(ctx context.Context, request common // CancelPipelineRun Cancel a PipelineRun. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CancelPipelineRun.go.html to see an example of how to use CancelPipelineRun API. // A default retry strategy applies to this operation CancelPipelineRun() @@ -386,7 +386,7 @@ func (client DataScienceClient) cancelPipelineRun(ctx context.Context, request c // CancelWorkRequest Cancels a work request that has not started. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. func (client DataScienceClient) CancelWorkRequest(ctx context.Context, request CancelWorkRequestRequest) (response CancelWorkRequestResponse, err error) { @@ -443,7 +443,7 @@ func (client DataScienceClient) cancelWorkRequest(ctx context.Context, request c // ChangeJobCompartment Changes a job's compartment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ChangeJobCompartment.go.html to see an example of how to use ChangeJobCompartment API. func (client DataScienceClient) ChangeJobCompartment(ctx context.Context, request ChangeJobCompartmentRequest) (response ChangeJobCompartmentResponse, err error) { @@ -500,7 +500,7 @@ func (client DataScienceClient) changeJobCompartment(ctx context.Context, reques // ChangeJobRunCompartment Changes a job run's compartment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ChangeJobRunCompartment.go.html to see an example of how to use ChangeJobRunCompartment API. func (client DataScienceClient) ChangeJobRunCompartment(ctx context.Context, request ChangeJobRunCompartmentRequest) (response ChangeJobRunCompartmentResponse, err error) { @@ -557,7 +557,7 @@ func (client DataScienceClient) changeJobRunCompartment(ctx context.Context, req // ChangeModelCompartment Moves a model resource into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ChangeModelCompartment.go.html to see an example of how to use ChangeModelCompartment API. func (client DataScienceClient) ChangeModelCompartment(ctx context.Context, request ChangeModelCompartmentRequest) (response ChangeModelCompartmentResponse, err error) { @@ -619,7 +619,7 @@ func (client DataScienceClient) changeModelCompartment(ctx context.Context, requ // ChangeModelDeploymentCompartment Moves a model deployment into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ChangeModelDeploymentCompartment.go.html to see an example of how to use ChangeModelDeploymentCompartment API. func (client DataScienceClient) ChangeModelDeploymentCompartment(ctx context.Context, request ChangeModelDeploymentCompartmentRequest) (response ChangeModelDeploymentCompartmentResponse, err error) { @@ -681,7 +681,7 @@ func (client DataScienceClient) changeModelDeploymentCompartment(ctx context.Con // ChangeModelVersionSetCompartment Moves a modelVersionSet resource into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ChangeModelVersionSetCompartment.go.html to see an example of how to use ChangeModelVersionSetCompartment API. func (client DataScienceClient) ChangeModelVersionSetCompartment(ctx context.Context, request ChangeModelVersionSetCompartmentRequest) (response ChangeModelVersionSetCompartmentResponse, err error) { @@ -743,7 +743,7 @@ func (client DataScienceClient) changeModelVersionSetCompartment(ctx context.Con // ChangeNotebookSessionCompartment Moves a notebook session resource into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ChangeNotebookSessionCompartment.go.html to see an example of how to use ChangeNotebookSessionCompartment API. func (client DataScienceClient) ChangeNotebookSessionCompartment(ctx context.Context, request ChangeNotebookSessionCompartmentRequest) (response ChangeNotebookSessionCompartmentResponse, err error) { @@ -805,7 +805,7 @@ func (client DataScienceClient) changeNotebookSessionCompartment(ctx context.Con // ChangePipelineCompartment Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ChangePipelineCompartment.go.html to see an example of how to use ChangePipelineCompartment API. func (client DataScienceClient) ChangePipelineCompartment(ctx context.Context, request ChangePipelineCompartmentRequest) (response ChangePipelineCompartmentResponse, err error) { @@ -862,7 +862,7 @@ func (client DataScienceClient) changePipelineCompartment(ctx context.Context, r // ChangePipelineRunCompartment Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ChangePipelineRunCompartment.go.html to see an example of how to use ChangePipelineRunCompartment API. func (client DataScienceClient) ChangePipelineRunCompartment(ctx context.Context, request ChangePipelineRunCompartmentRequest) (response ChangePipelineRunCompartmentResponse, err error) { @@ -919,7 +919,7 @@ func (client DataScienceClient) changePipelineRunCompartment(ctx context.Context // ChangeProjectCompartment Moves a project resource into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ChangeProjectCompartment.go.html to see an example of how to use ChangeProjectCompartment API. func (client DataScienceClient) ChangeProjectCompartment(ctx context.Context, request ChangeProjectCompartmentRequest) (response ChangeProjectCompartmentResponse, err error) { @@ -981,7 +981,7 @@ func (client DataScienceClient) changeProjectCompartment(ctx context.Context, re // CreateJob Creates a job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateJob.go.html to see an example of how to use CreateJob API. // A default retry strategy applies to this operation CreateJob() @@ -1044,7 +1044,7 @@ func (client DataScienceClient) createJob(ctx context.Context, request common.OC // CreateJobArtifact Uploads a job artifact. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateJobArtifact.go.html to see an example of how to use CreateJobArtifact API. func (client DataScienceClient) CreateJobArtifact(ctx context.Context, request CreateJobArtifactRequest) (response CreateJobArtifactResponse, err error) { @@ -1116,7 +1116,7 @@ func (client DataScienceClient) createJobArtifact(ctx context.Context, request c // CreateJobRun Creates a job run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateJobRun.go.html to see an example of how to use CreateJobRun API. // A default retry strategy applies to this operation CreateJobRun() @@ -1179,7 +1179,7 @@ func (client DataScienceClient) createJobRun(ctx context.Context, request common // CreateModel Creates a new model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateModel.go.html to see an example of how to use CreateModel API. // A default retry strategy applies to this operation CreateModel() @@ -1242,7 +1242,7 @@ func (client DataScienceClient) createModel(ctx context.Context, request common. // CreateModelArtifact Creates model artifact for specified model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateModelArtifact.go.html to see an example of how to use CreateModelArtifact API. // A default retry strategy applies to this operation CreateModelArtifact() @@ -1315,7 +1315,7 @@ func (client DataScienceClient) createModelArtifact(ctx context.Context, request // CreateModelDeployment Creates a new model deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateModelDeployment.go.html to see an example of how to use CreateModelDeployment API. // A default retry strategy applies to this operation CreateModelDeployment() @@ -1378,7 +1378,7 @@ func (client DataScienceClient) createModelDeployment(ctx context.Context, reque // CreateModelProvenance Creates provenance information for the specified model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateModelProvenance.go.html to see an example of how to use CreateModelProvenance API. // A default retry strategy applies to this operation CreateModelProvenance() @@ -1441,7 +1441,7 @@ func (client DataScienceClient) createModelProvenance(ctx context.Context, reque // CreateModelVersionSet Creates a new modelVersionSet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateModelVersionSet.go.html to see an example of how to use CreateModelVersionSet API. // A default retry strategy applies to this operation CreateModelVersionSet() @@ -1504,7 +1504,7 @@ func (client DataScienceClient) createModelVersionSet(ctx context.Context, reque // CreateNotebookSession Creates a new notebook session. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateNotebookSession.go.html to see an example of how to use CreateNotebookSession API. // A default retry strategy applies to this operation CreateNotebookSession() @@ -1567,7 +1567,7 @@ func (client DataScienceClient) createNotebookSession(ctx context.Context, reque // CreatePipeline Creates a new Pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreatePipeline.go.html to see an example of how to use CreatePipeline API. // A default retry strategy applies to this operation CreatePipeline() @@ -1630,7 +1630,7 @@ func (client DataScienceClient) createPipeline(ctx context.Context, request comm // CreatePipelineRun Creates a new PipelineRun. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreatePipelineRun.go.html to see an example of how to use CreatePipelineRun API. // A default retry strategy applies to this operation CreatePipelineRun() @@ -1693,7 +1693,7 @@ func (client DataScienceClient) createPipelineRun(ctx context.Context, request c // CreateProject Creates a new project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateProject.go.html to see an example of how to use CreateProject API. // A default retry strategy applies to this operation CreateProject() @@ -1756,7 +1756,7 @@ func (client DataScienceClient) createProject(ctx context.Context, request commo // CreateStepArtifact Upload the artifact for a step in the pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/CreateStepArtifact.go.html to see an example of how to use CreateStepArtifact API. func (client DataScienceClient) CreateStepArtifact(ctx context.Context, request CreateStepArtifactRequest) (response CreateStepArtifactResponse, err error) { @@ -1828,7 +1828,7 @@ func (client DataScienceClient) createStepArtifact(ctx context.Context, request // DeactivateModel Deactivates the model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeactivateModel.go.html to see an example of how to use DeactivateModel API. // A default retry strategy applies to this operation DeactivateModel() @@ -1886,7 +1886,7 @@ func (client DataScienceClient) deactivateModel(ctx context.Context, request com // DeactivateModelDeployment Deactivates the model deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeactivateModelDeployment.go.html to see an example of how to use DeactivateModelDeployment API. func (client DataScienceClient) DeactivateModelDeployment(ctx context.Context, request DeactivateModelDeploymentRequest) (response DeactivateModelDeploymentResponse, err error) { @@ -1943,7 +1943,7 @@ func (client DataScienceClient) deactivateModelDeployment(ctx context.Context, r // DeactivateNotebookSession Deactivates the notebook session. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeactivateNotebookSession.go.html to see an example of how to use DeactivateNotebookSession API. func (client DataScienceClient) DeactivateNotebookSession(ctx context.Context, request DeactivateNotebookSessionRequest) (response DeactivateNotebookSessionResponse, err error) { @@ -2000,7 +2000,7 @@ func (client DataScienceClient) deactivateNotebookSession(ctx context.Context, r // DeleteJob Deletes a job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeleteJob.go.html to see an example of how to use DeleteJob API. // A default retry strategy applies to this operation DeleteJob() @@ -2058,7 +2058,7 @@ func (client DataScienceClient) deleteJob(ctx context.Context, request common.OC // DeleteJobRun Deletes a job run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeleteJobRun.go.html to see an example of how to use DeleteJobRun API. // A default retry strategy applies to this operation DeleteJobRun() @@ -2116,7 +2116,7 @@ func (client DataScienceClient) deleteJobRun(ctx context.Context, request common // DeleteModel Deletes the specified model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeleteModel.go.html to see an example of how to use DeleteModel API. // A default retry strategy applies to this operation DeleteModel() @@ -2174,7 +2174,7 @@ func (client DataScienceClient) deleteModel(ctx context.Context, request common. // DeleteModelDeployment Deletes the specified model deployment. Any unsaved work in this model deployment is lost. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeleteModelDeployment.go.html to see an example of how to use DeleteModelDeployment API. // A default retry strategy applies to this operation DeleteModelDeployment() @@ -2232,7 +2232,7 @@ func (client DataScienceClient) deleteModelDeployment(ctx context.Context, reque // DeleteModelVersionSet Deletes the specified modelVersionSet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeleteModelVersionSet.go.html to see an example of how to use DeleteModelVersionSet API. // A default retry strategy applies to this operation DeleteModelVersionSet() @@ -2290,7 +2290,7 @@ func (client DataScienceClient) deleteModelVersionSet(ctx context.Context, reque // DeleteNotebookSession Deletes the specified notebook session. Any unsaved work in this notebook session are lost. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeleteNotebookSession.go.html to see an example of how to use DeleteNotebookSession API. // A default retry strategy applies to this operation DeleteNotebookSession() @@ -2348,7 +2348,7 @@ func (client DataScienceClient) deleteNotebookSession(ctx context.Context, reque // DeletePipeline Deletes a Pipeline resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeletePipeline.go.html to see an example of how to use DeletePipeline API. func (client DataScienceClient) DeletePipeline(ctx context.Context, request DeletePipelineRequest) (response DeletePipelineResponse, err error) { @@ -2405,7 +2405,7 @@ func (client DataScienceClient) deletePipeline(ctx context.Context, request comm // DeletePipelineRun Deletes a PipelineRun resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeletePipelineRun.go.html to see an example of how to use DeletePipelineRun API. func (client DataScienceClient) DeletePipelineRun(ctx context.Context, request DeletePipelineRunRequest) (response DeletePipelineRunResponse, err error) { @@ -2462,7 +2462,7 @@ func (client DataScienceClient) deletePipelineRun(ctx context.Context, request c // DeleteProject Deletes the specified project. This operation fails unless all associated resources (notebook sessions or models) are in a DELETED state. You must delete all associated resources before deleting a project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/DeleteProject.go.html to see an example of how to use DeleteProject API. // A default retry strategy applies to this operation DeleteProject() @@ -2520,7 +2520,7 @@ func (client DataScienceClient) deleteProject(ctx context.Context, request commo // ExportModelArtifact Export model artifact from source to the service bucket // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ExportModelArtifact.go.html to see an example of how to use ExportModelArtifact API. // A default retry strategy applies to this operation ExportModelArtifact() @@ -2583,7 +2583,7 @@ func (client DataScienceClient) exportModelArtifact(ctx context.Context, request // GetJob Gets a job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetJob.go.html to see an example of how to use GetJob API. // A default retry strategy applies to this operation GetJob() @@ -2641,7 +2641,7 @@ func (client DataScienceClient) getJob(ctx context.Context, request common.OCIRe // GetJobArtifactContent Downloads job artifact content for specified job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetJobArtifactContent.go.html to see an example of how to use GetJobArtifactContent API. // A default retry strategy applies to this operation GetJobArtifactContent() @@ -2698,7 +2698,7 @@ func (client DataScienceClient) getJobArtifactContent(ctx context.Context, reque // GetJobRun Gets a job run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetJobRun.go.html to see an example of how to use GetJobRun API. // A default retry strategy applies to this operation GetJobRun() @@ -2756,7 +2756,7 @@ func (client DataScienceClient) getJobRun(ctx context.Context, request common.OC // GetModel Gets the specified model's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetModel.go.html to see an example of how to use GetModel API. // A default retry strategy applies to this operation GetModel() @@ -2814,7 +2814,7 @@ func (client DataScienceClient) getModel(ctx context.Context, request common.OCI // GetModelArtifactContent Downloads model artifact content for specified model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetModelArtifactContent.go.html to see an example of how to use GetModelArtifactContent API. // A default retry strategy applies to this operation GetModelArtifactContent() @@ -2871,7 +2871,7 @@ func (client DataScienceClient) getModelArtifactContent(ctx context.Context, req // GetModelDeployment Retrieves the model deployment for the specified `modelDeploymentId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetModelDeployment.go.html to see an example of how to use GetModelDeployment API. // A default retry strategy applies to this operation GetModelDeployment() @@ -2929,7 +2929,7 @@ func (client DataScienceClient) getModelDeployment(ctx context.Context, request // GetModelProvenance Gets provenance information for specified model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetModelProvenance.go.html to see an example of how to use GetModelProvenance API. // A default retry strategy applies to this operation GetModelProvenance() @@ -2987,7 +2987,7 @@ func (client DataScienceClient) getModelProvenance(ctx context.Context, request // GetModelVersionSet Gets the specified model version set information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetModelVersionSet.go.html to see an example of how to use GetModelVersionSet API. // A default retry strategy applies to this operation GetModelVersionSet() @@ -3045,7 +3045,7 @@ func (client DataScienceClient) getModelVersionSet(ctx context.Context, request // GetNotebookSession Gets the specified notebook session's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetNotebookSession.go.html to see an example of how to use GetNotebookSession API. // A default retry strategy applies to this operation GetNotebookSession() @@ -3103,7 +3103,7 @@ func (client DataScienceClient) getNotebookSession(ctx context.Context, request // GetPipeline Gets a Pipeline by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetPipeline.go.html to see an example of how to use GetPipeline API. // A default retry strategy applies to this operation GetPipeline() @@ -3161,7 +3161,7 @@ func (client DataScienceClient) getPipeline(ctx context.Context, request common. // GetPipelineRun Gets a PipelineRun by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetPipelineRun.go.html to see an example of how to use GetPipelineRun API. // A default retry strategy applies to this operation GetPipelineRun() @@ -3219,7 +3219,7 @@ func (client DataScienceClient) getPipelineRun(ctx context.Context, request comm // GetProject Gets the specified project's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetProject.go.html to see an example of how to use GetProject API. // A default retry strategy applies to this operation GetProject() @@ -3277,7 +3277,7 @@ func (client DataScienceClient) getProject(ctx context.Context, request common.O // GetStepArtifactContent Download the artifact for a step in the pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetStepArtifactContent.go.html to see an example of how to use GetStepArtifactContent API. // A default retry strategy applies to this operation GetStepArtifactContent() @@ -3344,7 +3344,7 @@ func (client DataScienceClient) getStepArtifactContent(ctx context.Context, requ // GetWorkRequest Gets the specified work request's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -3402,7 +3402,7 @@ func (client DataScienceClient) getWorkRequest(ctx context.Context, request comm // HeadJobArtifact Gets job artifact metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/HeadJobArtifact.go.html to see an example of how to use HeadJobArtifact API. // A default retry strategy applies to this operation HeadJobArtifact() @@ -3460,7 +3460,7 @@ func (client DataScienceClient) headJobArtifact(ctx context.Context, request com // HeadModelArtifact Gets model artifact metadata for specified model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/HeadModelArtifact.go.html to see an example of how to use HeadModelArtifact API. // A default retry strategy applies to this operation HeadModelArtifact() @@ -3518,7 +3518,7 @@ func (client DataScienceClient) headModelArtifact(ctx context.Context, request c // HeadStepArtifact Get the artifact metadata for a step in the pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/HeadStepArtifact.go.html to see an example of how to use HeadStepArtifact API. // A default retry strategy applies to this operation HeadStepArtifact() @@ -3576,7 +3576,7 @@ func (client DataScienceClient) headStepArtifact(ctx context.Context, request co // ImportModelArtifact Import model artifact from service bucket // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ImportModelArtifact.go.html to see an example of how to use ImportModelArtifact API. func (client DataScienceClient) ImportModelArtifact(ctx context.Context, request ImportModelArtifactRequest) (response ImportModelArtifactResponse, err error) { @@ -3633,7 +3633,7 @@ func (client DataScienceClient) importModelArtifact(ctx context.Context, request // ListFastLaunchJobConfigs List fast launch capable job configs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListFastLaunchJobConfigs.go.html to see an example of how to use ListFastLaunchJobConfigs API. // A default retry strategy applies to this operation ListFastLaunchJobConfigs() @@ -3691,7 +3691,7 @@ func (client DataScienceClient) listFastLaunchJobConfigs(ctx context.Context, re // ListJobRuns List out job runs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListJobRuns.go.html to see an example of how to use ListJobRuns API. // A default retry strategy applies to this operation ListJobRuns() @@ -3749,7 +3749,7 @@ func (client DataScienceClient) listJobRuns(ctx context.Context, request common. // ListJobShapes List job shapes available in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListJobShapes.go.html to see an example of how to use ListJobShapes API. // A default retry strategy applies to this operation ListJobShapes() @@ -3807,7 +3807,7 @@ func (client DataScienceClient) listJobShapes(ctx context.Context, request commo // ListJobs List jobs in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListJobs.go.html to see an example of how to use ListJobs API. // A default retry strategy applies to this operation ListJobs() @@ -3865,7 +3865,7 @@ func (client DataScienceClient) listJobs(ctx context.Context, request common.OCI // ListModelDeploymentShapes Lists the valid model deployment shapes. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListModelDeploymentShapes.go.html to see an example of how to use ListModelDeploymentShapes API. // A default retry strategy applies to this operation ListModelDeploymentShapes() @@ -3923,7 +3923,7 @@ func (client DataScienceClient) listModelDeploymentShapes(ctx context.Context, r // ListModelDeployments Lists all model deployments in the specified compartment. Only one parameter other than compartmentId may also be included in a query. The query must include compartmentId. If the query does not include compartmentId, or includes compartmentId but two or more other parameters an error is returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListModelDeployments.go.html to see an example of how to use ListModelDeployments API. // A default retry strategy applies to this operation ListModelDeployments() @@ -3981,7 +3981,7 @@ func (client DataScienceClient) listModelDeployments(ctx context.Context, reques // ListModelVersionSets Lists model version sets in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListModelVersionSets.go.html to see an example of how to use ListModelVersionSets API. // A default retry strategy applies to this operation ListModelVersionSets() @@ -4039,7 +4039,7 @@ func (client DataScienceClient) listModelVersionSets(ctx context.Context, reques // ListModels Lists models in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListModels.go.html to see an example of how to use ListModels API. // A default retry strategy applies to this operation ListModels() @@ -4097,7 +4097,7 @@ func (client DataScienceClient) listModels(ctx context.Context, request common.O // ListNotebookSessionShapes Lists the valid notebook session shapes. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListNotebookSessionShapes.go.html to see an example of how to use ListNotebookSessionShapes API. // A default retry strategy applies to this operation ListNotebookSessionShapes() @@ -4155,7 +4155,7 @@ func (client DataScienceClient) listNotebookSessionShapes(ctx context.Context, r // ListNotebookSessions Lists the notebook sessions in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListNotebookSessions.go.html to see an example of how to use ListNotebookSessions API. // A default retry strategy applies to this operation ListNotebookSessions() @@ -4213,7 +4213,7 @@ func (client DataScienceClient) listNotebookSessions(ctx context.Context, reques // ListPipelineRuns Returns a list of PipelineRuns. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListPipelineRuns.go.html to see an example of how to use ListPipelineRuns API. // A default retry strategy applies to this operation ListPipelineRuns() @@ -4271,7 +4271,7 @@ func (client DataScienceClient) listPipelineRuns(ctx context.Context, request co // ListPipelines Returns a list of Pipelines. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListPipelines.go.html to see an example of how to use ListPipelines API. // A default retry strategy applies to this operation ListPipelines() @@ -4329,7 +4329,7 @@ func (client DataScienceClient) listPipelines(ctx context.Context, request commo // ListProjects Lists projects in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListProjects.go.html to see an example of how to use ListProjects API. // A default retry strategy applies to this operation ListProjects() @@ -4387,7 +4387,7 @@ func (client DataScienceClient) listProjects(ctx context.Context, request common // ListWorkRequestErrors Lists work request errors for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -4445,7 +4445,7 @@ func (client DataScienceClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Lists work request logs for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -4503,7 +4503,7 @@ func (client DataScienceClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists work requests in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -4561,7 +4561,7 @@ func (client DataScienceClient) listWorkRequests(ctx context.Context, request co // UpdateJob Updates a job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdateJob.go.html to see an example of how to use UpdateJob API. // A default retry strategy applies to this operation UpdateJob() @@ -4619,7 +4619,7 @@ func (client DataScienceClient) updateJob(ctx context.Context, request common.OC // UpdateJobRun Updates a job run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdateJobRun.go.html to see an example of how to use UpdateJobRun API. // A default retry strategy applies to this operation UpdateJobRun() @@ -4677,7 +4677,7 @@ func (client DataScienceClient) updateJobRun(ctx context.Context, request common // UpdateModel Updates the properties of a model. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdateModel.go.html to see an example of how to use UpdateModel API. // A default retry strategy applies to this operation UpdateModel() @@ -4738,7 +4738,7 @@ func (client DataScienceClient) updateModel(ctx context.Context, request common. // can also be updated independently. All of the fields can be updated when the deployment is in the INACTIVE lifecycle state. Changes will take effect the next time the model // deployment is activated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdateModelDeployment.go.html to see an example of how to use UpdateModelDeployment API. // A default retry strategy applies to this operation UpdateModelDeployment() @@ -4796,7 +4796,7 @@ func (client DataScienceClient) updateModelDeployment(ctx context.Context, reque // UpdateModelProvenance Updates the provenance information for the specified model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdateModelProvenance.go.html to see an example of how to use UpdateModelProvenance API. // A default retry strategy applies to this operation UpdateModelProvenance() @@ -4854,7 +4854,7 @@ func (client DataScienceClient) updateModelProvenance(ctx context.Context, reque // UpdateModelVersionSet Updates the properties of a model version set. User can update the `description` property. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdateModelVersionSet.go.html to see an example of how to use UpdateModelVersionSet API. // A default retry strategy applies to this operation UpdateModelVersionSet() @@ -4914,7 +4914,7 @@ func (client DataScienceClient) updateModelVersionSet(ctx context.Context, reque // When the notebook session is in the INACTIVE lifecycle state, you can update `notebookSessionConfigurationDetails` and change `shape`, `subnetId`, and `blockStorageSizeInGBs`. // Changes to the `notebookSessionConfigurationDetails` take effect the next time the `ActivateNotebookSession` action is invoked on the notebook session resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdateNotebookSession.go.html to see an example of how to use UpdateNotebookSession API. // A default retry strategy applies to this operation UpdateNotebookSession() @@ -4972,7 +4972,7 @@ func (client DataScienceClient) updateNotebookSession(ctx context.Context, reque // UpdatePipeline Updates the Pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdatePipeline.go.html to see an example of how to use UpdatePipeline API. func (client DataScienceClient) UpdatePipeline(ctx context.Context, request UpdatePipelineRequest) (response UpdatePipelineResponse, err error) { @@ -5029,7 +5029,7 @@ func (client DataScienceClient) updatePipeline(ctx context.Context, request comm // UpdatePipelineRun Updates the PipelineRun. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdatePipelineRun.go.html to see an example of how to use UpdatePipelineRun API. func (client DataScienceClient) UpdatePipelineRun(ctx context.Context, request UpdatePipelineRunRequest) (response UpdatePipelineRunResponse, err error) { @@ -5086,7 +5086,7 @@ func (client DataScienceClient) updatePipelineRun(ctx context.Context, request c // UpdateProject Updates the properties of a project. You can update the `displayName`, `description`, `freeformTags`, and `definedTags` properties. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/datascience/UpdateProject.go.html to see an example of how to use UpdateProject API. // A default retry strategy applies to this operation UpdateProject() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_details.go index 0f528b69d59..0afea330330 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_details.go @@ -36,22 +36,22 @@ type PipelineCustomScriptStepDetails struct { IsArtifactUploaded *bool `mandatory:"false" json:"isArtifactUploaded"` } -//GetStepName returns StepName +// GetStepName returns StepName func (m PipelineCustomScriptStepDetails) GetStepName() *string { return m.StepName } -//GetDescription returns Description +// GetDescription returns Description func (m PipelineCustomScriptStepDetails) GetDescription() *string { return m.Description } -//GetDependsOn returns DependsOn +// GetDependsOn returns DependsOn func (m PipelineCustomScriptStepDetails) GetDependsOn() []string { return m.DependsOn } -//GetStepConfigurationDetails returns StepConfigurationDetails +// GetStepConfigurationDetails returns StepConfigurationDetails func (m PipelineCustomScriptStepDetails) GetStepConfigurationDetails() *PipelineStepConfigurationDetails { return m.StepConfigurationDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_run.go b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_run.go index ab509f0141d..e20dd4d52f1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_run.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_run.go @@ -35,27 +35,27 @@ type PipelineCustomScriptStepRun struct { LifecycleState PipelineStepRunLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m PipelineCustomScriptStepRun) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m PipelineCustomScriptStepRun) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStepName returns StepName +// GetStepName returns StepName func (m PipelineCustomScriptStepRun) GetStepName() *string { return m.StepName } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PipelineCustomScriptStepRun) GetLifecycleState() PipelineStepRunLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PipelineCustomScriptStepRun) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_update_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_update_details.go index 05a86adf445..0c6735f1243 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_update_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_custom_script_step_update_details.go @@ -28,17 +28,17 @@ type PipelineCustomScriptStepUpdateDetails struct { StepConfigurationDetails *PipelineStepConfigurationDetails `mandatory:"false" json:"stepConfigurationDetails"` } -//GetStepName returns StepName +// GetStepName returns StepName func (m PipelineCustomScriptStepUpdateDetails) GetStepName() *string { return m.StepName } -//GetDescription returns Description +// GetDescription returns Description func (m PipelineCustomScriptStepUpdateDetails) GetDescription() *string { return m.Description } -//GetStepConfigurationDetails returns StepConfigurationDetails +// GetStepConfigurationDetails returns StepConfigurationDetails func (m PipelineCustomScriptStepUpdateDetails) GetStepConfigurationDetails() *PipelineStepConfigurationDetails { return m.StepConfigurationDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_details.go index ed419a8aeca..f1aca2314ed 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_details.go @@ -34,22 +34,22 @@ type PipelineMlJobStepDetails struct { StepConfigurationDetails *PipelineStepConfigurationDetails `mandatory:"false" json:"stepConfigurationDetails"` } -//GetStepName returns StepName +// GetStepName returns StepName func (m PipelineMlJobStepDetails) GetStepName() *string { return m.StepName } -//GetDescription returns Description +// GetDescription returns Description func (m PipelineMlJobStepDetails) GetDescription() *string { return m.Description } -//GetDependsOn returns DependsOn +// GetDependsOn returns DependsOn func (m PipelineMlJobStepDetails) GetDependsOn() []string { return m.DependsOn } -//GetStepConfigurationDetails returns StepConfigurationDetails +// GetStepConfigurationDetails returns StepConfigurationDetails func (m PipelineMlJobStepDetails) GetStepConfigurationDetails() *PipelineStepConfigurationDetails { return m.StepConfigurationDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_run.go b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_run.go index f933ec756aa..cfe1fcdd72e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_run.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_run.go @@ -38,27 +38,27 @@ type PipelineMlJobStepRun struct { LifecycleState PipelineStepRunLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m PipelineMlJobStepRun) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m PipelineMlJobStepRun) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStepName returns StepName +// GetStepName returns StepName func (m PipelineMlJobStepRun) GetStepName() *string { return m.StepName } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PipelineMlJobStepRun) GetLifecycleState() PipelineStepRunLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PipelineMlJobStepRun) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_update_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_update_details.go index ea2baacbfb7..dcc8ee4eba9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_update_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/datascience/pipeline_ml_job_step_update_details.go @@ -28,17 +28,17 @@ type PipelineMlJobStepUpdateDetails struct { StepConfigurationDetails *PipelineStepConfigurationDetails `mandatory:"false" json:"stepConfigurationDetails"` } -//GetStepName returns StepName +// GetStepName returns StepName func (m PipelineMlJobStepUpdateDetails) GetStepName() *string { return m.StepName } -//GetDescription returns Description +// GetDescription returns Description func (m PipelineMlJobStepUpdateDetails) GetDescription() *string { return m.Description } -//GetStepConfigurationDetails returns StepConfigurationDetails +// GetStepConfigurationDetails returns StepConfigurationDetails func (m PipelineMlJobStepUpdateDetails) GetStepConfigurationDetails() *PipelineStepConfigurationDetails { return m.StepConfigurationDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_app_password_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_app_password_connection.go index 78c518c563d..9211c2c34ff 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_app_password_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_app_password_connection.go @@ -65,67 +65,67 @@ type BitbucketCloudAppPasswordConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketCloudAppPasswordConnection) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketCloudAppPasswordConnection) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketCloudAppPasswordConnection) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketCloudAppPasswordConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketCloudAppPasswordConnection) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketCloudAppPasswordConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketCloudAppPasswordConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m BitbucketCloudAppPasswordConnection) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketCloudAppPasswordConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketCloudAppPasswordConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketCloudAppPasswordConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketCloudAppPasswordConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketCloudAppPasswordConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_app_password_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_app_password_connection_summary.go index cf08b37672f..4c984b2674e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_app_password_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_app_password_connection_summary.go @@ -65,67 +65,67 @@ type BitbucketCloudAppPasswordConnectionSummary struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketCloudAppPasswordConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketCloudAppPasswordConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketCloudAppPasswordConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketCloudAppPasswordConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketCloudAppPasswordConnectionSummary) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketCloudAppPasswordConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketCloudAppPasswordConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m BitbucketCloudAppPasswordConnectionSummary) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketCloudAppPasswordConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketCloudAppPasswordConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketCloudAppPasswordConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketCloudAppPasswordConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketCloudAppPasswordConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_build_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_build_source.go index 7168cff064c..efea4091144 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_build_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_build_source.go @@ -32,17 +32,17 @@ type BitbucketCloudBuildSource struct { ConnectionId *string `mandatory:"true" json:"connectionId"` } -//GetName returns Name +// GetName returns Name func (m BitbucketCloudBuildSource) GetName() *string { return m.Name } -//GetRepositoryUrl returns RepositoryUrl +// GetRepositoryUrl returns RepositoryUrl func (m BitbucketCloudBuildSource) GetRepositoryUrl() *string { return m.RepositoryUrl } -//GetBranch returns Branch +// GetBranch returns Branch func (m BitbucketCloudBuildSource) GetBranch() *string { return m.Branch } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger.go index 0b4921ce05e..f13b3bdfce2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger.go @@ -65,67 +65,67 @@ type BitbucketCloudTrigger struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketCloudTrigger) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketCloudTrigger) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketCloudTrigger) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketCloudTrigger) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketCloudTrigger) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketCloudTrigger) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketCloudTrigger) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketCloudTrigger) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketCloudTrigger) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m BitbucketCloudTrigger) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketCloudTrigger) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketCloudTrigger) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketCloudTrigger) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger_create_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger_create_result.go index ea4d442dbb9..676d20f2527 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger_create_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger_create_result.go @@ -65,67 +65,67 @@ type BitbucketCloudTriggerCreateResult struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketCloudTriggerCreateResult) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketCloudTriggerCreateResult) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketCloudTriggerCreateResult) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketCloudTriggerCreateResult) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketCloudTriggerCreateResult) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketCloudTriggerCreateResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketCloudTriggerCreateResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketCloudTriggerCreateResult) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketCloudTriggerCreateResult) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m BitbucketCloudTriggerCreateResult) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketCloudTriggerCreateResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketCloudTriggerCreateResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketCloudTriggerCreateResult) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger_summary.go index 48d8e472b11..6a19dcba788 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_cloud_trigger_summary.go @@ -59,62 +59,62 @@ type BitbucketCloudTriggerSummary struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketCloudTriggerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketCloudTriggerSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketCloudTriggerSummary) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketCloudTriggerSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketCloudTriggerSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketCloudTriggerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketCloudTriggerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketCloudTriggerSummary) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketCloudTriggerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketCloudTriggerSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketCloudTriggerSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketCloudTriggerSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_access_token_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_access_token_connection.go index 20488723977..93b54ee89eb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_access_token_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_access_token_connection.go @@ -67,67 +67,67 @@ type BitbucketServerAccessTokenConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketServerAccessTokenConnection) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketServerAccessTokenConnection) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketServerAccessTokenConnection) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketServerAccessTokenConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketServerAccessTokenConnection) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketServerAccessTokenConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketServerAccessTokenConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m BitbucketServerAccessTokenConnection) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketServerAccessTokenConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketServerAccessTokenConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketServerAccessTokenConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketServerAccessTokenConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketServerAccessTokenConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_build_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_build_source.go index dd3bbef720e..39a042d775c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_build_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_build_source.go @@ -32,17 +32,17 @@ type BitbucketServerBuildSource struct { ConnectionId *string `mandatory:"true" json:"connectionId"` } -//GetName returns Name +// GetName returns Name func (m BitbucketServerBuildSource) GetName() *string { return m.Name } -//GetRepositoryUrl returns RepositoryUrl +// GetRepositoryUrl returns RepositoryUrl func (m BitbucketServerBuildSource) GetRepositoryUrl() *string { return m.RepositoryUrl } -//GetBranch returns Branch +// GetBranch returns Branch func (m BitbucketServerBuildSource) GetBranch() *string { return m.Branch } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_token_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_token_connection_summary.go index 1868db60dab..260947754b7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_token_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_token_connection_summary.go @@ -67,67 +67,67 @@ type BitbucketServerTokenConnectionSummary struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketServerTokenConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketServerTokenConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketServerTokenConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketServerTokenConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketServerTokenConnectionSummary) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketServerTokenConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketServerTokenConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m BitbucketServerTokenConnectionSummary) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketServerTokenConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketServerTokenConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketServerTokenConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketServerTokenConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketServerTokenConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger.go index d6215abfd69..ac454d67a97 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger.go @@ -62,67 +62,67 @@ type BitbucketServerTrigger struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketServerTrigger) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketServerTrigger) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketServerTrigger) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketServerTrigger) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketServerTrigger) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketServerTrigger) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketServerTrigger) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketServerTrigger) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketServerTrigger) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m BitbucketServerTrigger) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketServerTrigger) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketServerTrigger) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketServerTrigger) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger_create_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger_create_result.go index 4907370a1db..f542982b8f1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger_create_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger_create_result.go @@ -65,67 +65,67 @@ type BitbucketServerTriggerCreateResult struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketServerTriggerCreateResult) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketServerTriggerCreateResult) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketServerTriggerCreateResult) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketServerTriggerCreateResult) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketServerTriggerCreateResult) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketServerTriggerCreateResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketServerTriggerCreateResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketServerTriggerCreateResult) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketServerTriggerCreateResult) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m BitbucketServerTriggerCreateResult) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketServerTriggerCreateResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketServerTriggerCreateResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketServerTriggerCreateResult) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger_summary.go index 4feda4044eb..4d9b4dff1c7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/bitbucket_server_trigger_summary.go @@ -56,62 +56,62 @@ type BitbucketServerTriggerSummary struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketServerTriggerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketServerTriggerSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketServerTriggerSummary) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BitbucketServerTriggerSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketServerTriggerSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketServerTriggerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BitbucketServerTriggerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketServerTriggerSummary) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BitbucketServerTriggerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketServerTriggerSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketServerTriggerSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BitbucketServerTriggerSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage.go index 3f7908af1b1..9326f6a1411 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage.go @@ -79,72 +79,72 @@ type BuildStage struct { LifecycleState BuildPipelineStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BuildStage) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BuildStage) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BuildStage) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BuildStage) GetProjectId() *string { return m.ProjectId } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m BuildStage) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BuildStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BuildStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BuildStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BuildStage) GetLifecycleState() BuildPipelineStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BuildStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m BuildStage) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BuildStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BuildStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BuildStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage_run_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage_run_progress.go index a060da95800..26a0304e53f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage_run_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage_run_progress.go @@ -62,32 +62,32 @@ type BuildStageRunProgress struct { Status BuildPipelineStageRunProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetStageDisplayName returns StageDisplayName +// GetStageDisplayName returns StageDisplayName func (m BuildStageRunProgress) GetStageDisplayName() *string { return m.StageDisplayName } -//GetBuildPipelineStageId returns BuildPipelineStageId +// GetBuildPipelineStageId returns BuildPipelineStageId func (m BuildStageRunProgress) GetBuildPipelineStageId() *string { return m.BuildPipelineStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m BuildStageRunProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m BuildStageRunProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m BuildStageRunProgress) GetStatus() BuildPipelineStageRunProgressStatusEnum { return m.Status } -//GetBuildPipelineStagePredecessors returns BuildPipelineStagePredecessors +// GetBuildPipelineStagePredecessors returns BuildPipelineStagePredecessors func (m BuildStageRunProgress) GetBuildPipelineStagePredecessors() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessors } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage_summary.go index 9b9a8c9bd50..c002d0528ef 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/build_stage_summary.go @@ -79,72 +79,72 @@ type BuildStageSummary struct { Image BuildStageImageEnum `mandatory:"true" json:"image"` } -//GetId returns Id +// GetId returns Id func (m BuildStageSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BuildStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m BuildStageSummary) GetProjectId() *string { return m.ProjectId } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m BuildStageSummary) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BuildStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BuildStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m BuildStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BuildStageSummary) GetLifecycleState() BuildPipelineStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m BuildStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDescription returns Description +// GetDescription returns Description func (m BuildStageSummary) GetDescription() *string { return m.Description } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m BuildStageSummary) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BuildStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BuildStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m BuildStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage.go index 93c3fa271fb..d0f28d8836a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage.go @@ -81,72 +81,72 @@ type ComputeInstanceGroupBlueGreenDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupBlueGreenDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupBlueGreenDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupBlueGreenDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupBlueGreenDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupBlueGreenDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupBlueGreenDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupBlueGreenDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupBlueGreenDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupBlueGreenDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupBlueGreenDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupBlueGreenDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupBlueGreenDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupBlueGreenDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupBlueGreenDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage_execution_progress.go index 33edc8dc300..8cbe8e96695 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage_execution_progress.go @@ -43,37 +43,37 @@ type ComputeInstanceGroupBlueGreenDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m ComputeInstanceGroupBlueGreenDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m ComputeInstanceGroupBlueGreenDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m ComputeInstanceGroupBlueGreenDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m ComputeInstanceGroupBlueGreenDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m ComputeInstanceGroupBlueGreenDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m ComputeInstanceGroupBlueGreenDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m ComputeInstanceGroupBlueGreenDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage_summary.go index da716b0cc44..ea3d48f715b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_deploy_stage_summary.go @@ -81,72 +81,72 @@ type ComputeInstanceGroupBlueGreenDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupBlueGreenDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage.go index 126179739a9..da81f873a5b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage.go @@ -64,72 +64,72 @@ type ComputeInstanceGroupBlueGreenTrafficShiftDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.go index 3514edfde97..e9eb68f0538 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage_execution_progress.go @@ -43,37 +43,37 @@ type ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress struc Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage_summary.go index df0f8838470..0c1752eced8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_blue_green_traffic_shift_deploy_stage_summary.go @@ -64,72 +64,72 @@ type ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage.go index 0203cc65e80..27171a1e6e1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage.go @@ -66,72 +66,72 @@ type ComputeInstanceGroupCanaryApprovalDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupCanaryApprovalDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage_execution_progress.go index 88e34bb2b3d..8dc2637b40a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage_execution_progress.go @@ -43,37 +43,37 @@ type ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage_summary.go index 117d349ffc2..1cf1f422278 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_approval_deploy_stage_summary.go @@ -66,72 +66,72 @@ type ComputeInstanceGroupCanaryApprovalDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupCanaryApprovalDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage.go index 69351557123..0051915e2a8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage.go @@ -76,72 +76,72 @@ type ComputeInstanceGroupCanaryDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupCanaryDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupCanaryDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupCanaryDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupCanaryDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupCanaryDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupCanaryDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupCanaryDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupCanaryDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupCanaryDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupCanaryDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupCanaryDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupCanaryDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupCanaryDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupCanaryDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage_execution_progress.go index e27baadd9b9..31993e8b14b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type ComputeInstanceGroupCanaryDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m ComputeInstanceGroupCanaryDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m ComputeInstanceGroupCanaryDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m ComputeInstanceGroupCanaryDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m ComputeInstanceGroupCanaryDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m ComputeInstanceGroupCanaryDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m ComputeInstanceGroupCanaryDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m ComputeInstanceGroupCanaryDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage_summary.go index 78c371a7ca3..eb6ccb6630b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_deploy_stage_summary.go @@ -76,72 +76,72 @@ type ComputeInstanceGroupCanaryDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupCanaryDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupCanaryDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupCanaryDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupCanaryDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupCanaryDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupCanaryDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupCanaryDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupCanaryDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupCanaryDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupCanaryDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupCanaryDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupCanaryDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupCanaryDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupCanaryDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage.go index c5d2858b87d..bc78b0cedb8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage.go @@ -66,72 +66,72 @@ type ComputeInstanceGroupCanaryTrafficShiftDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupCanaryTrafficShiftDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.go index d28570941b0..59f3f2f52a5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage_summary.go index ed60171e01a..d5e842d9a38 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_canary_traffic_shift_deploy_stage_summary.go @@ -66,72 +66,72 @@ type ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_environment.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_environment.go index be4ee00555a..383e66840a2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_environment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_environment.go @@ -58,62 +58,62 @@ type ComputeInstanceGroupDeployEnvironment struct { LifecycleState DeployEnvironmentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupDeployEnvironment) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupDeployEnvironment) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupDeployEnvironment) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupDeployEnvironment) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupDeployEnvironment) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupDeployEnvironment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupDeployEnvironment) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupDeployEnvironment) GetLifecycleState() DeployEnvironmentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupDeployEnvironment) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupDeployEnvironment) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupDeployEnvironment) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupDeployEnvironment) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_environment_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_environment_summary.go index 72dd47bf4a6..41a5d2dcbad 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_environment_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_environment_summary.go @@ -58,62 +58,62 @@ type ComputeInstanceGroupDeployEnvironmentSummary struct { LifecycleState DeployEnvironmentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupDeployEnvironmentSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupDeployEnvironmentSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupDeployEnvironmentSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupDeployEnvironmentSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupDeployEnvironmentSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupDeployEnvironmentSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupDeployEnvironmentSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupDeployEnvironmentSummary) GetLifecycleState() DeployEnvironmentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupDeployEnvironmentSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupDeployEnvironmentSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupDeployEnvironmentSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupDeployEnvironmentSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage.go index 798a780cf07..d66a55c35b9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage.go @@ -78,72 +78,72 @@ type ComputeInstanceGroupDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage_execution_progress.go index 9347d7de763..f1ef234bb59 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type ComputeInstanceGroupDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m ComputeInstanceGroupDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m ComputeInstanceGroupDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m ComputeInstanceGroupDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m ComputeInstanceGroupDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m ComputeInstanceGroupDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m ComputeInstanceGroupDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m ComputeInstanceGroupDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage_summary.go index 3f39d2aea6e..2d065750c22 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_deploy_stage_summary.go @@ -78,72 +78,72 @@ type ComputeInstanceGroupDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ComputeInstanceGroupDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ComputeInstanceGroupDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ComputeInstanceGroupDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ComputeInstanceGroupDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ComputeInstanceGroupDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ComputeInstanceGroupDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ComputeInstanceGroupDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ComputeInstanceGroupDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ComputeInstanceGroupDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ComputeInstanceGroupDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ComputeInstanceGroupDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ComputeInstanceGroupDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ComputeInstanceGroupDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ComputeInstanceGroupDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_linear_rollout_policy_by_count.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_linear_rollout_policy_by_count.go index 1aa22d305dc..db185378a59 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_linear_rollout_policy_by_count.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_linear_rollout_policy_by_count.go @@ -26,7 +26,7 @@ type ComputeInstanceGroupLinearRolloutPolicyByCount struct { BatchDelayInSeconds *int `mandatory:"false" json:"batchDelayInSeconds"` } -//GetBatchDelayInSeconds returns BatchDelayInSeconds +// GetBatchDelayInSeconds returns BatchDelayInSeconds func (m ComputeInstanceGroupLinearRolloutPolicyByCount) GetBatchDelayInSeconds() *int { return m.BatchDelayInSeconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_linear_rollout_policy_by_percentage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_linear_rollout_policy_by_percentage.go index bfe672a19be..cbf1568dcf3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_linear_rollout_policy_by_percentage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/compute_instance_group_linear_rollout_policy_by_percentage.go @@ -26,7 +26,7 @@ type ComputeInstanceGroupLinearRolloutPolicyByPercentage struct { BatchDelayInSeconds *int `mandatory:"false" json:"batchDelayInSeconds"` } -//GetBatchDelayInSeconds returns BatchDelayInSeconds +// GetBatchDelayInSeconds returns BatchDelayInSeconds func (m ComputeInstanceGroupLinearRolloutPolicyByPercentage) GetBatchDelayInSeconds() *int { return m.BatchDelayInSeconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/container_registry_delivered_artifact.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/container_registry_delivered_artifact.go index 432ce020739..0ffce849e6a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/container_registry_delivered_artifact.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/container_registry_delivered_artifact.go @@ -32,12 +32,12 @@ type ContainerRegistryDeliveredArtifact struct { ImageUri *string `mandatory:"false" json:"imageUri"` } -//GetDeployArtifactId returns DeployArtifactId +// GetDeployArtifactId returns DeployArtifactId func (m ContainerRegistryDeliveredArtifact) GetDeployArtifactId() *string { return m.DeployArtifactId } -//GetOutputArtifactName returns OutputArtifactName +// GetOutputArtifactName returns OutputArtifactName func (m ContainerRegistryDeliveredArtifact) GetOutputArtifactName() *string { return m.OutputArtifactName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_cloud_app_password_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_cloud_app_password_connection_details.go index e775753a7d2..f75c2d38afe 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_cloud_app_password_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_cloud_app_password_connection_details.go @@ -42,27 +42,27 @@ type CreateBitbucketCloudAppPasswordConnectionDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateBitbucketCloudAppPasswordConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateBitbucketCloudAppPasswordConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateBitbucketCloudAppPasswordConnectionDetails) GetProjectId() *string { return m.ProjectId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateBitbucketCloudAppPasswordConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateBitbucketCloudAppPasswordConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_cloud_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_cloud_trigger_details.go index 14262b0333b..535400ec628 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_cloud_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_cloud_trigger_details.go @@ -41,32 +41,32 @@ type CreateBitbucketCloudTriggerDetails struct { ConnectionId *string `mandatory:"false" json:"connectionId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateBitbucketCloudTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateBitbucketCloudTriggerDetails) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateBitbucketCloudTriggerDetails) GetProjectId() *string { return m.ProjectId } -//GetActions returns Actions +// GetActions returns Actions func (m CreateBitbucketCloudTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateBitbucketCloudTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateBitbucketCloudTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_server_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_server_access_token_connection_details.go index 5a11cc7be1b..3dd6c196af5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_server_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_server_access_token_connection_details.go @@ -44,27 +44,27 @@ type CreateBitbucketServerAccessTokenConnectionDetails struct { TlsVerifyConfig TlsVerifyConfig `mandatory:"false" json:"tlsVerifyConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateBitbucketServerAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateBitbucketServerAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateBitbucketServerAccessTokenConnectionDetails) GetProjectId() *string { return m.ProjectId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateBitbucketServerAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateBitbucketServerAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_server_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_server_trigger_details.go index 3b7ce837d10..8e1f2f62914 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_server_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_bitbucket_server_trigger_details.go @@ -38,32 +38,32 @@ type CreateBitbucketServerTriggerDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateBitbucketServerTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateBitbucketServerTriggerDetails) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateBitbucketServerTriggerDetails) GetProjectId() *string { return m.ProjectId } -//GetActions returns Actions +// GetActions returns Actions func (m CreateBitbucketServerTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateBitbucketServerTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateBitbucketServerTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_build_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_build_stage_details.go index 7eb2915a432..e5a4ffae966 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_build_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_build_stage_details.go @@ -55,32 +55,32 @@ type CreateBuildStageDetails struct { Image BuildStageImageEnum `mandatory:"true" json:"image"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateBuildStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateBuildStageDetails) GetDescription() *string { return m.Description } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m CreateBuildStageDetails) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m CreateBuildStageDetails) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateBuildStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateBuildStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_blue_green_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_blue_green_deploy_stage_details.go index 72c6293a8d6..8ac8dd91146 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_blue_green_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_blue_green_deploy_stage_details.go @@ -57,32 +57,32 @@ type CreateComputeInstanceGroupBlueGreenDeployStageDetails struct { TestLoadBalancerConfig *LoadBalancerConfig `mandatory:"false" json:"testLoadBalancerConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateComputeInstanceGroupBlueGreenDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateComputeInstanceGroupBlueGreenDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateComputeInstanceGroupBlueGreenDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateComputeInstanceGroupBlueGreenDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateComputeInstanceGroupBlueGreenDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateComputeInstanceGroupBlueGreenDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.go index 4f903f1aeba..3ed4fd5e7b9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.go @@ -40,32 +40,32 @@ type CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_approval_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_approval_deploy_stage_details.go index 41dc966e9cd..6facb178ab8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_approval_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_approval_deploy_stage_details.go @@ -42,32 +42,32 @@ type CreateComputeInstanceGroupCanaryApprovalDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_deploy_stage_details.go index 6860382249b..fa80550fb03 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_deploy_stage_details.go @@ -52,32 +52,32 @@ type CreateComputeInstanceGroupCanaryDeployStageDetails struct { TestLoadBalancerConfig *LoadBalancerConfig `mandatory:"false" json:"testLoadBalancerConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateComputeInstanceGroupCanaryDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateComputeInstanceGroupCanaryDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateComputeInstanceGroupCanaryDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateComputeInstanceGroupCanaryDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateComputeInstanceGroupCanaryDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateComputeInstanceGroupCanaryDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_traffic_shift_deploy_stage_details.go index b6bf0831e4b..9f005f8f66d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_canary_traffic_shift_deploy_stage_details.go @@ -42,32 +42,32 @@ type CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_deploy_environment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_deploy_environment_details.go index a14c8bf8929..3abdf2c544e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_deploy_environment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_deploy_environment_details.go @@ -37,27 +37,27 @@ type CreateComputeInstanceGroupDeployEnvironmentDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateComputeInstanceGroupDeployEnvironmentDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateComputeInstanceGroupDeployEnvironmentDetails) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateComputeInstanceGroupDeployEnvironmentDetails) GetProjectId() *string { return m.ProjectId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateComputeInstanceGroupDeployEnvironmentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateComputeInstanceGroupDeployEnvironmentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_deploy_stage_details.go index 3d8a3c037bd..a1a2260dc04 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_compute_instance_group_deploy_stage_details.go @@ -54,32 +54,32 @@ type CreateComputeInstanceGroupDeployStageDetails struct { LoadBalancerConfig *LoadBalancerConfig `mandatory:"false" json:"loadBalancerConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateComputeInstanceGroupDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateComputeInstanceGroupDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateComputeInstanceGroupDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateComputeInstanceGroupDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateComputeInstanceGroupDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateComputeInstanceGroupDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deliver_artifact_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deliver_artifact_stage_details.go index c1877ad570d..406af9f775d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deliver_artifact_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deliver_artifact_stage_details.go @@ -39,32 +39,32 @@ type CreateDeliverArtifactStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDeliverArtifactStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDeliverArtifactStageDetails) GetDescription() *string { return m.Description } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m CreateDeliverArtifactStageDetails) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m CreateDeliverArtifactStageDetails) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDeliverArtifactStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDeliverArtifactStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deploy_pipeline_deployment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deploy_pipeline_deployment_details.go index 88c1d287737..51ac364aa53 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deploy_pipeline_deployment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deploy_pipeline_deployment_details.go @@ -38,22 +38,22 @@ type CreateDeployPipelineDeploymentDetails struct { DeployArtifactOverrideArguments *DeployArtifactOverrideArgumentCollection `mandatory:"false" json:"deployArtifactOverrideArguments"` } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateDeployPipelineDeploymentDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDeployPipelineDeploymentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDeployPipelineDeploymentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDeployPipelineDeploymentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deploy_pipeline_redeployment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deploy_pipeline_redeployment_details.go index 656e8a4fe3a..db326ae352c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deploy_pipeline_redeployment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_deploy_pipeline_redeployment_details.go @@ -35,22 +35,22 @@ type CreateDeployPipelineRedeploymentDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateDeployPipelineRedeploymentDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDeployPipelineRedeploymentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDeployPipelineRedeploymentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDeployPipelineRedeploymentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_devops_code_repository_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_devops_code_repository_trigger_details.go index ad01d45c5e2..6483eff1d70 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_devops_code_repository_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_devops_code_repository_trigger_details.go @@ -41,32 +41,32 @@ type CreateDevopsCodeRepositoryTriggerDetails struct { RepositoryId *string `mandatory:"false" json:"repositoryId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateDevopsCodeRepositoryTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDevopsCodeRepositoryTriggerDetails) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateDevopsCodeRepositoryTriggerDetails) GetProjectId() *string { return m.ProjectId } -//GetActions returns Actions +// GetActions returns Actions func (m CreateDevopsCodeRepositoryTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDevopsCodeRepositoryTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDevopsCodeRepositoryTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_function_deploy_environment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_function_deploy_environment_details.go index b62690fe622..7dcbb5245ca 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_function_deploy_environment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_function_deploy_environment_details.go @@ -38,27 +38,27 @@ type CreateFunctionDeployEnvironmentDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateFunctionDeployEnvironmentDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateFunctionDeployEnvironmentDetails) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateFunctionDeployEnvironmentDetails) GetProjectId() *string { return m.ProjectId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateFunctionDeployEnvironmentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateFunctionDeployEnvironmentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_function_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_function_deploy_stage_details.go index 82615b6b551..88e1a585063 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_function_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_function_deploy_stage_details.go @@ -52,32 +52,32 @@ type CreateFunctionDeployStageDetails struct { FunctionTimeoutInSeconds *int `mandatory:"false" json:"functionTimeoutInSeconds"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateFunctionDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateFunctionDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateFunctionDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateFunctionDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateFunctionDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateFunctionDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_github_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_github_access_token_connection_details.go index a675a957307..7e95c0a262c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_github_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_github_access_token_connection_details.go @@ -39,27 +39,27 @@ type CreateGithubAccessTokenConnectionDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGithubAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGithubAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateGithubAccessTokenConnectionDetails) GetProjectId() *string { return m.ProjectId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGithubAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGithubAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_github_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_github_trigger_details.go index 9c298a27227..3e1f1f059c5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_github_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_github_trigger_details.go @@ -41,32 +41,32 @@ type CreateGithubTriggerDetails struct { ConnectionId *string `mandatory:"false" json:"connectionId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGithubTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGithubTriggerDetails) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateGithubTriggerDetails) GetProjectId() *string { return m.ProjectId } -//GetActions returns Actions +// GetActions returns Actions func (m CreateGithubTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGithubTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGithubTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_access_token_connection_details.go index 38b70aac532..30cbf34d1af 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_access_token_connection_details.go @@ -39,27 +39,27 @@ type CreateGitlabAccessTokenConnectionDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGitlabAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGitlabAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateGitlabAccessTokenConnectionDetails) GetProjectId() *string { return m.ProjectId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGitlabAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGitlabAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_server_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_server_access_token_connection_details.go index c6d3b66ff8f..e3f5257e0d3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_server_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_server_access_token_connection_details.go @@ -44,27 +44,27 @@ type CreateGitlabServerAccessTokenConnectionDetails struct { TlsVerifyConfig TlsVerifyConfig `mandatory:"false" json:"tlsVerifyConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGitlabServerAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGitlabServerAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateGitlabServerAccessTokenConnectionDetails) GetProjectId() *string { return m.ProjectId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGitlabServerAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGitlabServerAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_server_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_server_trigger_details.go index bda0b74b770..cc7b567160b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_server_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_server_trigger_details.go @@ -38,32 +38,32 @@ type CreateGitlabServerTriggerDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGitlabServerTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGitlabServerTriggerDetails) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateGitlabServerTriggerDetails) GetProjectId() *string { return m.ProjectId } -//GetActions returns Actions +// GetActions returns Actions func (m CreateGitlabServerTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGitlabServerTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGitlabServerTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_trigger_details.go index b34d0d0e3ad..e6a968e1e38 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_gitlab_trigger_details.go @@ -41,32 +41,32 @@ type CreateGitlabTriggerDetails struct { ConnectionId *string `mandatory:"false" json:"connectionId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGitlabTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGitlabTriggerDetails) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateGitlabTriggerDetails) GetProjectId() *string { return m.ProjectId } -//GetActions returns Actions +// GetActions returns Actions func (m CreateGitlabTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGitlabTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGitlabTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_invoke_function_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_invoke_function_deploy_stage_details.go index caedeb87b0d..d26bd5acf75 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_invoke_function_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_invoke_function_deploy_stage_details.go @@ -50,32 +50,32 @@ type CreateInvokeFunctionDeployStageDetails struct { DeployArtifactId *string `mandatory:"false" json:"deployArtifactId"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateInvokeFunctionDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateInvokeFunctionDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateInvokeFunctionDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateInvokeFunctionDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateInvokeFunctionDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateInvokeFunctionDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_load_balancer_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_load_balancer_traffic_shift_deploy_stage_details.go index 851b9330e5f..641b89941f0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_load_balancer_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_load_balancer_traffic_shift_deploy_stage_details.go @@ -50,32 +50,32 @@ type CreateLoadBalancerTrafficShiftDeployStageDetails struct { TrafficShiftTarget LoadBalancerTrafficShiftDeployStageTrafficShiftTargetEnum `mandatory:"true" json:"trafficShiftTarget"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateLoadBalancerTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateLoadBalancerTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateLoadBalancerTrafficShiftDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateLoadBalancerTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateLoadBalancerTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateLoadBalancerTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_manual_approval_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_manual_approval_deploy_stage_details.go index f437c32a52d..da4a7bf4664 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_manual_approval_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_manual_approval_deploy_stage_details.go @@ -39,32 +39,32 @@ type CreateManualApprovalDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateManualApprovalDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateManualApprovalDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateManualApprovalDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateManualApprovalDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateManualApprovalDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateManualApprovalDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_blue_green_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_blue_green_deploy_stage_details.go index 344b4ed690f..450e663d97e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_blue_green_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_blue_green_deploy_stage_details.go @@ -45,32 +45,32 @@ type CreateOkeBlueGreenDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOkeBlueGreenDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOkeBlueGreenDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateOkeBlueGreenDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateOkeBlueGreenDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOkeBlueGreenDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOkeBlueGreenDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_blue_green_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_blue_green_traffic_shift_deploy_stage_details.go index 7a195591388..ce534f5b348 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_blue_green_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_blue_green_traffic_shift_deploy_stage_details.go @@ -40,32 +40,32 @@ type CreateOkeBlueGreenTrafficShiftDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOkeBlueGreenTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOkeBlueGreenTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateOkeBlueGreenTrafficShiftDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateOkeBlueGreenTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOkeBlueGreenTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOkeBlueGreenTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_approval_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_approval_deploy_stage_details.go index 32647ffdc5a..9e897c2d1e1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_approval_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_approval_deploy_stage_details.go @@ -42,32 +42,32 @@ type CreateOkeCanaryApprovalDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOkeCanaryApprovalDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOkeCanaryApprovalDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateOkeCanaryApprovalDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateOkeCanaryApprovalDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOkeCanaryApprovalDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOkeCanaryApprovalDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_deploy_stage_details.go index ea341897f7c..8bdbf7156fd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_deploy_stage_details.go @@ -45,32 +45,32 @@ type CreateOkeCanaryDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOkeCanaryDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOkeCanaryDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateOkeCanaryDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateOkeCanaryDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOkeCanaryDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOkeCanaryDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_traffic_shift_deploy_stage_details.go index 8a804612b01..cd74eedac4a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_canary_traffic_shift_deploy_stage_details.go @@ -42,32 +42,32 @@ type CreateOkeCanaryTrafficShiftDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOkeCanaryTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOkeCanaryTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateOkeCanaryTrafficShiftDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateOkeCanaryTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOkeCanaryTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOkeCanaryTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_cluster_deploy_environment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_cluster_deploy_environment_details.go index 3b2b5fe94eb..5e698153c41 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_cluster_deploy_environment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_cluster_deploy_environment_details.go @@ -40,27 +40,27 @@ type CreateOkeClusterDeployEnvironmentDetails struct { NetworkChannel NetworkChannel `mandatory:"false" json:"networkChannel"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOkeClusterDeployEnvironmentDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOkeClusterDeployEnvironmentDetails) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateOkeClusterDeployEnvironmentDetails) GetProjectId() *string { return m.ProjectId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOkeClusterDeployEnvironmentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOkeClusterDeployEnvironmentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_deploy_stage_details.go index 2711ee04507..d0700e57506 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_deploy_stage_details.go @@ -48,32 +48,32 @@ type CreateOkeDeployStageDetails struct { RollbackPolicy DeployStageRollbackPolicy `mandatory:"false" json:"rollbackPolicy"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOkeDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOkeDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateOkeDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateOkeDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOkeDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOkeDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_helm_chart_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_helm_chart_deploy_stage_details.go index 47ca1108c5e..21b967dd08b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_helm_chart_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_oke_helm_chart_deploy_stage_details.go @@ -91,32 +91,32 @@ type CreateOkeHelmChartDeployStageDetails struct { IsDebugEnabled *bool `mandatory:"false" json:"isDebugEnabled"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOkeHelmChartDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOkeHelmChartDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateOkeHelmChartDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateOkeHelmChartDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOkeHelmChartDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOkeHelmChartDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_shell_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_shell_deploy_stage_details.go index 584bb79f786..5686179f5a5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_shell_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_shell_deploy_stage_details.go @@ -45,32 +45,32 @@ type CreateShellDeployStageDetails struct { TimeoutInSeconds *int `mandatory:"false" json:"timeoutInSeconds"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateShellDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateShellDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateShellDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateShellDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateShellDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateShellDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_single_deploy_stage_deployment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_single_deploy_stage_deployment_details.go index 6a43e624f88..cdf80df8f37 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_single_deploy_stage_deployment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_single_deploy_stage_deployment_details.go @@ -41,22 +41,22 @@ type CreateSingleDeployStageDeploymentDetails struct { DeployArtifactOverrideArguments *DeployArtifactOverrideArgumentCollection `mandatory:"false" json:"deployArtifactOverrideArguments"` } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateSingleDeployStageDeploymentDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateSingleDeployStageDeploymentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSingleDeployStageDeploymentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSingleDeployStageDeploymentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_single_deploy_stage_redeployment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_single_deploy_stage_redeployment_details.go index c5e48ad7254..4fea4be30c5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_single_deploy_stage_redeployment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_single_deploy_stage_redeployment_details.go @@ -38,22 +38,22 @@ type CreateSingleDeployStageRedeploymentDetails struct { PreviousDeploymentId *string `mandatory:"false" json:"previousDeploymentId"` } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateSingleDeployStageRedeploymentDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateSingleDeployStageRedeploymentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSingleDeployStageRedeploymentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSingleDeployStageRedeploymentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_trigger_deployment_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_trigger_deployment_stage_details.go index a64897c5178..9829fc824dc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_trigger_deployment_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_trigger_deployment_stage_details.go @@ -43,32 +43,32 @@ type CreateTriggerDeploymentStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateTriggerDeploymentStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTriggerDeploymentStageDetails) GetDescription() *string { return m.Description } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m CreateTriggerDeploymentStageDetails) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m CreateTriggerDeploymentStageDetails) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateTriggerDeploymentStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateTriggerDeploymentStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_vbs_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_vbs_access_token_connection_details.go index ad1a95ff862..6c45dcc4da4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_vbs_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_vbs_access_token_connection_details.go @@ -42,27 +42,27 @@ type CreateVbsAccessTokenConnectionDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateVbsAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateVbsAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateVbsAccessTokenConnectionDetails) GetProjectId() *string { return m.ProjectId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateVbsAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateVbsAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_vbs_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_vbs_trigger_details.go index 41aa56bdc8f..449fcf0b0ae 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_vbs_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_vbs_trigger_details.go @@ -41,32 +41,32 @@ type CreateVbsTriggerDetails struct { ConnectionId *string `mandatory:"false" json:"connectionId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateVbsTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateVbsTriggerDetails) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m CreateVbsTriggerDetails) GetProjectId() *string { return m.ProjectId } -//GetActions returns Actions +// GetActions returns Actions func (m CreateVbsTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateVbsTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateVbsTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_wait_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_wait_deploy_stage_details.go index 999732eb3bd..a4ea89af0d9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_wait_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_wait_deploy_stage_details.go @@ -39,32 +39,32 @@ type CreateWaitDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m CreateWaitDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateWaitDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m CreateWaitDeployStageDetails) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m CreateWaitDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateWaitDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateWaitDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_wait_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_wait_stage_details.go index 091307960db..569a3ea049b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_wait_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/create_wait_stage_details.go @@ -39,32 +39,32 @@ type CreateWaitStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateWaitStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateWaitStageDetails) GetDescription() *string { return m.Description } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m CreateWaitStageDetails) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m CreateWaitStageDetails) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateWaitStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateWaitStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage.go index be0da5193ab..2518150f4a5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage.go @@ -63,72 +63,72 @@ type DeliverArtifactStage struct { LifecycleState BuildPipelineStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m DeliverArtifactStage) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DeliverArtifactStage) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m DeliverArtifactStage) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m DeliverArtifactStage) GetProjectId() *string { return m.ProjectId } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m DeliverArtifactStage) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DeliverArtifactStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DeliverArtifactStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DeliverArtifactStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DeliverArtifactStage) GetLifecycleState() BuildPipelineStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DeliverArtifactStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m DeliverArtifactStage) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DeliverArtifactStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DeliverArtifactStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DeliverArtifactStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage_run_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage_run_progress.go index 32b7e275889..aed4828e650 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage_run_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage_run_progress.go @@ -39,32 +39,32 @@ type DeliverArtifactStageRunProgress struct { Status BuildPipelineStageRunProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetStageDisplayName returns StageDisplayName +// GetStageDisplayName returns StageDisplayName func (m DeliverArtifactStageRunProgress) GetStageDisplayName() *string { return m.StageDisplayName } -//GetBuildPipelineStageId returns BuildPipelineStageId +// GetBuildPipelineStageId returns BuildPipelineStageId func (m DeliverArtifactStageRunProgress) GetBuildPipelineStageId() *string { return m.BuildPipelineStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m DeliverArtifactStageRunProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m DeliverArtifactStageRunProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m DeliverArtifactStageRunProgress) GetStatus() BuildPipelineStageRunProgressStatusEnum { return m.Status } -//GetBuildPipelineStagePredecessors returns BuildPipelineStagePredecessors +// GetBuildPipelineStagePredecessors returns BuildPipelineStagePredecessors func (m DeliverArtifactStageRunProgress) GetBuildPipelineStagePredecessors() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessors } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage_summary.go index fd2a0589875..4e0d3ed49ca 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deliver_artifact_stage_summary.go @@ -63,72 +63,72 @@ type DeliverArtifactStageSummary struct { LifecycleState BuildPipelineStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m DeliverArtifactStageSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DeliverArtifactStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m DeliverArtifactStageSummary) GetProjectId() *string { return m.ProjectId } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m DeliverArtifactStageSummary) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DeliverArtifactStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DeliverArtifactStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DeliverArtifactStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DeliverArtifactStageSummary) GetLifecycleState() BuildPipelineStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DeliverArtifactStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDescription returns Description +// GetDescription returns Description func (m DeliverArtifactStageSummary) GetDescription() *string { return m.Description } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m DeliverArtifactStageSummary) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DeliverArtifactStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DeliverArtifactStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DeliverArtifactStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_deployment.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_deployment.go index b3ed0c0f49c..164142e64fd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_deployment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_deployment.go @@ -68,92 +68,92 @@ type DeployPipelineDeployment struct { LifecycleState DeploymentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetDeployPipelineArtifacts returns DeployPipelineArtifacts +// GetDeployPipelineArtifacts returns DeployPipelineArtifacts func (m DeployPipelineDeployment) GetDeployPipelineArtifacts() *DeployPipelineArtifactCollection { return m.DeployPipelineArtifacts } -//GetDeployPipelineEnvironments returns DeployPipelineEnvironments +// GetDeployPipelineEnvironments returns DeployPipelineEnvironments func (m DeployPipelineDeployment) GetDeployPipelineEnvironments() *DeployPipelineEnvironmentCollection { return m.DeployPipelineEnvironments } -//GetId returns Id +// GetId returns Id func (m DeployPipelineDeployment) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DeployPipelineDeployment) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m DeployPipelineDeployment) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m DeployPipelineDeployment) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DeployPipelineDeployment) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DeployPipelineDeployment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DeployPipelineDeployment) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DeployPipelineDeployment) GetLifecycleState() DeploymentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DeployPipelineDeployment) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeploymentArguments returns DeploymentArguments +// GetDeploymentArguments returns DeploymentArguments func (m DeployPipelineDeployment) GetDeploymentArguments() *DeploymentArgumentCollection { return m.DeploymentArguments } -//GetDeployStageOverrideArguments returns DeployStageOverrideArguments +// GetDeployStageOverrideArguments returns DeployStageOverrideArguments func (m DeployPipelineDeployment) GetDeployStageOverrideArguments() *DeployStageOverrideArgumentCollection { return m.DeployStageOverrideArguments } -//GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments +// GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments func (m DeployPipelineDeployment) GetDeployArtifactOverrideArguments() *DeployArtifactOverrideArgumentCollection { return m.DeployArtifactOverrideArguments } -//GetDeploymentExecutionProgress returns DeploymentExecutionProgress +// GetDeploymentExecutionProgress returns DeploymentExecutionProgress func (m DeployPipelineDeployment) GetDeploymentExecutionProgress() *DeploymentExecutionProgress { return m.DeploymentExecutionProgress } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DeployPipelineDeployment) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DeployPipelineDeployment) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DeployPipelineDeployment) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_deployment_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_deployment_summary.go index aa0a584ac49..f5d82203558 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_deployment_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_deployment_summary.go @@ -62,77 +62,77 @@ type DeployPipelineDeploymentSummary struct { LifecycleState DeploymentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m DeployPipelineDeploymentSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DeployPipelineDeploymentSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m DeployPipelineDeploymentSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m DeployPipelineDeploymentSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DeployPipelineDeploymentSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DeployPipelineDeploymentSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DeployPipelineDeploymentSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DeployPipelineDeploymentSummary) GetLifecycleState() DeploymentLifecycleStateEnum { return m.LifecycleState } -//GetDeploymentArguments returns DeploymentArguments +// GetDeploymentArguments returns DeploymentArguments func (m DeployPipelineDeploymentSummary) GetDeploymentArguments() *DeploymentArgumentCollection { return m.DeploymentArguments } -//GetDeployStageOverrideArguments returns DeployStageOverrideArguments +// GetDeployStageOverrideArguments returns DeployStageOverrideArguments func (m DeployPipelineDeploymentSummary) GetDeployStageOverrideArguments() *DeployStageOverrideArgumentCollection { return m.DeployStageOverrideArguments } -//GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments +// GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments func (m DeployPipelineDeploymentSummary) GetDeployArtifactOverrideArguments() *DeployArtifactOverrideArgumentCollection { return m.DeployArtifactOverrideArguments } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DeployPipelineDeploymentSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DeployPipelineDeploymentSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DeployPipelineDeploymentSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DeployPipelineDeploymentSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_redeployment.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_redeployment.go index 3b1a7c58cfd..43860323d18 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_redeployment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_redeployment.go @@ -71,92 +71,92 @@ type DeployPipelineRedeployment struct { LifecycleState DeploymentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetDeployPipelineArtifacts returns DeployPipelineArtifacts +// GetDeployPipelineArtifacts returns DeployPipelineArtifacts func (m DeployPipelineRedeployment) GetDeployPipelineArtifacts() *DeployPipelineArtifactCollection { return m.DeployPipelineArtifacts } -//GetDeployPipelineEnvironments returns DeployPipelineEnvironments +// GetDeployPipelineEnvironments returns DeployPipelineEnvironments func (m DeployPipelineRedeployment) GetDeployPipelineEnvironments() *DeployPipelineEnvironmentCollection { return m.DeployPipelineEnvironments } -//GetId returns Id +// GetId returns Id func (m DeployPipelineRedeployment) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DeployPipelineRedeployment) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m DeployPipelineRedeployment) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m DeployPipelineRedeployment) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DeployPipelineRedeployment) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DeployPipelineRedeployment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DeployPipelineRedeployment) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DeployPipelineRedeployment) GetLifecycleState() DeploymentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DeployPipelineRedeployment) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeploymentArguments returns DeploymentArguments +// GetDeploymentArguments returns DeploymentArguments func (m DeployPipelineRedeployment) GetDeploymentArguments() *DeploymentArgumentCollection { return m.DeploymentArguments } -//GetDeployStageOverrideArguments returns DeployStageOverrideArguments +// GetDeployStageOverrideArguments returns DeployStageOverrideArguments func (m DeployPipelineRedeployment) GetDeployStageOverrideArguments() *DeployStageOverrideArgumentCollection { return m.DeployStageOverrideArguments } -//GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments +// GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments func (m DeployPipelineRedeployment) GetDeployArtifactOverrideArguments() *DeployArtifactOverrideArgumentCollection { return m.DeployArtifactOverrideArguments } -//GetDeploymentExecutionProgress returns DeploymentExecutionProgress +// GetDeploymentExecutionProgress returns DeploymentExecutionProgress func (m DeployPipelineRedeployment) GetDeploymentExecutionProgress() *DeploymentExecutionProgress { return m.DeploymentExecutionProgress } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DeployPipelineRedeployment) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DeployPipelineRedeployment) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DeployPipelineRedeployment) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_redeployment_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_redeployment_summary.go index bcf1fb34d71..ed2b21647ab 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_redeployment_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/deploy_pipeline_redeployment_summary.go @@ -65,77 +65,77 @@ type DeployPipelineRedeploymentSummary struct { LifecycleState DeploymentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m DeployPipelineRedeploymentSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DeployPipelineRedeploymentSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m DeployPipelineRedeploymentSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m DeployPipelineRedeploymentSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DeployPipelineRedeploymentSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DeployPipelineRedeploymentSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DeployPipelineRedeploymentSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DeployPipelineRedeploymentSummary) GetLifecycleState() DeploymentLifecycleStateEnum { return m.LifecycleState } -//GetDeploymentArguments returns DeploymentArguments +// GetDeploymentArguments returns DeploymentArguments func (m DeployPipelineRedeploymentSummary) GetDeploymentArguments() *DeploymentArgumentCollection { return m.DeploymentArguments } -//GetDeployStageOverrideArguments returns DeployStageOverrideArguments +// GetDeployStageOverrideArguments returns DeployStageOverrideArguments func (m DeployPipelineRedeploymentSummary) GetDeployStageOverrideArguments() *DeployStageOverrideArgumentCollection { return m.DeployStageOverrideArguments } -//GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments +// GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments func (m DeployPipelineRedeploymentSummary) GetDeployArtifactOverrideArguments() *DeployArtifactOverrideArgumentCollection { return m.DeployArtifactOverrideArguments } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DeployPipelineRedeploymentSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DeployPipelineRedeploymentSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DeployPipelineRedeploymentSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DeployPipelineRedeploymentSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_client.go index 302841d9632..14655d4e283 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_client.go @@ -93,7 +93,7 @@ func (client *DevopsClient) ConfigurationProvider() *common.ConfigurationProvide // ApproveDeployment Submit stage approval. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ApproveDeployment.go.html to see an example of how to use ApproveDeployment API. // A default retry strategy applies to this operation ApproveDeployment() @@ -156,7 +156,7 @@ func (client DevopsClient) approveDeployment(ctx context.Context, request common // CancelBuildRun Cancels the build run based on the build run ID provided in the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CancelBuildRun.go.html to see an example of how to use CancelBuildRun API. // A default retry strategy applies to this operation CancelBuildRun() @@ -219,7 +219,7 @@ func (client DevopsClient) cancelBuildRun(ctx context.Context, request common.OC // CancelDeployment Cancels a deployment resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CancelDeployment.go.html to see an example of how to use CancelDeployment API. // A default retry strategy applies to this operation CancelDeployment() @@ -282,7 +282,7 @@ func (client DevopsClient) cancelDeployment(ctx context.Context, request common. // CancelScheduledCascadingProjectDeletion Cascading operation that restores Project and child resources from a DELETING state to an active state // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CancelScheduledCascadingProjectDeletion.go.html to see an example of how to use CancelScheduledCascadingProjectDeletion API. // A default retry strategy applies to this operation CancelScheduledCascadingProjectDeletion() @@ -345,7 +345,7 @@ func (client DevopsClient) cancelScheduledCascadingProjectDeletion(ctx context.C // ChangeProjectCompartment Moves a project resource from one compartment OCID to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ChangeProjectCompartment.go.html to see an example of how to use ChangeProjectCompartment API. // A default retry strategy applies to this operation ChangeProjectCompartment() @@ -408,7 +408,7 @@ func (client DevopsClient) changeProjectCompartment(ctx context.Context, request // CreateBuildPipeline Creates a new build pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateBuildPipeline.go.html to see an example of how to use CreateBuildPipeline API. // A default retry strategy applies to this operation CreateBuildPipeline() @@ -471,7 +471,7 @@ func (client DevopsClient) createBuildPipeline(ctx context.Context, request comm // CreateBuildPipelineStage Creates a new stage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateBuildPipelineStage.go.html to see an example of how to use CreateBuildPipelineStage API. // A default retry strategy applies to this operation CreateBuildPipelineStage() @@ -534,7 +534,7 @@ func (client DevopsClient) createBuildPipelineStage(ctx context.Context, request // CreateBuildRun Starts a build pipeline run for a predefined build pipeline. Please ensure the completion of any work request for creation/updation of Build Pipeline before starting a Build Run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateBuildRun.go.html to see an example of how to use CreateBuildRun API. // A default retry strategy applies to this operation CreateBuildRun() @@ -597,7 +597,7 @@ func (client DevopsClient) createBuildRun(ctx context.Context, request common.OC // CreateConnection Creates a new connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateConnection.go.html to see an example of how to use CreateConnection API. // A default retry strategy applies to this operation CreateConnection() @@ -660,7 +660,7 @@ func (client DevopsClient) createConnection(ctx context.Context, request common. // CreateDeployArtifact Creates a new deployment artifact. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateDeployArtifact.go.html to see an example of how to use CreateDeployArtifact API. // A default retry strategy applies to this operation CreateDeployArtifact() @@ -723,7 +723,7 @@ func (client DevopsClient) createDeployArtifact(ctx context.Context, request com // CreateDeployEnvironment Creates a new deployment environment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateDeployEnvironment.go.html to see an example of how to use CreateDeployEnvironment API. // A default retry strategy applies to this operation CreateDeployEnvironment() @@ -786,7 +786,7 @@ func (client DevopsClient) createDeployEnvironment(ctx context.Context, request // CreateDeployPipeline Creates a new deployment pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateDeployPipeline.go.html to see an example of how to use CreateDeployPipeline API. // A default retry strategy applies to this operation CreateDeployPipeline() @@ -849,7 +849,7 @@ func (client DevopsClient) createDeployPipeline(ctx context.Context, request com // CreateDeployStage Creates a new deployment stage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateDeployStage.go.html to see an example of how to use CreateDeployStage API. // A default retry strategy applies to this operation CreateDeployStage() @@ -912,7 +912,7 @@ func (client DevopsClient) createDeployStage(ctx context.Context, request common // CreateDeployment Creates a new deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateDeployment.go.html to see an example of how to use CreateDeployment API. // A default retry strategy applies to this operation CreateDeployment() @@ -975,7 +975,7 @@ func (client DevopsClient) createDeployment(ctx context.Context, request common. // CreateProject Creates a new project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateProject.go.html to see an example of how to use CreateProject API. // A default retry strategy applies to this operation CreateProject() @@ -1038,7 +1038,7 @@ func (client DevopsClient) createProject(ctx context.Context, request common.OCI // CreateRepository Creates a new repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateRepository.go.html to see an example of how to use CreateRepository API. // A default retry strategy applies to this operation CreateRepository() @@ -1101,7 +1101,7 @@ func (client DevopsClient) createRepository(ctx context.Context, request common. // CreateTrigger Creates a new trigger. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/CreateTrigger.go.html to see an example of how to use CreateTrigger API. // A default retry strategy applies to this operation CreateTrigger() @@ -1164,7 +1164,7 @@ func (client DevopsClient) createTrigger(ctx context.Context, request common.OCI // DeleteBuildPipeline Deletes a build pipeline resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteBuildPipeline.go.html to see an example of how to use DeleteBuildPipeline API. // A default retry strategy applies to this operation DeleteBuildPipeline() @@ -1222,7 +1222,7 @@ func (client DevopsClient) deleteBuildPipeline(ctx context.Context, request comm // DeleteBuildPipelineStage Deletes a stage based on the stage ID provided in the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteBuildPipelineStage.go.html to see an example of how to use DeleteBuildPipelineStage API. // A default retry strategy applies to this operation DeleteBuildPipelineStage() @@ -1280,7 +1280,7 @@ func (client DevopsClient) deleteBuildPipelineStage(ctx context.Context, request // DeleteConnection Deletes a connection resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteConnection.go.html to see an example of how to use DeleteConnection API. // A default retry strategy applies to this operation DeleteConnection() @@ -1338,7 +1338,7 @@ func (client DevopsClient) deleteConnection(ctx context.Context, request common. // DeleteDeployArtifact Deletes a deployment artifact resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteDeployArtifact.go.html to see an example of how to use DeleteDeployArtifact API. // A default retry strategy applies to this operation DeleteDeployArtifact() @@ -1396,7 +1396,7 @@ func (client DevopsClient) deleteDeployArtifact(ctx context.Context, request com // DeleteDeployEnvironment Deletes a deployment environment resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteDeployEnvironment.go.html to see an example of how to use DeleteDeployEnvironment API. // A default retry strategy applies to this operation DeleteDeployEnvironment() @@ -1454,7 +1454,7 @@ func (client DevopsClient) deleteDeployEnvironment(ctx context.Context, request // DeleteDeployPipeline Deletes a deployment pipeline resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteDeployPipeline.go.html to see an example of how to use DeleteDeployPipeline API. // A default retry strategy applies to this operation DeleteDeployPipeline() @@ -1512,7 +1512,7 @@ func (client DevopsClient) deleteDeployPipeline(ctx context.Context, request com // DeleteDeployStage Deletes a deployment stage resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteDeployStage.go.html to see an example of how to use DeleteDeployStage API. // A default retry strategy applies to this operation DeleteDeployStage() @@ -1570,7 +1570,7 @@ func (client DevopsClient) deleteDeployStage(ctx context.Context, request common // DeleteProject Deletes a project resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteProject.go.html to see an example of how to use DeleteProject API. // A default retry strategy applies to this operation DeleteProject() @@ -1628,7 +1628,7 @@ func (client DevopsClient) deleteProject(ctx context.Context, request common.OCI // DeleteRef Deletes a Repository's Ref by its name. Returns an error if the name is ambiguous. Can be disambiguated by using full names like "heads/" or "tags/". // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteRef.go.html to see an example of how to use DeleteRef API. // A default retry strategy applies to this operation DeleteRef() @@ -1691,7 +1691,7 @@ func (client DevopsClient) deleteRef(ctx context.Context, request common.OCIRequ // DeleteRepository Deletes a repository resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteRepository.go.html to see an example of how to use DeleteRepository API. // A default retry strategy applies to this operation DeleteRepository() @@ -1749,7 +1749,7 @@ func (client DevopsClient) deleteRepository(ctx context.Context, request common. // DeleteTrigger Deletes a trigger resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/DeleteTrigger.go.html to see an example of how to use DeleteTrigger API. // A default retry strategy applies to this operation DeleteTrigger() @@ -1807,7 +1807,7 @@ func (client DevopsClient) deleteTrigger(ctx context.Context, request common.OCI // GetBuildPipeline Retrieves a build pipeline by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetBuildPipeline.go.html to see an example of how to use GetBuildPipeline API. // A default retry strategy applies to this operation GetBuildPipeline() @@ -1865,7 +1865,7 @@ func (client DevopsClient) getBuildPipeline(ctx context.Context, request common. // GetBuildPipelineStage Retrieves a stage based on the stage ID provided in the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetBuildPipelineStage.go.html to see an example of how to use GetBuildPipelineStage API. // A default retry strategy applies to this operation GetBuildPipelineStage() @@ -1923,7 +1923,7 @@ func (client DevopsClient) getBuildPipelineStage(ctx context.Context, request co // GetBuildRun Returns the details of a build run for a given build run ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetBuildRun.go.html to see an example of how to use GetBuildRun API. // A default retry strategy applies to this operation GetBuildRun() @@ -1981,7 +1981,7 @@ func (client DevopsClient) getBuildRun(ctx context.Context, request common.OCIRe // GetCommit Retrieves a repository's commit by commit ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetCommit.go.html to see an example of how to use GetCommit API. // A default retry strategy applies to this operation GetCommit() @@ -2039,7 +2039,7 @@ func (client DevopsClient) getCommit(ctx context.Context, request common.OCIRequ // GetCommitDiff Compares two revisions for their differences. Supports comparison between two references or commits. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetCommitDiff.go.html to see an example of how to use GetCommitDiff API. // A default retry strategy applies to this operation GetCommitDiff() @@ -2097,7 +2097,7 @@ func (client DevopsClient) getCommitDiff(ctx context.Context, request common.OCI // GetConnection Retrieves a connection by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetConnection.go.html to see an example of how to use GetConnection API. // A default retry strategy applies to this operation GetConnection() @@ -2155,7 +2155,7 @@ func (client DevopsClient) getConnection(ctx context.Context, request common.OCI // GetDeployArtifact Retrieves a deployment artifact by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetDeployArtifact.go.html to see an example of how to use GetDeployArtifact API. // A default retry strategy applies to this operation GetDeployArtifact() @@ -2213,7 +2213,7 @@ func (client DevopsClient) getDeployArtifact(ctx context.Context, request common // GetDeployEnvironment Retrieves a deployment environment by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetDeployEnvironment.go.html to see an example of how to use GetDeployEnvironment API. // A default retry strategy applies to this operation GetDeployEnvironment() @@ -2271,7 +2271,7 @@ func (client DevopsClient) getDeployEnvironment(ctx context.Context, request com // GetDeployPipeline Retrieves a deployment pipeline by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetDeployPipeline.go.html to see an example of how to use GetDeployPipeline API. // A default retry strategy applies to this operation GetDeployPipeline() @@ -2329,7 +2329,7 @@ func (client DevopsClient) getDeployPipeline(ctx context.Context, request common // GetDeployStage Retrieves a deployment stage by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetDeployStage.go.html to see an example of how to use GetDeployStage API. // A default retry strategy applies to this operation GetDeployStage() @@ -2387,7 +2387,7 @@ func (client DevopsClient) getDeployStage(ctx context.Context, request common.OC // GetDeployment Retrieves a deployment by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetDeployment.go.html to see an example of how to use GetDeployment API. // A default retry strategy applies to this operation GetDeployment() @@ -2445,7 +2445,7 @@ func (client DevopsClient) getDeployment(ctx context.Context, request common.OCI // GetFileDiff Gets the line-by-line difference between file on different commits. This API will be deprecated on Wed, 29 Mar 2023 01:00:00 GMT as it does not get recognized when filePath has '/'. This will be replaced by "/repositories/{repositoryId}/file/diffs" // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetFileDiff.go.html to see an example of how to use GetFileDiff API. // A default retry strategy applies to this operation GetFileDiff() @@ -2503,7 +2503,7 @@ func (client DevopsClient) getFileDiff(ctx context.Context, request common.OCIRe // GetMirrorRecord Returns either current mirror record or last successful mirror record for a specific mirror repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetMirrorRecord.go.html to see an example of how to use GetMirrorRecord API. // A default retry strategy applies to this operation GetMirrorRecord() @@ -2561,7 +2561,7 @@ func (client DevopsClient) getMirrorRecord(ctx context.Context, request common.O // GetObject Retrieves blob of specific branch name/commit ID and file path. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetObject.go.html to see an example of how to use GetObject API. // A default retry strategy applies to this operation GetObject() @@ -2619,7 +2619,7 @@ func (client DevopsClient) getObject(ctx context.Context, request common.OCIRequ // GetObjectContent Retrieve contents of a specified object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetObjectContent.go.html to see an example of how to use GetObjectContent API. // A default retry strategy applies to this operation GetObjectContent() @@ -2676,7 +2676,7 @@ func (client DevopsClient) getObjectContent(ctx context.Context, request common. // GetProject Retrieves a project by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetProject.go.html to see an example of how to use GetProject API. // A default retry strategy applies to this operation GetProject() @@ -2734,7 +2734,7 @@ func (client DevopsClient) getProject(ctx context.Context, request common.OCIReq // GetRef Retrieves a repository's reference by its name with preference for branches over tags if the name is ambiguous. This can be disambiguated by using full names like "heads/" or "tags/". // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetRef.go.html to see an example of how to use GetRef API. // A default retry strategy applies to this operation GetRef() @@ -2792,7 +2792,7 @@ func (client DevopsClient) getRef(ctx context.Context, request common.OCIRequest // GetRepoFileDiff Gets the line-by-line difference between file on different commits. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetRepoFileDiff.go.html to see an example of how to use GetRepoFileDiff API. // A default retry strategy applies to this operation GetRepoFileDiff() @@ -2850,7 +2850,7 @@ func (client DevopsClient) getRepoFileDiff(ctx context.Context, request common.O // GetRepoFileLines Retrieve lines of a specified file. Supports starting line number and limit. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetRepoFileLines.go.html to see an example of how to use GetRepoFileLines API. // A default retry strategy applies to this operation GetRepoFileLines() @@ -2908,7 +2908,7 @@ func (client DevopsClient) getRepoFileLines(ctx context.Context, request common. // GetRepository Retrieves a repository by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetRepository.go.html to see an example of how to use GetRepository API. // A default retry strategy applies to this operation GetRepository() @@ -2966,7 +2966,7 @@ func (client DevopsClient) getRepository(ctx context.Context, request common.OCI // GetRepositoryArchiveContent Returns the archived repository information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetRepositoryArchiveContent.go.html to see an example of how to use GetRepositoryArchiveContent API. // A default retry strategy applies to this operation GetRepositoryArchiveContent() @@ -3023,7 +3023,7 @@ func (client DevopsClient) getRepositoryArchiveContent(ctx context.Context, requ // GetRepositoryFileLines Retrieve lines of a specified file. Supports starting line number and limit. This API will be deprecated on Wed, 29 Mar 2023 01:00:00 GMT as it does not get recognized when filePath has '/'. This will be replaced by "/repositories/{repositoryId}/file/lines" // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetRepositoryFileLines.go.html to see an example of how to use GetRepositoryFileLines API. // A default retry strategy applies to this operation GetRepositoryFileLines() @@ -3081,7 +3081,7 @@ func (client DevopsClient) getRepositoryFileLines(ctx context.Context, request c // GetTrigger Retrieves a trigger by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetTrigger.go.html to see an example of how to use GetTrigger API. // A default retry strategy applies to this operation GetTrigger() @@ -3139,7 +3139,7 @@ func (client DevopsClient) getTrigger(ctx context.Context, request common.OCIReq // GetWorkRequest Retrieves the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -3197,7 +3197,7 @@ func (client DevopsClient) getWorkRequest(ctx context.Context, request common.OC // ListAuthors Retrieve a list of all the authors. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListAuthors.go.html to see an example of how to use ListAuthors API. // A default retry strategy applies to this operation ListAuthors() @@ -3255,7 +3255,7 @@ func (client DevopsClient) listAuthors(ctx context.Context, request common.OCIRe // ListBuildPipelineStages Returns a list of all stages in a compartment or build pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListBuildPipelineStages.go.html to see an example of how to use ListBuildPipelineStages API. // A default retry strategy applies to this operation ListBuildPipelineStages() @@ -3313,7 +3313,7 @@ func (client DevopsClient) listBuildPipelineStages(ctx context.Context, request // ListBuildPipelines Returns a list of build pipelines. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListBuildPipelines.go.html to see an example of how to use ListBuildPipelines API. // A default retry strategy applies to this operation ListBuildPipelines() @@ -3371,7 +3371,7 @@ func (client DevopsClient) listBuildPipelines(ctx context.Context, request commo // ListBuildRuns Returns a list of build run summary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListBuildRuns.go.html to see an example of how to use ListBuildRuns API. // A default retry strategy applies to this operation ListBuildRuns() @@ -3429,7 +3429,7 @@ func (client DevopsClient) listBuildRuns(ctx context.Context, request common.OCI // ListCommitDiffs Compares two revisions and lists the differences. Supports comparison between two references or commits. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListCommitDiffs.go.html to see an example of how to use ListCommitDiffs API. // A default retry strategy applies to this operation ListCommitDiffs() @@ -3487,7 +3487,7 @@ func (client DevopsClient) listCommitDiffs(ctx context.Context, request common.O // ListCommits Returns a list of commits. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListCommits.go.html to see an example of how to use ListCommits API. // A default retry strategy applies to this operation ListCommits() @@ -3545,7 +3545,7 @@ func (client DevopsClient) listCommits(ctx context.Context, request common.OCIRe // ListConnections Returns a list of connections. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListConnections.go.html to see an example of how to use ListConnections API. // A default retry strategy applies to this operation ListConnections() @@ -3603,7 +3603,7 @@ func (client DevopsClient) listConnections(ctx context.Context, request common.O // ListDeployArtifacts Returns a list of deployment artifacts. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListDeployArtifacts.go.html to see an example of how to use ListDeployArtifacts API. // A default retry strategy applies to this operation ListDeployArtifacts() @@ -3661,7 +3661,7 @@ func (client DevopsClient) listDeployArtifacts(ctx context.Context, request comm // ListDeployEnvironments Returns a list of deployment environments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListDeployEnvironments.go.html to see an example of how to use ListDeployEnvironments API. // A default retry strategy applies to this operation ListDeployEnvironments() @@ -3719,7 +3719,7 @@ func (client DevopsClient) listDeployEnvironments(ctx context.Context, request c // ListDeployPipelines Returns a list of deployment pipelines. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListDeployPipelines.go.html to see an example of how to use ListDeployPipelines API. // A default retry strategy applies to this operation ListDeployPipelines() @@ -3777,7 +3777,7 @@ func (client DevopsClient) listDeployPipelines(ctx context.Context, request comm // ListDeployStages Retrieves a list of deployment stages. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListDeployStages.go.html to see an example of how to use ListDeployStages API. // A default retry strategy applies to this operation ListDeployStages() @@ -3835,7 +3835,7 @@ func (client DevopsClient) listDeployStages(ctx context.Context, request common. // ListDeployments Returns a list of deployments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListDeployments.go.html to see an example of how to use ListDeployments API. // A default retry strategy applies to this operation ListDeployments() @@ -3893,7 +3893,7 @@ func (client DevopsClient) listDeployments(ctx context.Context, request common.O // ListMirrorRecords Returns a list of mirror entry in history within 30 days. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListMirrorRecords.go.html to see an example of how to use ListMirrorRecords API. // A default retry strategy applies to this operation ListMirrorRecords() @@ -3951,7 +3951,7 @@ func (client DevopsClient) listMirrorRecords(ctx context.Context, request common // ListPaths Retrieves a list of files and directories in a repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListPaths.go.html to see an example of how to use ListPaths API. // A default retry strategy applies to this operation ListPaths() @@ -4009,7 +4009,7 @@ func (client DevopsClient) listPaths(ctx context.Context, request common.OCIRequ // ListProjects Returns a list of projects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListProjects.go.html to see an example of how to use ListProjects API. // A default retry strategy applies to this operation ListProjects() @@ -4067,7 +4067,7 @@ func (client DevopsClient) listProjects(ctx context.Context, request common.OCIR // ListRefs Returns a list of references. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListRefs.go.html to see an example of how to use ListRefs API. // A default retry strategy applies to this operation ListRefs() @@ -4125,7 +4125,7 @@ func (client DevopsClient) listRefs(ctx context.Context, request common.OCIReque // ListRepositories Returns a list of repositories given a compartment ID or a project ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListRepositories.go.html to see an example of how to use ListRepositories API. // A default retry strategy applies to this operation ListRepositories() @@ -4183,7 +4183,7 @@ func (client DevopsClient) listRepositories(ctx context.Context, request common. // ListTriggers Returns a list of triggers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListTriggers.go.html to see an example of how to use ListTriggers API. // A default retry strategy applies to this operation ListTriggers() @@ -4241,7 +4241,7 @@ func (client DevopsClient) listTriggers(ctx context.Context, request common.OCIR // ListWorkRequestErrors Returns a list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -4299,7 +4299,7 @@ func (client DevopsClient) listWorkRequestErrors(ctx context.Context, request co // ListWorkRequestLogs Returns a list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -4357,7 +4357,7 @@ func (client DevopsClient) listWorkRequestLogs(ctx context.Context, request comm // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -4415,7 +4415,7 @@ func (client DevopsClient) listWorkRequests(ctx context.Context, request common. // MirrorRepository Synchronize a mirrored repository to the latest version from external providers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/MirrorRepository.go.html to see an example of how to use MirrorRepository API. // A default retry strategy applies to this operation MirrorRepository() @@ -4473,7 +4473,7 @@ func (client DevopsClient) mirrorRepository(ctx context.Context, request common. // PutRepositoryRef Creates a new reference or updates an existing one. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/PutRepositoryRef.go.html to see an example of how to use PutRepositoryRef API. // A default retry strategy applies to this operation PutRepositoryRef() @@ -4536,7 +4536,7 @@ func (client DevopsClient) putRepositoryRef(ctx context.Context, request common. // ScheduleCascadingProjectDeletion Cascading operation that marks Project and child DevOps resources in a DELETING state for a retention period // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ScheduleCascadingProjectDeletion.go.html to see an example of how to use ScheduleCascadingProjectDeletion API. // A default retry strategy applies to this operation ScheduleCascadingProjectDeletion() @@ -4599,7 +4599,7 @@ func (client DevopsClient) scheduleCascadingProjectDeletion(ctx context.Context, // UpdateBuildPipeline Updates the build pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateBuildPipeline.go.html to see an example of how to use UpdateBuildPipeline API. // A default retry strategy applies to this operation UpdateBuildPipeline() @@ -4657,7 +4657,7 @@ func (client DevopsClient) updateBuildPipeline(ctx context.Context, request comm // UpdateBuildPipelineStage Updates the stage based on the stage ID provided in the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateBuildPipelineStage.go.html to see an example of how to use UpdateBuildPipelineStage API. // A default retry strategy applies to this operation UpdateBuildPipelineStage() @@ -4715,7 +4715,7 @@ func (client DevopsClient) updateBuildPipelineStage(ctx context.Context, request // UpdateBuildRun Updates the build run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateBuildRun.go.html to see an example of how to use UpdateBuildRun API. // A default retry strategy applies to this operation UpdateBuildRun() @@ -4773,7 +4773,7 @@ func (client DevopsClient) updateBuildRun(ctx context.Context, request common.OC // UpdateConnection Updates the connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateConnection.go.html to see an example of how to use UpdateConnection API. // A default retry strategy applies to this operation UpdateConnection() @@ -4831,7 +4831,7 @@ func (client DevopsClient) updateConnection(ctx context.Context, request common. // UpdateDeployArtifact Updates the deployment artifact. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateDeployArtifact.go.html to see an example of how to use UpdateDeployArtifact API. // A default retry strategy applies to this operation UpdateDeployArtifact() @@ -4889,7 +4889,7 @@ func (client DevopsClient) updateDeployArtifact(ctx context.Context, request com // UpdateDeployEnvironment Updates the deployment environment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateDeployEnvironment.go.html to see an example of how to use UpdateDeployEnvironment API. // A default retry strategy applies to this operation UpdateDeployEnvironment() @@ -4947,7 +4947,7 @@ func (client DevopsClient) updateDeployEnvironment(ctx context.Context, request // UpdateDeployPipeline Updates the deployment pipeline. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateDeployPipeline.go.html to see an example of how to use UpdateDeployPipeline API. // A default retry strategy applies to this operation UpdateDeployPipeline() @@ -5005,7 +5005,7 @@ func (client DevopsClient) updateDeployPipeline(ctx context.Context, request com // UpdateDeployStage Updates the deployment stage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateDeployStage.go.html to see an example of how to use UpdateDeployStage API. // A default retry strategy applies to this operation UpdateDeployStage() @@ -5063,7 +5063,7 @@ func (client DevopsClient) updateDeployStage(ctx context.Context, request common // UpdateDeployment Updates the deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateDeployment.go.html to see an example of how to use UpdateDeployment API. // A default retry strategy applies to this operation UpdateDeployment() @@ -5121,7 +5121,7 @@ func (client DevopsClient) updateDeployment(ctx context.Context, request common. // UpdateProject Updates the project. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateProject.go.html to see an example of how to use UpdateProject API. // A default retry strategy applies to this operation UpdateProject() @@ -5179,7 +5179,7 @@ func (client DevopsClient) updateProject(ctx context.Context, request common.OCI // UpdateRepository Updates the repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateRepository.go.html to see an example of how to use UpdateRepository API. // A default retry strategy applies to this operation UpdateRepository() @@ -5237,7 +5237,7 @@ func (client DevopsClient) updateRepository(ctx context.Context, request common. // UpdateTrigger Updates the trigger. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/UpdateTrigger.go.html to see an example of how to use UpdateTrigger API. // A default retry strategy applies to this operation UpdateTrigger() @@ -5295,7 +5295,7 @@ func (client DevopsClient) updateTrigger(ctx context.Context, request common.OCI // ValidateConnection Return whether the credentials of the connection are valid. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/devops/ValidateConnection.go.html to see an example of how to use ValidateConnection API. // A default retry strategy applies to this operation ValidateConnection() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_build_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_build_source.go index 1e642e5b325..7e648a9db39 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_build_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_build_source.go @@ -32,17 +32,17 @@ type DevopsCodeRepositoryBuildSource struct { RepositoryId *string `mandatory:"true" json:"repositoryId"` } -//GetName returns Name +// GetName returns Name func (m DevopsCodeRepositoryBuildSource) GetName() *string { return m.Name } -//GetRepositoryUrl returns RepositoryUrl +// GetRepositoryUrl returns RepositoryUrl func (m DevopsCodeRepositoryBuildSource) GetRepositoryUrl() *string { return m.RepositoryUrl } -//GetBranch returns Branch +// GetBranch returns Branch func (m DevopsCodeRepositoryBuildSource) GetBranch() *string { return m.Branch } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger.go index 1b5d28c2a18..7c2b8ab62f1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger.go @@ -62,67 +62,67 @@ type DevopsCodeRepositoryTrigger struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m DevopsCodeRepositoryTrigger) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DevopsCodeRepositoryTrigger) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m DevopsCodeRepositoryTrigger) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m DevopsCodeRepositoryTrigger) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DevopsCodeRepositoryTrigger) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DevopsCodeRepositoryTrigger) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DevopsCodeRepositoryTrigger) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DevopsCodeRepositoryTrigger) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DevopsCodeRepositoryTrigger) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m DevopsCodeRepositoryTrigger) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DevopsCodeRepositoryTrigger) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DevopsCodeRepositoryTrigger) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DevopsCodeRepositoryTrigger) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger_create_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger_create_result.go index 8f4d2ca8a21..7985a297497 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger_create_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger_create_result.go @@ -62,67 +62,67 @@ type DevopsCodeRepositoryTriggerCreateResult struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m DevopsCodeRepositoryTriggerCreateResult) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DevopsCodeRepositoryTriggerCreateResult) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m DevopsCodeRepositoryTriggerCreateResult) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m DevopsCodeRepositoryTriggerCreateResult) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DevopsCodeRepositoryTriggerCreateResult) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DevopsCodeRepositoryTriggerCreateResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DevopsCodeRepositoryTriggerCreateResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DevopsCodeRepositoryTriggerCreateResult) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DevopsCodeRepositoryTriggerCreateResult) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m DevopsCodeRepositoryTriggerCreateResult) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DevopsCodeRepositoryTriggerCreateResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DevopsCodeRepositoryTriggerCreateResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DevopsCodeRepositoryTriggerCreateResult) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger_summary.go index 82b219af872..5777eab0baa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/devops_code_repository_trigger_summary.go @@ -59,62 +59,62 @@ type DevopsCodeRepositoryTriggerSummary struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m DevopsCodeRepositoryTriggerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DevopsCodeRepositoryTriggerSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m DevopsCodeRepositoryTriggerSummary) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m DevopsCodeRepositoryTriggerSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DevopsCodeRepositoryTriggerSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DevopsCodeRepositoryTriggerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DevopsCodeRepositoryTriggerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DevopsCodeRepositoryTriggerSummary) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m DevopsCodeRepositoryTriggerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DevopsCodeRepositoryTriggerSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DevopsCodeRepositoryTriggerSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DevopsCodeRepositoryTriggerSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_environment.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_environment.go index 67c95c0a376..30abcc3c18c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_environment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_environment.go @@ -59,62 +59,62 @@ type FunctionDeployEnvironment struct { LifecycleState DeployEnvironmentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m FunctionDeployEnvironment) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m FunctionDeployEnvironment) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m FunctionDeployEnvironment) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m FunctionDeployEnvironment) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m FunctionDeployEnvironment) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m FunctionDeployEnvironment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m FunctionDeployEnvironment) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m FunctionDeployEnvironment) GetLifecycleState() DeployEnvironmentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m FunctionDeployEnvironment) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m FunctionDeployEnvironment) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m FunctionDeployEnvironment) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m FunctionDeployEnvironment) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_environment_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_environment_summary.go index ff74c14c5a0..e1ec4f55771 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_environment_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_environment_summary.go @@ -59,62 +59,62 @@ type FunctionDeployEnvironmentSummary struct { LifecycleState DeployEnvironmentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m FunctionDeployEnvironmentSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m FunctionDeployEnvironmentSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m FunctionDeployEnvironmentSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m FunctionDeployEnvironmentSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m FunctionDeployEnvironmentSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m FunctionDeployEnvironmentSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m FunctionDeployEnvironmentSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m FunctionDeployEnvironmentSummary) GetLifecycleState() DeployEnvironmentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m FunctionDeployEnvironmentSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m FunctionDeployEnvironmentSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m FunctionDeployEnvironmentSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m FunctionDeployEnvironmentSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage.go index ce0a0b58938..dcb4c5238e5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage.go @@ -76,72 +76,72 @@ type FunctionDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m FunctionDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m FunctionDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m FunctionDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m FunctionDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m FunctionDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m FunctionDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m FunctionDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m FunctionDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m FunctionDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m FunctionDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m FunctionDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m FunctionDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m FunctionDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m FunctionDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage_execution_progress.go index accd83afc17..8f6fa23a72c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type FunctionDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m FunctionDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m FunctionDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m FunctionDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m FunctionDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m FunctionDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m FunctionDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m FunctionDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage_summary.go index 6f1a5f5344b..79136336878 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/function_deploy_stage_summary.go @@ -76,72 +76,72 @@ type FunctionDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m FunctionDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m FunctionDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m FunctionDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m FunctionDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m FunctionDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m FunctionDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m FunctionDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m FunctionDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m FunctionDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m FunctionDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m FunctionDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m FunctionDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m FunctionDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m FunctionDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/generic_delivered_artifact.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/generic_delivered_artifact.go index 572a45347af..06cdb26d278 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/generic_delivered_artifact.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/generic_delivered_artifact.go @@ -38,12 +38,12 @@ type GenericDeliveredArtifact struct { Version *string `mandatory:"false" json:"version"` } -//GetDeployArtifactId returns DeployArtifactId +// GetDeployArtifactId returns DeployArtifactId func (m GenericDeliveredArtifact) GetDeployArtifactId() *string { return m.DeployArtifactId } -//GetOutputArtifactName returns OutputArtifactName +// GetOutputArtifactName returns OutputArtifactName func (m GenericDeliveredArtifact) GetOutputArtifactName() *string { return m.OutputArtifactName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_access_token_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_access_token_connection.go index f726286b49a..82be7833fb3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_access_token_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_access_token_connection.go @@ -62,67 +62,67 @@ type GithubAccessTokenConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GithubAccessTokenConnection) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m GithubAccessTokenConnection) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GithubAccessTokenConnection) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GithubAccessTokenConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GithubAccessTokenConnection) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GithubAccessTokenConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GithubAccessTokenConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m GithubAccessTokenConnection) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GithubAccessTokenConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GithubAccessTokenConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GithubAccessTokenConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GithubAccessTokenConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GithubAccessTokenConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_access_token_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_access_token_connection_summary.go index 08305d11fcb..3c0a054bd88 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_access_token_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_access_token_connection_summary.go @@ -62,67 +62,67 @@ type GithubAccessTokenConnectionSummary struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GithubAccessTokenConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GithubAccessTokenConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GithubAccessTokenConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GithubAccessTokenConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GithubAccessTokenConnectionSummary) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GithubAccessTokenConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GithubAccessTokenConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m GithubAccessTokenConnectionSummary) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GithubAccessTokenConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GithubAccessTokenConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GithubAccessTokenConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GithubAccessTokenConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GithubAccessTokenConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_build_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_build_source.go index ba5f984b750..cad5173e74b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_build_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_build_source.go @@ -32,17 +32,17 @@ type GithubBuildSource struct { ConnectionId *string `mandatory:"true" json:"connectionId"` } -//GetName returns Name +// GetName returns Name func (m GithubBuildSource) GetName() *string { return m.Name } -//GetRepositoryUrl returns RepositoryUrl +// GetRepositoryUrl returns RepositoryUrl func (m GithubBuildSource) GetRepositoryUrl() *string { return m.RepositoryUrl } -//GetBranch returns Branch +// GetBranch returns Branch func (m GithubBuildSource) GetBranch() *string { return m.Branch } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger.go index 72b65a1dda5..11ebfe13eff 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger.go @@ -65,67 +65,67 @@ type GithubTrigger struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GithubTrigger) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GithubTrigger) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GithubTrigger) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GithubTrigger) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GithubTrigger) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GithubTrigger) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GithubTrigger) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GithubTrigger) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GithubTrigger) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m GithubTrigger) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GithubTrigger) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GithubTrigger) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GithubTrigger) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger_create_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger_create_result.go index 88e705536e0..06ad540f05c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger_create_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger_create_result.go @@ -68,67 +68,67 @@ type GithubTriggerCreateResult struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GithubTriggerCreateResult) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GithubTriggerCreateResult) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GithubTriggerCreateResult) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GithubTriggerCreateResult) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GithubTriggerCreateResult) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GithubTriggerCreateResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GithubTriggerCreateResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GithubTriggerCreateResult) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GithubTriggerCreateResult) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m GithubTriggerCreateResult) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GithubTriggerCreateResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GithubTriggerCreateResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GithubTriggerCreateResult) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger_summary.go index f37d85fb875..0a3732cb4f5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/github_trigger_summary.go @@ -59,62 +59,62 @@ type GithubTriggerSummary struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GithubTriggerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GithubTriggerSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GithubTriggerSummary) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GithubTriggerSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GithubTriggerSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GithubTriggerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GithubTriggerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GithubTriggerSummary) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GithubTriggerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GithubTriggerSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GithubTriggerSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GithubTriggerSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_access_token_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_access_token_connection.go index 26f597d81bf..ee300e9b65d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_access_token_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_access_token_connection.go @@ -62,67 +62,67 @@ type GitlabAccessTokenConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabAccessTokenConnection) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabAccessTokenConnection) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabAccessTokenConnection) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabAccessTokenConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabAccessTokenConnection) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabAccessTokenConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabAccessTokenConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m GitlabAccessTokenConnection) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabAccessTokenConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabAccessTokenConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabAccessTokenConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabAccessTokenConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabAccessTokenConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_access_token_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_access_token_connection_summary.go index b2fb1438b0a..a63ce2ece13 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_access_token_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_access_token_connection_summary.go @@ -62,67 +62,67 @@ type GitlabAccessTokenConnectionSummary struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabAccessTokenConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabAccessTokenConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabAccessTokenConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabAccessTokenConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabAccessTokenConnectionSummary) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabAccessTokenConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabAccessTokenConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m GitlabAccessTokenConnectionSummary) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabAccessTokenConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabAccessTokenConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabAccessTokenConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabAccessTokenConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabAccessTokenConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_build_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_build_source.go index 6a33cd84775..59ee5c0398a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_build_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_build_source.go @@ -32,17 +32,17 @@ type GitlabBuildSource struct { ConnectionId *string `mandatory:"true" json:"connectionId"` } -//GetName returns Name +// GetName returns Name func (m GitlabBuildSource) GetName() *string { return m.Name } -//GetRepositoryUrl returns RepositoryUrl +// GetRepositoryUrl returns RepositoryUrl func (m GitlabBuildSource) GetRepositoryUrl() *string { return m.RepositoryUrl } -//GetBranch returns Branch +// GetBranch returns Branch func (m GitlabBuildSource) GetBranch() *string { return m.Branch } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_access_token_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_access_token_connection.go index 2432a2cd1c2..c720a401b38 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_access_token_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_access_token_connection.go @@ -68,67 +68,67 @@ type GitlabServerAccessTokenConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabServerAccessTokenConnection) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabServerAccessTokenConnection) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabServerAccessTokenConnection) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabServerAccessTokenConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabServerAccessTokenConnection) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabServerAccessTokenConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabServerAccessTokenConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m GitlabServerAccessTokenConnection) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabServerAccessTokenConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabServerAccessTokenConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabServerAccessTokenConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabServerAccessTokenConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabServerAccessTokenConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_access_token_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_access_token_connection_summary.go index ae28d6368f7..9e5decbfee4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_access_token_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_access_token_connection_summary.go @@ -67,67 +67,67 @@ type GitlabServerAccessTokenConnectionSummary struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabServerAccessTokenConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabServerAccessTokenConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabServerAccessTokenConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabServerAccessTokenConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabServerAccessTokenConnectionSummary) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabServerAccessTokenConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabServerAccessTokenConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m GitlabServerAccessTokenConnectionSummary) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabServerAccessTokenConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabServerAccessTokenConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabServerAccessTokenConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabServerAccessTokenConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabServerAccessTokenConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_build_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_build_source.go index a83c92b62c0..d9944a171bc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_build_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_build_source.go @@ -32,17 +32,17 @@ type GitlabServerBuildSource struct { ConnectionId *string `mandatory:"true" json:"connectionId"` } -//GetName returns Name +// GetName returns Name func (m GitlabServerBuildSource) GetName() *string { return m.Name } -//GetRepositoryUrl returns RepositoryUrl +// GetRepositoryUrl returns RepositoryUrl func (m GitlabServerBuildSource) GetRepositoryUrl() *string { return m.RepositoryUrl } -//GetBranch returns Branch +// GetBranch returns Branch func (m GitlabServerBuildSource) GetBranch() *string { return m.Branch } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger.go index ab1bce70347..062ccc959ea 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger.go @@ -62,67 +62,67 @@ type GitlabServerTrigger struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabServerTrigger) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabServerTrigger) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabServerTrigger) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabServerTrigger) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabServerTrigger) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabServerTrigger) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabServerTrigger) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabServerTrigger) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabServerTrigger) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m GitlabServerTrigger) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabServerTrigger) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabServerTrigger) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabServerTrigger) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger_create_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger_create_result.go index c05183f37b8..62b19537af0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger_create_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger_create_result.go @@ -65,67 +65,67 @@ type GitlabServerTriggerCreateResult struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabServerTriggerCreateResult) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabServerTriggerCreateResult) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabServerTriggerCreateResult) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabServerTriggerCreateResult) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabServerTriggerCreateResult) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabServerTriggerCreateResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabServerTriggerCreateResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabServerTriggerCreateResult) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabServerTriggerCreateResult) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m GitlabServerTriggerCreateResult) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabServerTriggerCreateResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabServerTriggerCreateResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabServerTriggerCreateResult) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger_summary.go index 0963fc78787..53256a87eab 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_server_trigger_summary.go @@ -56,62 +56,62 @@ type GitlabServerTriggerSummary struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabServerTriggerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabServerTriggerSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabServerTriggerSummary) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabServerTriggerSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabServerTriggerSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabServerTriggerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabServerTriggerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabServerTriggerSummary) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabServerTriggerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabServerTriggerSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabServerTriggerSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabServerTriggerSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger.go index 47cc29fb481..a1b44fe022e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger.go @@ -65,67 +65,67 @@ type GitlabTrigger struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabTrigger) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabTrigger) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabTrigger) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabTrigger) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabTrigger) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabTrigger) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabTrigger) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabTrigger) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabTrigger) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m GitlabTrigger) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabTrigger) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabTrigger) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabTrigger) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger_create_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger_create_result.go index a19656eac94..1be4bef0488 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger_create_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger_create_result.go @@ -68,67 +68,67 @@ type GitlabTriggerCreateResult struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabTriggerCreateResult) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabTriggerCreateResult) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabTriggerCreateResult) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabTriggerCreateResult) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabTriggerCreateResult) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabTriggerCreateResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabTriggerCreateResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabTriggerCreateResult) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabTriggerCreateResult) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m GitlabTriggerCreateResult) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabTriggerCreateResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabTriggerCreateResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabTriggerCreateResult) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger_summary.go index ffd91d3b876..f14bcc92cc0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/gitlab_trigger_summary.go @@ -59,62 +59,62 @@ type GitlabTriggerSummary struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabTriggerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabTriggerSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabTriggerSummary) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m GitlabTriggerSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabTriggerSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabTriggerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GitlabTriggerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabTriggerSummary) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GitlabTriggerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabTriggerSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabTriggerSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GitlabTriggerSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage.go index b787b67eee4..81d47b75de5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage.go @@ -74,72 +74,72 @@ type InvokeFunctionDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m InvokeFunctionDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m InvokeFunctionDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m InvokeFunctionDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m InvokeFunctionDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m InvokeFunctionDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m InvokeFunctionDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m InvokeFunctionDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m InvokeFunctionDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m InvokeFunctionDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m InvokeFunctionDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m InvokeFunctionDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m InvokeFunctionDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m InvokeFunctionDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m InvokeFunctionDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage_execution_progress.go index 3f334ccedef..21afb247c68 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type InvokeFunctionDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m InvokeFunctionDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m InvokeFunctionDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m InvokeFunctionDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m InvokeFunctionDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m InvokeFunctionDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m InvokeFunctionDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m InvokeFunctionDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage_summary.go index fb3491f7658..640f19fe4e1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/invoke_function_deploy_stage_summary.go @@ -74,72 +74,72 @@ type InvokeFunctionDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m InvokeFunctionDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m InvokeFunctionDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m InvokeFunctionDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m InvokeFunctionDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m InvokeFunctionDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m InvokeFunctionDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m InvokeFunctionDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m InvokeFunctionDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m InvokeFunctionDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m InvokeFunctionDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m InvokeFunctionDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m InvokeFunctionDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m InvokeFunctionDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m InvokeFunctionDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage.go index 8d7974002d9..59066a00ea2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage.go @@ -74,72 +74,72 @@ type LoadBalancerTrafficShiftDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m LoadBalancerTrafficShiftDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m LoadBalancerTrafficShiftDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m LoadBalancerTrafficShiftDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m LoadBalancerTrafficShiftDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m LoadBalancerTrafficShiftDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m LoadBalancerTrafficShiftDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m LoadBalancerTrafficShiftDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m LoadBalancerTrafficShiftDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m LoadBalancerTrafficShiftDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m LoadBalancerTrafficShiftDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m LoadBalancerTrafficShiftDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m LoadBalancerTrafficShiftDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m LoadBalancerTrafficShiftDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m LoadBalancerTrafficShiftDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage_execution_progress.go index fdc10e7cfcd..c37448c6027 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type LoadBalancerTrafficShiftDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m LoadBalancerTrafficShiftDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m LoadBalancerTrafficShiftDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m LoadBalancerTrafficShiftDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m LoadBalancerTrafficShiftDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m LoadBalancerTrafficShiftDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m LoadBalancerTrafficShiftDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m LoadBalancerTrafficShiftDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage_summary.go index 8a3c1fb7bdf..52e40890f43 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/load_balancer_traffic_shift_deploy_stage_summary.go @@ -74,72 +74,72 @@ type LoadBalancerTrafficShiftDeployStageSummary struct { TrafficShiftTarget LoadBalancerTrafficShiftDeployStageTrafficShiftTargetEnum `mandatory:"true" json:"trafficShiftTarget"` } -//GetId returns Id +// GetId returns Id func (m LoadBalancerTrafficShiftDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m LoadBalancerTrafficShiftDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m LoadBalancerTrafficShiftDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m LoadBalancerTrafficShiftDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m LoadBalancerTrafficShiftDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m LoadBalancerTrafficShiftDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m LoadBalancerTrafficShiftDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m LoadBalancerTrafficShiftDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m LoadBalancerTrafficShiftDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m LoadBalancerTrafficShiftDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m LoadBalancerTrafficShiftDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m LoadBalancerTrafficShiftDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m LoadBalancerTrafficShiftDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m LoadBalancerTrafficShiftDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage.go index d1633f7851a..b86bae91224 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage.go @@ -63,72 +63,72 @@ type ManualApprovalDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ManualApprovalDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ManualApprovalDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ManualApprovalDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ManualApprovalDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ManualApprovalDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ManualApprovalDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ManualApprovalDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ManualApprovalDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ManualApprovalDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ManualApprovalDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ManualApprovalDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ManualApprovalDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ManualApprovalDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ManualApprovalDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage_execution_progress.go index 3f4d2dad5dc..b5bdcf5e4c4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage_execution_progress.go @@ -43,37 +43,37 @@ type ManualApprovalDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m ManualApprovalDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m ManualApprovalDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m ManualApprovalDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m ManualApprovalDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m ManualApprovalDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m ManualApprovalDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m ManualApprovalDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage_summary.go index 0757f12b94b..bb9a4fe2365 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/manual_approval_deploy_stage_summary.go @@ -63,72 +63,72 @@ type ManualApprovalDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ManualApprovalDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ManualApprovalDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ManualApprovalDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ManualApprovalDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ManualApprovalDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ManualApprovalDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ManualApprovalDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ManualApprovalDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ManualApprovalDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ManualApprovalDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ManualApprovalDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ManualApprovalDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ManualApprovalDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ManualApprovalDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/network_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/network_channel.go index 2c1a20db0e5..fe17002ccc0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/network_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/network_channel.go @@ -17,7 +17,8 @@ import ( ) // NetworkChannel Specifies the configuration needed when the target OCI resource, i.e., OKE cluster, resides -// in customer's private network. +// +// in customer's private network. type NetworkChannel interface { } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage.go index 487774f5efd..16a79ea5708 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage.go @@ -69,72 +69,72 @@ type OkeBlueGreenDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeBlueGreenDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeBlueGreenDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeBlueGreenDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeBlueGreenDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeBlueGreenDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeBlueGreenDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeBlueGreenDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeBlueGreenDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeBlueGreenDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeBlueGreenDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeBlueGreenDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeBlueGreenDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeBlueGreenDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeBlueGreenDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage_execution_progress.go index 92db3f452d8..4b4dfb6b349 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage_execution_progress.go @@ -43,37 +43,37 @@ type OkeBlueGreenDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m OkeBlueGreenDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m OkeBlueGreenDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m OkeBlueGreenDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m OkeBlueGreenDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m OkeBlueGreenDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m OkeBlueGreenDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m OkeBlueGreenDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage_summary.go index 3a10df3b563..e8f3d6b9210 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_deploy_stage_summary.go @@ -69,72 +69,72 @@ type OkeBlueGreenDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeBlueGreenDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeBlueGreenDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeBlueGreenDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeBlueGreenDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeBlueGreenDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeBlueGreenDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeBlueGreenDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeBlueGreenDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeBlueGreenDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeBlueGreenDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeBlueGreenDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeBlueGreenDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeBlueGreenDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeBlueGreenDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage.go index 84bb22dc120..5fb6650cc50 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage.go @@ -64,72 +64,72 @@ type OkeBlueGreenTrafficShiftDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeBlueGreenTrafficShiftDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeBlueGreenTrafficShiftDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeBlueGreenTrafficShiftDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeBlueGreenTrafficShiftDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeBlueGreenTrafficShiftDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeBlueGreenTrafficShiftDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeBlueGreenTrafficShiftDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeBlueGreenTrafficShiftDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeBlueGreenTrafficShiftDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeBlueGreenTrafficShiftDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeBlueGreenTrafficShiftDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeBlueGreenTrafficShiftDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeBlueGreenTrafficShiftDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeBlueGreenTrafficShiftDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage_execution_progress.go index e4b3a6407de..d3ee1f22a43 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage_execution_progress.go @@ -43,37 +43,37 @@ type OkeBlueGreenTrafficShiftDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m OkeBlueGreenTrafficShiftDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m OkeBlueGreenTrafficShiftDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m OkeBlueGreenTrafficShiftDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m OkeBlueGreenTrafficShiftDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m OkeBlueGreenTrafficShiftDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m OkeBlueGreenTrafficShiftDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m OkeBlueGreenTrafficShiftDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage_summary.go index ff728d19a12..5a944500825 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_blue_green_traffic_shift_deploy_stage_summary.go @@ -64,72 +64,72 @@ type OkeBlueGreenTrafficShiftDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeBlueGreenTrafficShiftDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage.go index c9f9f930a3e..6cb8d282526 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage.go @@ -66,72 +66,72 @@ type OkeCanaryApprovalDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeCanaryApprovalDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeCanaryApprovalDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeCanaryApprovalDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeCanaryApprovalDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeCanaryApprovalDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeCanaryApprovalDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeCanaryApprovalDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeCanaryApprovalDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeCanaryApprovalDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeCanaryApprovalDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeCanaryApprovalDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeCanaryApprovalDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeCanaryApprovalDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeCanaryApprovalDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage_execution_progress.go index e2aca0bd5df..4cf07cb7777 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage_execution_progress.go @@ -43,37 +43,37 @@ type OkeCanaryApprovalDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m OkeCanaryApprovalDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m OkeCanaryApprovalDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m OkeCanaryApprovalDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m OkeCanaryApprovalDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m OkeCanaryApprovalDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m OkeCanaryApprovalDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m OkeCanaryApprovalDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage_summary.go index 08a038900ae..b0d064bd798 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_approval_deploy_stage_summary.go @@ -66,72 +66,72 @@ type OkeCanaryApprovalDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeCanaryApprovalDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeCanaryApprovalDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeCanaryApprovalDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeCanaryApprovalDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeCanaryApprovalDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeCanaryApprovalDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeCanaryApprovalDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeCanaryApprovalDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeCanaryApprovalDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeCanaryApprovalDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeCanaryApprovalDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeCanaryApprovalDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeCanaryApprovalDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeCanaryApprovalDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage.go index 4383ec37d07..330042958ea 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage.go @@ -69,72 +69,72 @@ type OkeCanaryDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeCanaryDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeCanaryDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeCanaryDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeCanaryDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeCanaryDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeCanaryDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeCanaryDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeCanaryDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeCanaryDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeCanaryDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeCanaryDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeCanaryDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeCanaryDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeCanaryDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage_execution_progress.go index 76975456791..43fa01e4c71 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage_execution_progress.go @@ -43,37 +43,37 @@ type OkeCanaryDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m OkeCanaryDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m OkeCanaryDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m OkeCanaryDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m OkeCanaryDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m OkeCanaryDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m OkeCanaryDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m OkeCanaryDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage_summary.go index 5e68ab3616b..39784a6620c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_deploy_stage_summary.go @@ -69,72 +69,72 @@ type OkeCanaryDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeCanaryDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeCanaryDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeCanaryDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeCanaryDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeCanaryDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeCanaryDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeCanaryDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeCanaryDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeCanaryDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeCanaryDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeCanaryDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeCanaryDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeCanaryDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeCanaryDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage.go index ba6c40ecc5d..0c513c96227 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage.go @@ -66,72 +66,72 @@ type OkeCanaryTrafficShiftDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeCanaryTrafficShiftDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeCanaryTrafficShiftDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeCanaryTrafficShiftDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeCanaryTrafficShiftDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeCanaryTrafficShiftDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeCanaryTrafficShiftDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeCanaryTrafficShiftDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeCanaryTrafficShiftDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeCanaryTrafficShiftDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeCanaryTrafficShiftDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeCanaryTrafficShiftDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeCanaryTrafficShiftDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeCanaryTrafficShiftDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeCanaryTrafficShiftDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage_execution_progress.go index d66ddccc41c..633f119a281 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type OkeCanaryTrafficShiftDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m OkeCanaryTrafficShiftDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m OkeCanaryTrafficShiftDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m OkeCanaryTrafficShiftDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m OkeCanaryTrafficShiftDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m OkeCanaryTrafficShiftDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m OkeCanaryTrafficShiftDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m OkeCanaryTrafficShiftDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage_summary.go index e5ae954c51b..322441d2a3f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_canary_traffic_shift_deploy_stage_summary.go @@ -66,72 +66,72 @@ type OkeCanaryTrafficShiftDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeCanaryTrafficShiftDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeCanaryTrafficShiftDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeCanaryTrafficShiftDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeCanaryTrafficShiftDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeCanaryTrafficShiftDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeCanaryTrafficShiftDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeCanaryTrafficShiftDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeCanaryTrafficShiftDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeCanaryTrafficShiftDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeCanaryTrafficShiftDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeCanaryTrafficShiftDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeCanaryTrafficShiftDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeCanaryTrafficShiftDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeCanaryTrafficShiftDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_cluster_deploy_environment.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_cluster_deploy_environment.go index 288881a0431..27acc0e2384 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_cluster_deploy_environment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_cluster_deploy_environment.go @@ -61,62 +61,62 @@ type OkeClusterDeployEnvironment struct { LifecycleState DeployEnvironmentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeClusterDeployEnvironment) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeClusterDeployEnvironment) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeClusterDeployEnvironment) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeClusterDeployEnvironment) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeClusterDeployEnvironment) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeClusterDeployEnvironment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeClusterDeployEnvironment) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeClusterDeployEnvironment) GetLifecycleState() DeployEnvironmentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeClusterDeployEnvironment) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeClusterDeployEnvironment) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeClusterDeployEnvironment) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeClusterDeployEnvironment) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_cluster_deploy_environment_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_cluster_deploy_environment_summary.go index 72dafc300be..639015da057 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_cluster_deploy_environment_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_cluster_deploy_environment_summary.go @@ -61,62 +61,62 @@ type OkeClusterDeployEnvironmentSummary struct { LifecycleState DeployEnvironmentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeClusterDeployEnvironmentSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeClusterDeployEnvironmentSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeClusterDeployEnvironmentSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeClusterDeployEnvironmentSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeClusterDeployEnvironmentSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeClusterDeployEnvironmentSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeClusterDeployEnvironmentSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeClusterDeployEnvironmentSummary) GetLifecycleState() DeployEnvironmentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeClusterDeployEnvironmentSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeClusterDeployEnvironmentSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeClusterDeployEnvironmentSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeClusterDeployEnvironmentSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage.go index 14db28371bb..8dfcc1817ea 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage.go @@ -72,72 +72,72 @@ type OkeDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage_execution_progress.go index 606b7510b5a..1a6bc8c24eb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type OkeDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m OkeDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m OkeDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m OkeDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m OkeDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m OkeDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m OkeDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m OkeDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage_summary.go index e40042fb375..76158c6ca8f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_deploy_stage_summary.go @@ -72,72 +72,72 @@ type OkeDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deploy_stage.go index ff341be6740..9bb32f351e1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deploy_stage.go @@ -115,72 +115,72 @@ type OkeHelmChartDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeHelmChartDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeHelmChartDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeHelmChartDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeHelmChartDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeHelmChartDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeHelmChartDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeHelmChartDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeHelmChartDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeHelmChartDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeHelmChartDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeHelmChartDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeHelmChartDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeHelmChartDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeHelmChartDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deploy_stage_summary.go index b14220469d2..ebe8bfd916b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deploy_stage_summary.go @@ -115,72 +115,72 @@ type OkeHelmChartDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OkeHelmChartDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m OkeHelmChartDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OkeHelmChartDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m OkeHelmChartDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m OkeHelmChartDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OkeHelmChartDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OkeHelmChartDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OkeHelmChartDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OkeHelmChartDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OkeHelmChartDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m OkeHelmChartDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OkeHelmChartDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OkeHelmChartDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OkeHelmChartDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deployment_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deployment_stage_execution_progress.go index 65c0df55cd9..eb728f1e998 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deployment_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/oke_helm_chart_deployment_stage_execution_progress.go @@ -60,37 +60,37 @@ type OkeHelmChartDeploymentStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m OkeHelmChartDeploymentStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m OkeHelmChartDeploymentStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m OkeHelmChartDeploymentStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m OkeHelmChartDeploymentStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m OkeHelmChartDeploymentStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m OkeHelmChartDeploymentStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m OkeHelmChartDeploymentStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_branch.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_branch.go index 217f04efd45..a9fb6b87f37 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_branch.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_branch.go @@ -38,27 +38,27 @@ type RepositoryBranch struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetRefName returns RefName +// GetRefName returns RefName func (m RepositoryBranch) GetRefName() *string { return m.RefName } -//GetFullRefName returns FullRefName +// GetFullRefName returns FullRefName func (m RepositoryBranch) GetFullRefName() *string { return m.FullRefName } -//GetRepositoryId returns RepositoryId +// GetRepositoryId returns RepositoryId func (m RepositoryBranch) GetRepositoryId() *string { return m.RepositoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m RepositoryBranch) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m RepositoryBranch) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_branch_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_branch_summary.go index 01cdcae5f7f..fbdd1fdce58 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_branch_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_branch_summary.go @@ -38,27 +38,27 @@ type RepositoryBranchSummary struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetRefName returns RefName +// GetRefName returns RefName func (m RepositoryBranchSummary) GetRefName() *string { return m.RefName } -//GetFullRefName returns FullRefName +// GetFullRefName returns FullRefName func (m RepositoryBranchSummary) GetFullRefName() *string { return m.FullRefName } -//GetRepositoryId returns RepositoryId +// GetRepositoryId returns RepositoryId func (m RepositoryBranchSummary) GetRepositoryId() *string { return m.RepositoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m RepositoryBranchSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m RepositoryBranchSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_tag.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_tag.go index a5d3778c558..781b54b5cac 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_tag.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_tag.go @@ -38,27 +38,27 @@ type RepositoryTag struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetRefName returns RefName +// GetRefName returns RefName func (m RepositoryTag) GetRefName() *string { return m.RefName } -//GetFullRefName returns FullRefName +// GetFullRefName returns FullRefName func (m RepositoryTag) GetFullRefName() *string { return m.FullRefName } -//GetRepositoryId returns RepositoryId +// GetRepositoryId returns RepositoryId func (m RepositoryTag) GetRepositoryId() *string { return m.RepositoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m RepositoryTag) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m RepositoryTag) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_tag_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_tag_summary.go index 3fc482b3f40..c9a3d233379 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_tag_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/repository_tag_summary.go @@ -38,27 +38,27 @@ type RepositoryTagSummary struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetRefName returns RefName +// GetRefName returns RefName func (m RepositoryTagSummary) GetRefName() *string { return m.RefName } -//GetFullRefName returns FullRefName +// GetFullRefName returns FullRefName func (m RepositoryTagSummary) GetFullRefName() *string { return m.FullRefName } -//GetRepositoryId returns RepositoryId +// GetRepositoryId returns RepositoryId func (m RepositoryTagSummary) GetRepositoryId() *string { return m.RepositoryId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m RepositoryTagSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m RepositoryTagSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage.go index 06a9c3f29ad..eaed0f2e319 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage.go @@ -69,72 +69,72 @@ type ShellDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ShellDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ShellDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ShellDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ShellDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ShellDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ShellDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ShellDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ShellDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ShellDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ShellDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ShellDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ShellDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ShellDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ShellDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage_execution_progress.go index 8dd71fa6ba0..7027736c91f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type ShellDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m ShellDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m ShellDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m ShellDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m ShellDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m ShellDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m ShellDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m ShellDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage_summary.go index b7ba01ba4e1..9953fdc4517 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/shell_deploy_stage_summary.go @@ -69,72 +69,72 @@ type ShellDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m ShellDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m ShellDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ShellDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m ShellDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m ShellDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ShellDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ShellDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ShellDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ShellDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m ShellDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m ShellDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ShellDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ShellDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m ShellDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_deployment.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_deployment.go index 6afa5747a0b..6e9d247dac0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_deployment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_deployment.go @@ -71,92 +71,92 @@ type SingleDeployStageDeployment struct { LifecycleState DeploymentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetDeployPipelineArtifacts returns DeployPipelineArtifacts +// GetDeployPipelineArtifacts returns DeployPipelineArtifacts func (m SingleDeployStageDeployment) GetDeployPipelineArtifacts() *DeployPipelineArtifactCollection { return m.DeployPipelineArtifacts } -//GetDeployPipelineEnvironments returns DeployPipelineEnvironments +// GetDeployPipelineEnvironments returns DeployPipelineEnvironments func (m SingleDeployStageDeployment) GetDeployPipelineEnvironments() *DeployPipelineEnvironmentCollection { return m.DeployPipelineEnvironments } -//GetId returns Id +// GetId returns Id func (m SingleDeployStageDeployment) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m SingleDeployStageDeployment) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m SingleDeployStageDeployment) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m SingleDeployStageDeployment) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m SingleDeployStageDeployment) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SingleDeployStageDeployment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SingleDeployStageDeployment) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SingleDeployStageDeployment) GetLifecycleState() DeploymentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m SingleDeployStageDeployment) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeploymentArguments returns DeploymentArguments +// GetDeploymentArguments returns DeploymentArguments func (m SingleDeployStageDeployment) GetDeploymentArguments() *DeploymentArgumentCollection { return m.DeploymentArguments } -//GetDeployStageOverrideArguments returns DeployStageOverrideArguments +// GetDeployStageOverrideArguments returns DeployStageOverrideArguments func (m SingleDeployStageDeployment) GetDeployStageOverrideArguments() *DeployStageOverrideArgumentCollection { return m.DeployStageOverrideArguments } -//GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments +// GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments func (m SingleDeployStageDeployment) GetDeployArtifactOverrideArguments() *DeployArtifactOverrideArgumentCollection { return m.DeployArtifactOverrideArguments } -//GetDeploymentExecutionProgress returns DeploymentExecutionProgress +// GetDeploymentExecutionProgress returns DeploymentExecutionProgress func (m SingleDeployStageDeployment) GetDeploymentExecutionProgress() *DeploymentExecutionProgress { return m.DeploymentExecutionProgress } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SingleDeployStageDeployment) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SingleDeployStageDeployment) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m SingleDeployStageDeployment) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_deployment_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_deployment_summary.go index 121347f82ab..a7c40232d1b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_deployment_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_deployment_summary.go @@ -65,77 +65,77 @@ type SingleDeployStageDeploymentSummary struct { LifecycleState DeploymentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m SingleDeployStageDeploymentSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m SingleDeployStageDeploymentSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m SingleDeployStageDeploymentSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m SingleDeployStageDeploymentSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m SingleDeployStageDeploymentSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SingleDeployStageDeploymentSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SingleDeployStageDeploymentSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SingleDeployStageDeploymentSummary) GetLifecycleState() DeploymentLifecycleStateEnum { return m.LifecycleState } -//GetDeploymentArguments returns DeploymentArguments +// GetDeploymentArguments returns DeploymentArguments func (m SingleDeployStageDeploymentSummary) GetDeploymentArguments() *DeploymentArgumentCollection { return m.DeploymentArguments } -//GetDeployStageOverrideArguments returns DeployStageOverrideArguments +// GetDeployStageOverrideArguments returns DeployStageOverrideArguments func (m SingleDeployStageDeploymentSummary) GetDeployStageOverrideArguments() *DeployStageOverrideArgumentCollection { return m.DeployStageOverrideArguments } -//GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments +// GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments func (m SingleDeployStageDeploymentSummary) GetDeployArtifactOverrideArguments() *DeployArtifactOverrideArgumentCollection { return m.DeployArtifactOverrideArguments } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m SingleDeployStageDeploymentSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SingleDeployStageDeploymentSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SingleDeployStageDeploymentSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m SingleDeployStageDeploymentSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_redeployment.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_redeployment.go index 5bbae0a7ec2..3e3274f07c6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_redeployment.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_redeployment.go @@ -74,92 +74,92 @@ type SingleDeployStageRedeployment struct { LifecycleState DeploymentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetDeployPipelineArtifacts returns DeployPipelineArtifacts +// GetDeployPipelineArtifacts returns DeployPipelineArtifacts func (m SingleDeployStageRedeployment) GetDeployPipelineArtifacts() *DeployPipelineArtifactCollection { return m.DeployPipelineArtifacts } -//GetDeployPipelineEnvironments returns DeployPipelineEnvironments +// GetDeployPipelineEnvironments returns DeployPipelineEnvironments func (m SingleDeployStageRedeployment) GetDeployPipelineEnvironments() *DeployPipelineEnvironmentCollection { return m.DeployPipelineEnvironments } -//GetId returns Id +// GetId returns Id func (m SingleDeployStageRedeployment) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m SingleDeployStageRedeployment) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m SingleDeployStageRedeployment) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m SingleDeployStageRedeployment) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m SingleDeployStageRedeployment) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SingleDeployStageRedeployment) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SingleDeployStageRedeployment) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SingleDeployStageRedeployment) GetLifecycleState() DeploymentLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m SingleDeployStageRedeployment) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeploymentArguments returns DeploymentArguments +// GetDeploymentArguments returns DeploymentArguments func (m SingleDeployStageRedeployment) GetDeploymentArguments() *DeploymentArgumentCollection { return m.DeploymentArguments } -//GetDeployStageOverrideArguments returns DeployStageOverrideArguments +// GetDeployStageOverrideArguments returns DeployStageOverrideArguments func (m SingleDeployStageRedeployment) GetDeployStageOverrideArguments() *DeployStageOverrideArgumentCollection { return m.DeployStageOverrideArguments } -//GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments +// GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments func (m SingleDeployStageRedeployment) GetDeployArtifactOverrideArguments() *DeployArtifactOverrideArgumentCollection { return m.DeployArtifactOverrideArguments } -//GetDeploymentExecutionProgress returns DeploymentExecutionProgress +// GetDeploymentExecutionProgress returns DeploymentExecutionProgress func (m SingleDeployStageRedeployment) GetDeploymentExecutionProgress() *DeploymentExecutionProgress { return m.DeploymentExecutionProgress } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SingleDeployStageRedeployment) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SingleDeployStageRedeployment) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m SingleDeployStageRedeployment) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_redeployment_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_redeployment_summary.go index bc9688324f8..b4d37adddb9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_redeployment_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/single_deploy_stage_redeployment_summary.go @@ -68,77 +68,77 @@ type SingleDeployStageRedeploymentSummary struct { LifecycleState DeploymentLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m SingleDeployStageRedeploymentSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m SingleDeployStageRedeploymentSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m SingleDeployStageRedeploymentSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m SingleDeployStageRedeploymentSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m SingleDeployStageRedeploymentSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SingleDeployStageRedeploymentSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SingleDeployStageRedeploymentSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SingleDeployStageRedeploymentSummary) GetLifecycleState() DeploymentLifecycleStateEnum { return m.LifecycleState } -//GetDeploymentArguments returns DeploymentArguments +// GetDeploymentArguments returns DeploymentArguments func (m SingleDeployStageRedeploymentSummary) GetDeploymentArguments() *DeploymentArgumentCollection { return m.DeploymentArguments } -//GetDeployStageOverrideArguments returns DeployStageOverrideArguments +// GetDeployStageOverrideArguments returns DeployStageOverrideArguments func (m SingleDeployStageRedeploymentSummary) GetDeployStageOverrideArguments() *DeployStageOverrideArgumentCollection { return m.DeployStageOverrideArguments } -//GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments +// GetDeployArtifactOverrideArguments returns DeployArtifactOverrideArguments func (m SingleDeployStageRedeploymentSummary) GetDeployArtifactOverrideArguments() *DeployArtifactOverrideArgumentCollection { return m.DeployArtifactOverrideArguments } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m SingleDeployStageRedeploymentSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SingleDeployStageRedeploymentSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SingleDeployStageRedeploymentSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m SingleDeployStageRedeploymentSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_build_pipeline_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_build_pipeline_action.go index 9ee1b4d8420..91ad565c7e4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_build_pipeline_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_build_pipeline_action.go @@ -25,7 +25,7 @@ type TriggerBuildPipelineAction struct { Filter Filter `mandatory:"false" json:"filter"` } -//GetFilter returns Filter +// GetFilter returns Filter func (m TriggerBuildPipelineAction) GetFilter() Filter { return m.Filter } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_pipeline_stage_run_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_pipeline_stage_run_progress.go index 3d82769ce4c..6f581c1de51 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_pipeline_stage_run_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_pipeline_stage_run_progress.go @@ -44,32 +44,32 @@ type TriggerDeploymentPipelineStageRunProgress struct { Status BuildPipelineStageRunProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetStageDisplayName returns StageDisplayName +// GetStageDisplayName returns StageDisplayName func (m TriggerDeploymentPipelineStageRunProgress) GetStageDisplayName() *string { return m.StageDisplayName } -//GetBuildPipelineStageId returns BuildPipelineStageId +// GetBuildPipelineStageId returns BuildPipelineStageId func (m TriggerDeploymentPipelineStageRunProgress) GetBuildPipelineStageId() *string { return m.BuildPipelineStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m TriggerDeploymentPipelineStageRunProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m TriggerDeploymentPipelineStageRunProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m TriggerDeploymentPipelineStageRunProgress) GetStatus() BuildPipelineStageRunProgressStatusEnum { return m.Status } -//GetBuildPipelineStagePredecessors returns BuildPipelineStagePredecessors +// GetBuildPipelineStagePredecessors returns BuildPipelineStagePredecessors func (m TriggerDeploymentPipelineStageRunProgress) GetBuildPipelineStagePredecessors() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessors } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_stage.go index a5db6d380d4..0570a344fc4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_stage.go @@ -67,72 +67,72 @@ type TriggerDeploymentStage struct { LifecycleState BuildPipelineStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m TriggerDeploymentStage) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m TriggerDeploymentStage) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m TriggerDeploymentStage) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m TriggerDeploymentStage) GetProjectId() *string { return m.ProjectId } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m TriggerDeploymentStage) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m TriggerDeploymentStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m TriggerDeploymentStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m TriggerDeploymentStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m TriggerDeploymentStage) GetLifecycleState() BuildPipelineStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m TriggerDeploymentStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m TriggerDeploymentStage) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m TriggerDeploymentStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m TriggerDeploymentStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m TriggerDeploymentStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_stage_summary.go index 38cda30991f..f73b2f37bb3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/trigger_deployment_stage_summary.go @@ -67,72 +67,72 @@ type TriggerDeploymentStageSummary struct { LifecycleState BuildPipelineStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m TriggerDeploymentStageSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m TriggerDeploymentStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m TriggerDeploymentStageSummary) GetProjectId() *string { return m.ProjectId } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m TriggerDeploymentStageSummary) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m TriggerDeploymentStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m TriggerDeploymentStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m TriggerDeploymentStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m TriggerDeploymentStageSummary) GetLifecycleState() BuildPipelineStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m TriggerDeploymentStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDescription returns Description +// GetDescription returns Description func (m TriggerDeploymentStageSummary) GetDescription() *string { return m.Description } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m TriggerDeploymentStageSummary) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m TriggerDeploymentStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m TriggerDeploymentStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m TriggerDeploymentStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_cloud_app_password_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_cloud_app_password_connection_details.go index 64b845e2712..ff07f71f7e2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_cloud_app_password_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_cloud_app_password_connection_details.go @@ -39,22 +39,22 @@ type UpdateBitbucketCloudAppPasswordConnectionDetails struct { AppPassword *string `mandatory:"false" json:"appPassword"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateBitbucketCloudAppPasswordConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateBitbucketCloudAppPasswordConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateBitbucketCloudAppPasswordConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateBitbucketCloudAppPasswordConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_cloud_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_cloud_trigger_details.go index 6d9fe39c3f3..82218558965 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_cloud_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_cloud_trigger_details.go @@ -38,27 +38,27 @@ type UpdateBitbucketCloudTriggerDetails struct { ConnectionId *string `mandatory:"false" json:"connectionId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateBitbucketCloudTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateBitbucketCloudTriggerDetails) GetDescription() *string { return m.Description } -//GetActions returns Actions +// GetActions returns Actions func (m UpdateBitbucketCloudTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateBitbucketCloudTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateBitbucketCloudTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_server_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_server_access_token_connection_details.go index 4091a832e9d..eae3b835c97 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_server_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_server_access_token_connection_details.go @@ -41,22 +41,22 @@ type UpdateBitbucketServerAccessTokenConnectionDetails struct { TlsVerifyConfig TlsVerifyConfig `mandatory:"false" json:"tlsVerifyConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateBitbucketServerAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateBitbucketServerAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateBitbucketServerAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateBitbucketServerAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_server_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_server_trigger_details.go index f6854836c13..953c1c8a4d5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_server_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_bitbucket_server_trigger_details.go @@ -35,27 +35,27 @@ type UpdateBitbucketServerTriggerDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateBitbucketServerTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateBitbucketServerTriggerDetails) GetDescription() *string { return m.Description } -//GetActions returns Actions +// GetActions returns Actions func (m UpdateBitbucketServerTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateBitbucketServerTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateBitbucketServerTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_build_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_build_stage_details.go index b3a82802cfc..d72adeead8c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_build_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_build_stage_details.go @@ -52,27 +52,27 @@ type UpdateBuildStageDetails struct { Image BuildStageImageEnum `mandatory:"false" json:"image,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateBuildStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateBuildStageDetails) GetDescription() *string { return m.Description } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m UpdateBuildStageDetails) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateBuildStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateBuildStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_blue_green_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_blue_green_deploy_stage_details.go index fd21487553d..ce86d42a8dd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_blue_green_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_blue_green_deploy_stage_details.go @@ -46,27 +46,27 @@ type UpdateComputeInstanceGroupBlueGreenDeployStageDetails struct { TestLoadBalancerConfig *LoadBalancerConfig `mandatory:"false" json:"testLoadBalancerConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateComputeInstanceGroupBlueGreenDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateComputeInstanceGroupBlueGreenDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateComputeInstanceGroupBlueGreenDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateComputeInstanceGroupBlueGreenDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateComputeInstanceGroupBlueGreenDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.go index fafcd13d450..a7cf2ac524f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.go @@ -34,27 +34,27 @@ type UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_approval_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_approval_deploy_stage_details.go index 732bd35c7f7..475b6c93a6b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_approval_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_approval_deploy_stage_details.go @@ -36,27 +36,27 @@ type UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails struct { ApprovalPolicy ApprovalPolicy `mandatory:"false" json:"approvalPolicy"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_deploy_stage_details.go index db3dbdc725d..7625cd3b901 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_deploy_stage_details.go @@ -44,27 +44,27 @@ type UpdateComputeInstanceGroupCanaryDeployStageDetails struct { TestLoadBalancerConfig *LoadBalancerConfig `mandatory:"false" json:"testLoadBalancerConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateComputeInstanceGroupCanaryDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateComputeInstanceGroupCanaryDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateComputeInstanceGroupCanaryDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateComputeInstanceGroupCanaryDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateComputeInstanceGroupCanaryDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_traffic_shift_deploy_stage_details.go index 860e5fc3788..cb5002044b7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_canary_traffic_shift_deploy_stage_details.go @@ -36,27 +36,27 @@ type UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails struct { RolloutPolicy *LoadBalancerTrafficShiftRolloutPolicy `mandatory:"false" json:"rolloutPolicy"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_deploy_environment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_deploy_environment_details.go index ac7e9e1db70..971b2738e31 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_deploy_environment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_deploy_environment_details.go @@ -34,22 +34,22 @@ type UpdateComputeInstanceGroupDeployEnvironmentDetails struct { ComputeInstanceGroupSelectors *ComputeInstanceGroupSelectorCollection `mandatory:"false" json:"computeInstanceGroupSelectors"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateComputeInstanceGroupDeployEnvironmentDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateComputeInstanceGroupDeployEnvironmentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateComputeInstanceGroupDeployEnvironmentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateComputeInstanceGroupDeployEnvironmentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_deploy_stage_details.go index 5dcf394de30..a2f66cf4595 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_compute_instance_group_deploy_stage_details.go @@ -51,27 +51,27 @@ type UpdateComputeInstanceGroupDeployStageDetails struct { LoadBalancerConfig *LoadBalancerConfig `mandatory:"false" json:"loadBalancerConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateComputeInstanceGroupDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateComputeInstanceGroupDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateComputeInstanceGroupDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateComputeInstanceGroupDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateComputeInstanceGroupDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deliver_artifact_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deliver_artifact_stage_details.go index 003c10cf1a7..2d8c5e29148 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deliver_artifact_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deliver_artifact_stage_details.go @@ -36,27 +36,27 @@ type UpdateDeliverArtifactStageDetails struct { DeliverArtifactCollection *DeliverArtifactCollection `mandatory:"false" json:"deliverArtifactCollection"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateDeliverArtifactStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDeliverArtifactStageDetails) GetDescription() *string { return m.Description } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m UpdateDeliverArtifactStageDetails) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateDeliverArtifactStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateDeliverArtifactStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deploy_pipeline_deployment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deploy_pipeline_deployment_details.go index 73d3436ea0c..f65e0e80d03 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deploy_pipeline_deployment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deploy_pipeline_deployment_details.go @@ -29,17 +29,17 @@ type UpdateDeployPipelineDeploymentDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateDeployPipelineDeploymentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateDeployPipelineDeploymentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateDeployPipelineDeploymentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deploy_pipeline_redeployment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deploy_pipeline_redeployment_details.go index 30ab1cdc40f..38c56495850 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deploy_pipeline_redeployment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_deploy_pipeline_redeployment_details.go @@ -29,17 +29,17 @@ type UpdateDeployPipelineRedeploymentDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateDeployPipelineRedeploymentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateDeployPipelineRedeploymentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateDeployPipelineRedeploymentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_devops_code_repository_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_devops_code_repository_trigger_details.go index a169a4cec52..6b6cdeb8be0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_devops_code_repository_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_devops_code_repository_trigger_details.go @@ -38,27 +38,27 @@ type UpdateDevopsCodeRepositoryTriggerDetails struct { RepositoryId *string `mandatory:"false" json:"repositoryId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateDevopsCodeRepositoryTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateDevopsCodeRepositoryTriggerDetails) GetDescription() *string { return m.Description } -//GetActions returns Actions +// GetActions returns Actions func (m UpdateDevopsCodeRepositoryTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateDevopsCodeRepositoryTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateDevopsCodeRepositoryTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_function_deploy_environment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_function_deploy_environment_details.go index f9deb773a84..591f84144f9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_function_deploy_environment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_function_deploy_environment_details.go @@ -35,22 +35,22 @@ type UpdateFunctionDeployEnvironmentDetails struct { FunctionId *string `mandatory:"false" json:"functionId"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateFunctionDeployEnvironmentDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateFunctionDeployEnvironmentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateFunctionDeployEnvironmentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateFunctionDeployEnvironmentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_function_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_function_deploy_stage_details.go index 89a945d5de2..7c1564f552b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_function_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_function_deploy_stage_details.go @@ -49,27 +49,27 @@ type UpdateFunctionDeployStageDetails struct { FunctionTimeoutInSeconds *int `mandatory:"false" json:"functionTimeoutInSeconds"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateFunctionDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateFunctionDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateFunctionDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateFunctionDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateFunctionDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_github_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_github_access_token_connection_details.go index d8fb09304bd..741cf95d555 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_github_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_github_access_token_connection_details.go @@ -36,22 +36,22 @@ type UpdateGithubAccessTokenConnectionDetails struct { AccessToken *string `mandatory:"false" json:"accessToken"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGithubAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGithubAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGithubAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGithubAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_github_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_github_trigger_details.go index 2cd96bb91bf..67b65ff965a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_github_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_github_trigger_details.go @@ -38,27 +38,27 @@ type UpdateGithubTriggerDetails struct { ConnectionId *string `mandatory:"false" json:"connectionId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGithubTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGithubTriggerDetails) GetDescription() *string { return m.Description } -//GetActions returns Actions +// GetActions returns Actions func (m UpdateGithubTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGithubTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGithubTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_access_token_connection_details.go index 8205fb7b78a..fdf0848af7f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_access_token_connection_details.go @@ -36,22 +36,22 @@ type UpdateGitlabAccessTokenConnectionDetails struct { AccessToken *string `mandatory:"false" json:"accessToken"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGitlabAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGitlabAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGitlabAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGitlabAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_server_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_server_access_token_connection_details.go index 06d6e1bb106..8addd8090d7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_server_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_server_access_token_connection_details.go @@ -41,22 +41,22 @@ type UpdateGitlabServerAccessTokenConnectionDetails struct { TlsVerifyConfig TlsVerifyConfig `mandatory:"false" json:"tlsVerifyConfig"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGitlabServerAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGitlabServerAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGitlabServerAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGitlabServerAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_server_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_server_trigger_details.go index edc54cbbefa..42714006942 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_server_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_server_trigger_details.go @@ -35,27 +35,27 @@ type UpdateGitlabServerTriggerDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGitlabServerTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGitlabServerTriggerDetails) GetDescription() *string { return m.Description } -//GetActions returns Actions +// GetActions returns Actions func (m UpdateGitlabServerTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGitlabServerTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGitlabServerTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_trigger_details.go index fa2efda0c59..f2451d06c09 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_gitlab_trigger_details.go @@ -38,27 +38,27 @@ type UpdateGitlabTriggerDetails struct { ConnectionId *string `mandatory:"false" json:"connectionId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGitlabTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGitlabTriggerDetails) GetDescription() *string { return m.Description } -//GetActions returns Actions +// GetActions returns Actions func (m UpdateGitlabTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGitlabTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGitlabTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_invoke_function_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_invoke_function_deploy_stage_details.go index bacd12a292b..0b80681681b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_invoke_function_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_invoke_function_deploy_stage_details.go @@ -47,27 +47,27 @@ type UpdateInvokeFunctionDeployStageDetails struct { IsValidationEnabled *bool `mandatory:"false" json:"isValidationEnabled"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateInvokeFunctionDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateInvokeFunctionDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateInvokeFunctionDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateInvokeFunctionDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateInvokeFunctionDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_load_balancer_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_load_balancer_traffic_shift_deploy_stage_details.go index 42a70f0ce60..d03f5e5c7c1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_load_balancer_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_load_balancer_traffic_shift_deploy_stage_details.go @@ -47,27 +47,27 @@ type UpdateLoadBalancerTrafficShiftDeployStageDetails struct { TrafficShiftTarget LoadBalancerTrafficShiftDeployStageTrafficShiftTargetEnum `mandatory:"false" json:"trafficShiftTarget,omitempty"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateLoadBalancerTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateLoadBalancerTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateLoadBalancerTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateLoadBalancerTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateLoadBalancerTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_manual_approval_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_manual_approval_deploy_stage_details.go index 878ea2b4ffa..2cbd721577f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_manual_approval_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_manual_approval_deploy_stage_details.go @@ -36,27 +36,27 @@ type UpdateManualApprovalDeployStageDetails struct { ApprovalPolicy ApprovalPolicy `mandatory:"false" json:"approvalPolicy"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateManualApprovalDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateManualApprovalDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateManualApprovalDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateManualApprovalDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateManualApprovalDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_blue_green_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_blue_green_deploy_stage_details.go index ec835fbebe3..56dbe371c91 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_blue_green_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_blue_green_deploy_stage_details.go @@ -37,27 +37,27 @@ type UpdateOkeBlueGreenDeployStageDetails struct { KubernetesManifestDeployArtifactIds []string `mandatory:"false" json:"kubernetesManifestDeployArtifactIds"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOkeBlueGreenDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOkeBlueGreenDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateOkeBlueGreenDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOkeBlueGreenDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOkeBlueGreenDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_blue_green_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_blue_green_traffic_shift_deploy_stage_details.go index 4110640f5e0..00604bc41fe 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_blue_green_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_blue_green_traffic_shift_deploy_stage_details.go @@ -34,27 +34,27 @@ type UpdateOkeBlueGreenTrafficShiftDeployStageDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOkeBlueGreenTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOkeBlueGreenTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateOkeBlueGreenTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOkeBlueGreenTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOkeBlueGreenTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_approval_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_approval_deploy_stage_details.go index 0b5d4294fcf..9950fc39054 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_approval_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_approval_deploy_stage_details.go @@ -36,27 +36,27 @@ type UpdateOkeCanaryApprovalDeployStageDetails struct { ApprovalPolicy ApprovalPolicy `mandatory:"false" json:"approvalPolicy"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOkeCanaryApprovalDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOkeCanaryApprovalDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateOkeCanaryApprovalDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOkeCanaryApprovalDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOkeCanaryApprovalDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_deploy_stage_details.go index 1025841b5e3..efc956119d6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_deploy_stage_details.go @@ -37,27 +37,27 @@ type UpdateOkeCanaryDeployStageDetails struct { KubernetesManifestDeployArtifactIds []string `mandatory:"false" json:"kubernetesManifestDeployArtifactIds"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOkeCanaryDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOkeCanaryDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateOkeCanaryDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOkeCanaryDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOkeCanaryDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_traffic_shift_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_traffic_shift_deploy_stage_details.go index 70169dda522..6791251ad02 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_traffic_shift_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_canary_traffic_shift_deploy_stage_details.go @@ -36,27 +36,27 @@ type UpdateOkeCanaryTrafficShiftDeployStageDetails struct { RolloutPolicy *LoadBalancerTrafficShiftRolloutPolicy `mandatory:"false" json:"rolloutPolicy"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOkeCanaryTrafficShiftDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOkeCanaryTrafficShiftDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateOkeCanaryTrafficShiftDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOkeCanaryTrafficShiftDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOkeCanaryTrafficShiftDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_cluster_deploy_environment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_cluster_deploy_environment_details.go index 03f65bbeae3..2c842477c93 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_cluster_deploy_environment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_cluster_deploy_environment_details.go @@ -37,22 +37,22 @@ type UpdateOkeClusterDeployEnvironmentDetails struct { NetworkChannel NetworkChannel `mandatory:"false" json:"networkChannel"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOkeClusterDeployEnvironmentDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOkeClusterDeployEnvironmentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOkeClusterDeployEnvironmentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOkeClusterDeployEnvironmentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_deploy_stage_details.go index 3ec64dd01b0..d3c856e3642 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_deploy_stage_details.go @@ -45,27 +45,27 @@ type UpdateOkeDeployStageDetails struct { RollbackPolicy DeployStageRollbackPolicy `mandatory:"false" json:"rollbackPolicy"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOkeDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOkeDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateOkeDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOkeDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOkeDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_helm_chart_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_helm_chart_deploy_stage_details.go index dc8f9743b91..441fa53fc64 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_helm_chart_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_oke_helm_chart_deploy_stage_details.go @@ -88,27 +88,27 @@ type UpdateOkeHelmChartDeployStageDetails struct { IsDebugEnabled *bool `mandatory:"false" json:"isDebugEnabled"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOkeHelmChartDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOkeHelmChartDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateOkeHelmChartDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOkeHelmChartDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOkeHelmChartDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_shell_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_shell_deploy_stage_details.go index b5c1228c516..269e62e135f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_shell_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_shell_deploy_stage_details.go @@ -42,27 +42,27 @@ type UpdateShellDeployStageDetails struct { TimeoutInSeconds *int `mandatory:"false" json:"timeoutInSeconds"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateShellDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateShellDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateShellDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateShellDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateShellDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_single_deploy_stage_deployment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_single_deploy_stage_deployment_details.go index 04b09c2e97e..b0cd3b2aca6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_single_deploy_stage_deployment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_single_deploy_stage_deployment_details.go @@ -29,17 +29,17 @@ type UpdateSingleDeployStageDeploymentDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateSingleDeployStageDeploymentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateSingleDeployStageDeploymentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateSingleDeployStageDeploymentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_single_deploy_stage_redeployment_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_single_deploy_stage_redeployment_details.go index 0af8bef8e63..5d8ba3c5296 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_single_deploy_stage_redeployment_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_single_deploy_stage_redeployment_details.go @@ -29,17 +29,17 @@ type UpdateSingleDeployStageRedeploymentDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateSingleDeployStageRedeploymentDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateSingleDeployStageRedeploymentDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateSingleDeployStageRedeploymentDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_trigger_deployment_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_trigger_deployment_stage_details.go index a59e0423946..9fa68685baa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_trigger_deployment_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_trigger_deployment_stage_details.go @@ -40,27 +40,27 @@ type UpdateTriggerDeploymentStageDetails struct { IsPassAllParametersEnabled *bool `mandatory:"false" json:"isPassAllParametersEnabled"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateTriggerDeploymentStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateTriggerDeploymentStageDetails) GetDescription() *string { return m.Description } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m UpdateTriggerDeploymentStageDetails) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateTriggerDeploymentStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateTriggerDeploymentStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_vbs_access_token_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_vbs_access_token_connection_details.go index 5e38389f734..ba7a973228f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_vbs_access_token_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_vbs_access_token_connection_details.go @@ -39,22 +39,22 @@ type UpdateVbsAccessTokenConnectionDetails struct { BaseUrl *string `mandatory:"false" json:"baseUrl"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateVbsAccessTokenConnectionDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateVbsAccessTokenConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateVbsAccessTokenConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateVbsAccessTokenConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_vbs_trigger_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_vbs_trigger_details.go index 8fd3a3e3cbb..7c84ee05f48 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_vbs_trigger_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_vbs_trigger_details.go @@ -38,27 +38,27 @@ type UpdateVbsTriggerDetails struct { ConnectionId *string `mandatory:"false" json:"connectionId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateVbsTriggerDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateVbsTriggerDetails) GetDescription() *string { return m.Description } -//GetActions returns Actions +// GetActions returns Actions func (m UpdateVbsTriggerDetails) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateVbsTriggerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateVbsTriggerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_wait_deploy_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_wait_deploy_stage_details.go index d3492093747..90de825fc7b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_wait_deploy_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_wait_deploy_stage_details.go @@ -36,27 +36,27 @@ type UpdateWaitDeployStageDetails struct { WaitCriteria WaitCriteria `mandatory:"false" json:"waitCriteria"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateWaitDeployStageDetails) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateWaitDeployStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m UpdateWaitDeployStageDetails) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateWaitDeployStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateWaitDeployStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_wait_stage_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_wait_stage_details.go index 8ff9c939e36..ee9f4b6e41b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_wait_stage_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/update_wait_stage_details.go @@ -36,27 +36,27 @@ type UpdateWaitStageDetails struct { WaitCriteria UpdateWaitCriteriaDetails `mandatory:"false" json:"waitCriteria"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateWaitStageDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateWaitStageDetails) GetDescription() *string { return m.Description } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m UpdateWaitStageDetails) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateWaitStageDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateWaitStageDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_access_token_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_access_token_connection.go index f7550769248..fbc09e0fb55 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_access_token_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_access_token_connection.go @@ -65,67 +65,67 @@ type VbsAccessTokenConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m VbsAccessTokenConnection) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m VbsAccessTokenConnection) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VbsAccessTokenConnection) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VbsAccessTokenConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m VbsAccessTokenConnection) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VbsAccessTokenConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VbsAccessTokenConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m VbsAccessTokenConnection) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VbsAccessTokenConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VbsAccessTokenConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VbsAccessTokenConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VbsAccessTokenConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VbsAccessTokenConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_access_token_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_access_token_connection_summary.go index d82d8a7bfa8..28eac487af6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_access_token_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_access_token_connection_summary.go @@ -65,67 +65,67 @@ type VbsAccessTokenConnectionSummary struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m VbsAccessTokenConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VbsAccessTokenConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m VbsAccessTokenConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VbsAccessTokenConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m VbsAccessTokenConnectionSummary) GetProjectId() *string { return m.ProjectId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VbsAccessTokenConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VbsAccessTokenConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLastConnectionValidationResult returns LastConnectionValidationResult +// GetLastConnectionValidationResult returns LastConnectionValidationResult func (m VbsAccessTokenConnectionSummary) GetLastConnectionValidationResult() *ConnectionValidationResult { return m.LastConnectionValidationResult } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VbsAccessTokenConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VbsAccessTokenConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VbsAccessTokenConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VbsAccessTokenConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VbsAccessTokenConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_build_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_build_source.go index 63994817eb8..10f06302756 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_build_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_build_source.go @@ -32,17 +32,17 @@ type VbsBuildSource struct { ConnectionId *string `mandatory:"true" json:"connectionId"` } -//GetName returns Name +// GetName returns Name func (m VbsBuildSource) GetName() *string { return m.Name } -//GetRepositoryUrl returns RepositoryUrl +// GetRepositoryUrl returns RepositoryUrl func (m VbsBuildSource) GetRepositoryUrl() *string { return m.RepositoryUrl } -//GetBranch returns Branch +// GetBranch returns Branch func (m VbsBuildSource) GetBranch() *string { return m.Branch } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger.go index 1b931df4d5a..c1de963f311 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger.go @@ -65,67 +65,67 @@ type VbsTrigger struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m VbsTrigger) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VbsTrigger) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m VbsTrigger) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m VbsTrigger) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VbsTrigger) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VbsTrigger) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VbsTrigger) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VbsTrigger) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VbsTrigger) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m VbsTrigger) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VbsTrigger) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VbsTrigger) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VbsTrigger) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger_create_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger_create_result.go index 7c29c6e59ce..7afb3429a5e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger_create_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger_create_result.go @@ -68,67 +68,67 @@ type VbsTriggerCreateResult struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m VbsTriggerCreateResult) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VbsTriggerCreateResult) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m VbsTriggerCreateResult) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m VbsTriggerCreateResult) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VbsTriggerCreateResult) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VbsTriggerCreateResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VbsTriggerCreateResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VbsTriggerCreateResult) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VbsTriggerCreateResult) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetActions returns Actions +// GetActions returns Actions func (m VbsTriggerCreateResult) GetActions() []TriggerAction { return m.Actions } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VbsTriggerCreateResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VbsTriggerCreateResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VbsTriggerCreateResult) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger_summary.go index 0dd39a43a53..bec29cae86a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/vbs_trigger_summary.go @@ -59,62 +59,62 @@ type VbsTriggerSummary struct { LifecycleState TriggerLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m VbsTriggerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m VbsTriggerSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m VbsTriggerSummary) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m VbsTriggerSummary) GetProjectId() *string { return m.ProjectId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m VbsTriggerSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VbsTriggerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m VbsTriggerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m VbsTriggerSummary) GetLifecycleState() TriggerLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m VbsTriggerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m VbsTriggerSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m VbsTriggerSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m VbsTriggerSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage.go index 95a15f712f6..2ceacd0819e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage.go @@ -63,72 +63,72 @@ type WaitDeployStage struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m WaitDeployStage) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m WaitDeployStage) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m WaitDeployStage) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m WaitDeployStage) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m WaitDeployStage) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m WaitDeployStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WaitDeployStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WaitDeployStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WaitDeployStage) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m WaitDeployStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m WaitDeployStage) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WaitDeployStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WaitDeployStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m WaitDeployStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage_execution_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage_execution_progress.go index 50460d08a5d..dafb6885cc9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage_execution_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage_execution_progress.go @@ -40,37 +40,37 @@ type WaitDeployStageExecutionProgress struct { Status DeployStageExecutionProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetDeployStageDisplayName returns DeployStageDisplayName +// GetDeployStageDisplayName returns DeployStageDisplayName func (m WaitDeployStageExecutionProgress) GetDeployStageDisplayName() *string { return m.DeployStageDisplayName } -//GetDeployStageId returns DeployStageId +// GetDeployStageId returns DeployStageId func (m WaitDeployStageExecutionProgress) GetDeployStageId() *string { return m.DeployStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m WaitDeployStageExecutionProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m WaitDeployStageExecutionProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m WaitDeployStageExecutionProgress) GetStatus() DeployStageExecutionProgressStatusEnum { return m.Status } -//GetDeployStagePredecessors returns DeployStagePredecessors +// GetDeployStagePredecessors returns DeployStagePredecessors func (m WaitDeployStageExecutionProgress) GetDeployStagePredecessors() *DeployStagePredecessorCollection { return m.DeployStagePredecessors } -//GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails +// GetDeployStageExecutionProgressDetails returns DeployStageExecutionProgressDetails func (m WaitDeployStageExecutionProgress) GetDeployStageExecutionProgressDetails() []DeployStageExecutionProgressDetails { return m.DeployStageExecutionProgressDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage_summary.go index 10e002b7241..055a948cdc1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_deploy_stage_summary.go @@ -63,72 +63,72 @@ type WaitDeployStageSummary struct { LifecycleState DeployStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m WaitDeployStageSummary) GetId() *string { return m.Id } -//GetDescription returns Description +// GetDescription returns Description func (m WaitDeployStageSummary) GetDescription() *string { return m.Description } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m WaitDeployStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m WaitDeployStageSummary) GetProjectId() *string { return m.ProjectId } -//GetDeployPipelineId returns DeployPipelineId +// GetDeployPipelineId returns DeployPipelineId func (m WaitDeployStageSummary) GetDeployPipelineId() *string { return m.DeployPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m WaitDeployStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WaitDeployStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WaitDeployStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WaitDeployStageSummary) GetLifecycleState() DeployStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m WaitDeployStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection +// GetDeployStagePredecessorCollection returns DeployStagePredecessorCollection func (m WaitDeployStageSummary) GetDeployStagePredecessorCollection() *DeployStagePredecessorCollection { return m.DeployStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WaitDeployStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WaitDeployStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m WaitDeployStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage.go index 11366e03f8b..31d8760e9aa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage.go @@ -63,72 +63,72 @@ type WaitStage struct { LifecycleState BuildPipelineStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m WaitStage) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m WaitStage) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m WaitStage) GetDescription() *string { return m.Description } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m WaitStage) GetProjectId() *string { return m.ProjectId } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m WaitStage) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m WaitStage) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WaitStage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WaitStage) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WaitStage) GetLifecycleState() BuildPipelineStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m WaitStage) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m WaitStage) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WaitStage) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WaitStage) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m WaitStage) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage_run_progress.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage_run_progress.go index 1dc78579f09..27952d973b8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage_run_progress.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage_run_progress.go @@ -37,32 +37,32 @@ type WaitStageRunProgress struct { Status BuildPipelineStageRunProgressStatusEnum `mandatory:"false" json:"status,omitempty"` } -//GetStageDisplayName returns StageDisplayName +// GetStageDisplayName returns StageDisplayName func (m WaitStageRunProgress) GetStageDisplayName() *string { return m.StageDisplayName } -//GetBuildPipelineStageId returns BuildPipelineStageId +// GetBuildPipelineStageId returns BuildPipelineStageId func (m WaitStageRunProgress) GetBuildPipelineStageId() *string { return m.BuildPipelineStageId } -//GetTimeStarted returns TimeStarted +// GetTimeStarted returns TimeStarted func (m WaitStageRunProgress) GetTimeStarted() *common.SDKTime { return m.TimeStarted } -//GetTimeFinished returns TimeFinished +// GetTimeFinished returns TimeFinished func (m WaitStageRunProgress) GetTimeFinished() *common.SDKTime { return m.TimeFinished } -//GetStatus returns Status +// GetStatus returns Status func (m WaitStageRunProgress) GetStatus() BuildPipelineStageRunProgressStatusEnum { return m.Status } -//GetBuildPipelineStagePredecessors returns BuildPipelineStagePredecessors +// GetBuildPipelineStagePredecessors returns BuildPipelineStagePredecessors func (m WaitStageRunProgress) GetBuildPipelineStagePredecessors() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessors } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage_summary.go index 0c9697d68f7..1b58b9aa846 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/devops/wait_stage_summary.go @@ -63,72 +63,72 @@ type WaitStageSummary struct { LifecycleState BuildPipelineStageLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m WaitStageSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m WaitStageSummary) GetDisplayName() *string { return m.DisplayName } -//GetProjectId returns ProjectId +// GetProjectId returns ProjectId func (m WaitStageSummary) GetProjectId() *string { return m.ProjectId } -//GetBuildPipelineId returns BuildPipelineId +// GetBuildPipelineId returns BuildPipelineId func (m WaitStageSummary) GetBuildPipelineId() *string { return m.BuildPipelineId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m WaitStageSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WaitStageSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WaitStageSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WaitStageSummary) GetLifecycleState() BuildPipelineStageLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m WaitStageSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDescription returns Description +// GetDescription returns Description func (m WaitStageSummary) GetDescription() *string { return m.Description } -//GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection +// GetBuildPipelineStagePredecessorCollection returns BuildPipelineStagePredecessorCollection func (m WaitStageSummary) GetBuildPipelineStagePredecessorCollection() *BuildPipelineStagePredecessorCollection { return m.BuildPipelineStagePredecessorCollection } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WaitStageSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WaitStageSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m WaitStageSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_autonomous_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_autonomous_database_details.go index 30096eb02ed..797f758b050 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_autonomous_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_autonomous_database_details.go @@ -26,7 +26,7 @@ type CreateDrProtectionGroupMemberAutonomousDatabaseDetails struct { MemberId *string `mandatory:"true" json:"memberId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m CreateDrProtectionGroupMemberAutonomousDatabaseDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_details.go index a55c4dce73f..6cc6be752e0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_details.go @@ -42,7 +42,7 @@ type CreateDrProtectionGroupMemberComputeInstanceDetails struct { DestinationDedicatedVmHostId *string `mandatory:"false" json:"destinationDedicatedVmHostId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m CreateDrProtectionGroupMemberComputeInstanceDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_movable_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_movable_details.go index d157715770e..623d153fc8d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_movable_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_movable_details.go @@ -48,7 +48,7 @@ type CreateDrProtectionGroupMemberComputeInstanceMovableDetails struct { DestinationDedicatedVmHostId *string `mandatory:"false" json:"destinationDedicatedVmHostId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m CreateDrProtectionGroupMemberComputeInstanceMovableDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_non_movable_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_non_movable_details.go index 4a8a6935a11..87b14ae08b5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_non_movable_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_compute_instance_non_movable_details.go @@ -26,7 +26,7 @@ type CreateDrProtectionGroupMemberComputeInstanceNonMovableDetails struct { MemberId *string `mandatory:"true" json:"memberId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m CreateDrProtectionGroupMemberComputeInstanceNonMovableDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_database_details.go index e64a8c0d451..14571c43f28 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_database_details.go @@ -30,7 +30,7 @@ type CreateDrProtectionGroupMemberDatabaseDetails struct { PasswordVaultSecretId *string `mandatory:"false" json:"passwordVaultSecretId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m CreateDrProtectionGroupMemberDatabaseDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_volume_group_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_volume_group_details.go index e310d0a2809..87bf5fb1b58 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_volume_group_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/create_dr_protection_group_member_volume_group_details.go @@ -26,7 +26,7 @@ type CreateDrProtectionGroupMemberVolumeGroupDetails struct { MemberId *string `mandatory:"true" json:"memberId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m CreateDrProtectionGroupMemberVolumeGroupDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/disasterrecovery_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/disasterrecovery_client.go index c09c9654892..cddd283ec67 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/disasterrecovery_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/disasterrecovery_client.go @@ -96,7 +96,7 @@ func (client *DisasterRecoveryClient) ConfigurationProvider() *common.Configurat // AssociateDrProtectionGroup Create an association between the DR Protection Group identified by *drProtectionGroupId* and // another DR Protection Group in a different region. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/AssociateDrProtectionGroup.go.html to see an example of how to use AssociateDrProtectionGroup API. // A default retry strategy applies to this operation AssociateDrProtectionGroup() @@ -159,7 +159,7 @@ func (client DisasterRecoveryClient) associateDrProtectionGroup(ctx context.Cont // CancelDrPlanExecution Cancel the DR Plan Execution indentified by *drPlanExecutionId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/CancelDrPlanExecution.go.html to see an example of how to use CancelDrPlanExecution API. // A default retry strategy applies to this operation CancelDrPlanExecution() @@ -222,7 +222,7 @@ func (client DisasterRecoveryClient) cancelDrPlanExecution(ctx context.Context, // CancelWorkRequest Cancel the work request identified by *workRequestId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -280,7 +280,7 @@ func (client DisasterRecoveryClient) cancelWorkRequest(ctx context.Context, requ // ChangeDrProtectionGroupCompartment Move the DR Protection Group identified by *drProtectionGroupId* to a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/ChangeDrProtectionGroupCompartment.go.html to see an example of how to use ChangeDrProtectionGroupCompartment API. // A default retry strategy applies to this operation ChangeDrProtectionGroupCompartment() @@ -343,7 +343,7 @@ func (client DisasterRecoveryClient) changeDrProtectionGroupCompartment(ctx cont // CreateDrPlan Creates a new DR Plan of the specified DR Plan type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/CreateDrPlan.go.html to see an example of how to use CreateDrPlan API. // A default retry strategy applies to this operation CreateDrPlan() @@ -406,7 +406,7 @@ func (client DisasterRecoveryClient) createDrPlan(ctx context.Context, request c // CreateDrPlanExecution Execute a DR Plan for a DR Protection Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/CreateDrPlanExecution.go.html to see an example of how to use CreateDrPlanExecution API. // A default retry strategy applies to this operation CreateDrPlanExecution() @@ -469,7 +469,7 @@ func (client DisasterRecoveryClient) createDrPlanExecution(ctx context.Context, // CreateDrProtectionGroup Create a new DR Protection Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/CreateDrProtectionGroup.go.html to see an example of how to use CreateDrProtectionGroup API. // A default retry strategy applies to this operation CreateDrProtectionGroup() @@ -532,7 +532,7 @@ func (client DisasterRecoveryClient) createDrProtectionGroup(ctx context.Context // DeleteDrPlan Delete the DR Plan identified by *drPlanId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/DeleteDrPlan.go.html to see an example of how to use DeleteDrPlan API. // A default retry strategy applies to this operation DeleteDrPlan() @@ -590,7 +590,7 @@ func (client DisasterRecoveryClient) deleteDrPlan(ctx context.Context, request c // DeleteDrPlanExecution Delete the DR Plan Execution identified by *drPlanExecutionId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/DeleteDrPlanExecution.go.html to see an example of how to use DeleteDrPlanExecution API. // A default retry strategy applies to this operation DeleteDrPlanExecution() @@ -648,7 +648,7 @@ func (client DisasterRecoveryClient) deleteDrPlanExecution(ctx context.Context, // DeleteDrProtectionGroup Delete the DR Protection Group identified by *drProtectionGroupId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/DeleteDrProtectionGroup.go.html to see an example of how to use DeleteDrProtectionGroup API. // A default retry strategy applies to this operation DeleteDrProtectionGroup() @@ -707,7 +707,7 @@ func (client DisasterRecoveryClient) deleteDrProtectionGroup(ctx context.Context // DisassociateDrProtectionGroup Delete the association between the DR Protection Group identified by *drProtectionGroupId*. // and its peer DR Protection Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/DisassociateDrProtectionGroup.go.html to see an example of how to use DisassociateDrProtectionGroup API. // A default retry strategy applies to this operation DisassociateDrProtectionGroup() @@ -770,7 +770,7 @@ func (client DisasterRecoveryClient) disassociateDrProtectionGroup(ctx context.C // GetDrPlan Get details for the DR Plan identified by *drPlanId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/GetDrPlan.go.html to see an example of how to use GetDrPlan API. // A default retry strategy applies to this operation GetDrPlan() @@ -828,7 +828,7 @@ func (client DisasterRecoveryClient) getDrPlan(ctx context.Context, request comm // GetDrPlanExecution Get details for the DR Plan Execution identified by *drPlanExecutionId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/GetDrPlanExecution.go.html to see an example of how to use GetDrPlanExecution API. // A default retry strategy applies to this operation GetDrPlanExecution() @@ -886,7 +886,7 @@ func (client DisasterRecoveryClient) getDrPlanExecution(ctx context.Context, req // GetDrProtectionGroup Get the DR Protection Group identified by *drProtectionGroupId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/GetDrProtectionGroup.go.html to see an example of how to use GetDrProtectionGroup API. // A default retry strategy applies to this operation GetDrProtectionGroup() @@ -944,7 +944,7 @@ func (client DisasterRecoveryClient) getDrProtectionGroup(ctx context.Context, r // GetWorkRequest Get the status of the work request identified by *workRequestId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1002,7 +1002,7 @@ func (client DisasterRecoveryClient) getWorkRequest(ctx context.Context, request // IgnoreDrPlanExecution Ignore failed group or step in DR Plan Execution identified by *drPlanExecutionId* and resume execution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/IgnoreDrPlanExecution.go.html to see an example of how to use IgnoreDrPlanExecution API. // A default retry strategy applies to this operation IgnoreDrPlanExecution() @@ -1065,7 +1065,7 @@ func (client DisasterRecoveryClient) ignoreDrPlanExecution(ctx context.Context, // ListDrPlanExecutions Get a summary list of all DR Plan Executions for a DR Protection Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/ListDrPlanExecutions.go.html to see an example of how to use ListDrPlanExecutions API. // A default retry strategy applies to this operation ListDrPlanExecutions() @@ -1123,7 +1123,7 @@ func (client DisasterRecoveryClient) listDrPlanExecutions(ctx context.Context, r // ListDrPlans Gets a summary list of all DR Plans for a DR Protection Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/ListDrPlans.go.html to see an example of how to use ListDrPlans API. // A default retry strategy applies to this operation ListDrPlans() @@ -1181,7 +1181,7 @@ func (client DisasterRecoveryClient) listDrPlans(ctx context.Context, request co // ListDrProtectionGroups Gets a summary list of all DR Protection Groups in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/ListDrProtectionGroups.go.html to see an example of how to use ListDrProtectionGroups API. // A default retry strategy applies to this operation ListDrProtectionGroups() @@ -1239,7 +1239,7 @@ func (client DisasterRecoveryClient) listDrProtectionGroups(ctx context.Context, // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1297,7 +1297,7 @@ func (client DisasterRecoveryClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Return a (paginated) list of logs for the work request identified by *workRequestId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1355,7 +1355,7 @@ func (client DisasterRecoveryClient) listWorkRequestLogs(ctx context.Context, re // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1413,7 +1413,7 @@ func (client DisasterRecoveryClient) listWorkRequests(ctx context.Context, reque // PauseDrPlanExecution Pause the DR Plan Execution identified by *drPlanExecutionId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/PauseDrPlanExecution.go.html to see an example of how to use PauseDrPlanExecution API. // A default retry strategy applies to this operation PauseDrPlanExecution() @@ -1476,7 +1476,7 @@ func (client DisasterRecoveryClient) pauseDrPlanExecution(ctx context.Context, r // ResumeDrPlanExecution Resume the DR Plan Execution identified by *drPlanExecutionId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/ResumeDrPlanExecution.go.html to see an example of how to use ResumeDrPlanExecution API. // A default retry strategy applies to this operation ResumeDrPlanExecution() @@ -1539,7 +1539,7 @@ func (client DisasterRecoveryClient) resumeDrPlanExecution(ctx context.Context, // RetryDrPlanExecution Retry failed group or step in DR Plan Execution identified by *drPlanExecutionId* and resume execution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/RetryDrPlanExecution.go.html to see an example of how to use RetryDrPlanExecution API. // A default retry strategy applies to this operation RetryDrPlanExecution() @@ -1602,7 +1602,7 @@ func (client DisasterRecoveryClient) retryDrPlanExecution(ctx context.Context, r // UpdateDrPlan Update the DR Plan identified by *drPlanId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/UpdateDrPlan.go.html to see an example of how to use UpdateDrPlan API. // A default retry strategy applies to this operation UpdateDrPlan() @@ -1660,7 +1660,7 @@ func (client DisasterRecoveryClient) updateDrPlan(ctx context.Context, request c // UpdateDrPlanExecution Update the DR Plan Execution identified by *drPlanExecutionId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/UpdateDrPlanExecution.go.html to see an example of how to use UpdateDrPlanExecution API. // A default retry strategy applies to this operation UpdateDrPlanExecution() @@ -1718,7 +1718,7 @@ func (client DisasterRecoveryClient) updateDrPlanExecution(ctx context.Context, // UpdateDrProtectionGroup Update the DR Protection Group identified by *drProtectionGroupId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/UpdateDrProtectionGroup.go.html to see an example of how to use UpdateDrProtectionGroup API. // A default retry strategy applies to this operation UpdateDrProtectionGroup() @@ -1776,7 +1776,7 @@ func (client DisasterRecoveryClient) updateDrProtectionGroup(ctx context.Context // UpdateDrProtectionGroupRole Update the role of the DR Protection Group identified by *drProtectionGroupId*. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/disasterrecovery/UpdateDrProtectionGroupRole.go.html to see an example of how to use UpdateDrProtectionGroupRole API. // A default retry strategy applies to this operation UpdateDrProtectionGroupRole() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_autonomous_database.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_autonomous_database.go index ae99820d963..d828a7d5d11 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_autonomous_database.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_autonomous_database.go @@ -26,7 +26,7 @@ type DrProtectionGroupMemberAutonomousDatabase struct { MemberId *string `mandatory:"true" json:"memberId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m DrProtectionGroupMemberAutonomousDatabase) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance.go index 9e570d69432..c0873268816 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance.go @@ -41,7 +41,7 @@ type DrProtectionGroupMemberComputeInstance struct { DestinationDedicatedVmHostId *string `mandatory:"false" json:"destinationDedicatedVmHostId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m DrProtectionGroupMemberComputeInstance) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance_movable.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance_movable.go index 0f3a556ec18..0917161a791 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance_movable.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance_movable.go @@ -47,7 +47,7 @@ type DrProtectionGroupMemberComputeInstanceMovable struct { DestinationDedicatedVmHostId *string `mandatory:"false" json:"destinationDedicatedVmHostId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m DrProtectionGroupMemberComputeInstanceMovable) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance_non_movable.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance_non_movable.go index 2a9e36a2f28..e7e31a2f08e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance_non_movable.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_compute_instance_non_movable.go @@ -26,7 +26,7 @@ type DrProtectionGroupMemberComputeInstanceNonMovable struct { MemberId *string `mandatory:"true" json:"memberId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m DrProtectionGroupMemberComputeInstanceNonMovable) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_database.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_database.go index 24310c94160..8948892836c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_database.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_database.go @@ -30,7 +30,7 @@ type DrProtectionGroupMemberDatabase struct { PasswordVaultSecretId *string `mandatory:"false" json:"passwordVaultSecretId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m DrProtectionGroupMemberDatabase) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_volume_group.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_volume_group.go index f21d7a81443..cb034b7bb89 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_volume_group.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/dr_protection_group_member_volume_group.go @@ -26,7 +26,7 @@ type DrProtectionGroupMemberVolumeGroup struct { MemberId *string `mandatory:"true" json:"memberId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m DrProtectionGroupMemberVolumeGroup) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_autonomous_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_autonomous_database_details.go index cde19991460..d1e789504a3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_autonomous_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_autonomous_database_details.go @@ -26,7 +26,7 @@ type UpdateDrProtectionGroupMemberAutonomousDatabaseDetails struct { MemberId *string `mandatory:"true" json:"memberId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m UpdateDrProtectionGroupMemberAutonomousDatabaseDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_details.go index 53664ae4132..2f4d435da1d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_details.go @@ -42,7 +42,7 @@ type UpdateDrProtectionGroupMemberComputeInstanceDetails struct { DestinationDedicatedVmHostId *string `mandatory:"false" json:"destinationDedicatedVmHostId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m UpdateDrProtectionGroupMemberComputeInstanceDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_movable_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_movable_details.go index d725ec775c1..ae373407cf9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_movable_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_movable_details.go @@ -48,7 +48,7 @@ type UpdateDrProtectionGroupMemberComputeInstanceMovableDetails struct { DestinationDedicatedVmHostId *string `mandatory:"false" json:"destinationDedicatedVmHostId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m UpdateDrProtectionGroupMemberComputeInstanceMovableDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_non_movable_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_non_movable_details.go index 4fdab087229..7e1b885425a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_non_movable_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_compute_instance_non_movable_details.go @@ -26,7 +26,7 @@ type UpdateDrProtectionGroupMemberComputeInstanceNonMovableDetails struct { MemberId *string `mandatory:"true" json:"memberId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m UpdateDrProtectionGroupMemberComputeInstanceNonMovableDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_database_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_database_details.go index a401880007b..d9048b044d8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_database_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_database_details.go @@ -30,7 +30,7 @@ type UpdateDrProtectionGroupMemberDatabaseDetails struct { PasswordVaultSecretId *string `mandatory:"false" json:"passwordVaultSecretId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m UpdateDrProtectionGroupMemberDatabaseDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_volume_group_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_volume_group_details.go index ff11258989c..f56d2ae6b83 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_volume_group_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/disasterrecovery/update_dr_protection_group_member_volume_group_details.go @@ -26,7 +26,7 @@ type UpdateDrProtectionGroupMemberVolumeGroupDetails struct { MemberId *string `mandatory:"true" json:"memberId"` } -//GetMemberId returns MemberId +// GetMemberId returns MemberId func (m UpdateDrProtectionGroupMemberVolumeGroupDetails) GetMemberId() *string { return m.MemberId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_migrated_dynect_zone_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_migrated_dynect_zone_details.go index 80e573ff04b..42468e59b6c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_migrated_dynect_zone_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_migrated_dynect_zone_details.go @@ -42,22 +42,22 @@ type CreateMigratedDynectZoneDetails struct { DynectMigrationDetails *DynectMigrationDetails `mandatory:"false" json:"dynectMigrationDetails"` } -//GetName returns Name +// GetName returns Name func (m CreateMigratedDynectZoneDetails) GetName() *string { return m.Name } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateMigratedDynectZoneDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMigratedDynectZoneDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMigratedDynectZoneDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_resolver_vnic_endpoint_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_resolver_vnic_endpoint_details.go index 22694a9d586..78dd184630f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_resolver_vnic_endpoint_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_resolver_vnic_endpoint_details.go @@ -48,27 +48,27 @@ type CreateResolverVnicEndpointDetails struct { NsgIds []string `mandatory:"false" json:"nsgIds"` } -//GetName returns Name +// GetName returns Name func (m CreateResolverVnicEndpointDetails) GetName() *string { return m.Name } -//GetForwardingAddress returns ForwardingAddress +// GetForwardingAddress returns ForwardingAddress func (m CreateResolverVnicEndpointDetails) GetForwardingAddress() *string { return m.ForwardingAddress } -//GetIsForwarding returns IsForwarding +// GetIsForwarding returns IsForwarding func (m CreateResolverVnicEndpointDetails) GetIsForwarding() *bool { return m.IsForwarding } -//GetIsListening returns IsListening +// GetIsListening returns IsListening func (m CreateResolverVnicEndpointDetails) GetIsListening() *bool { return m.IsListening } -//GetListeningAddress returns ListeningAddress +// GetListeningAddress returns ListeningAddress func (m CreateResolverVnicEndpointDetails) GetListeningAddress() *string { return m.ListeningAddress } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_zone_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_zone_details.go index ef672b7e435..f52b833548e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_zone_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/create_zone_details.go @@ -58,22 +58,22 @@ type CreateZoneDetails struct { Scope ScopeEnum `mandatory:"false" json:"scope,omitempty"` } -//GetName returns Name +// GetName returns Name func (m CreateZoneDetails) GetName() *string { return m.Name } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateZoneDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateZoneDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateZoneDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/dns_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/dns_client.go index 3c2f4b50578..8020aa9f9df 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/dns_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/dns_client.go @@ -96,7 +96,7 @@ func (client *DnsClient) ConfigurationProvider() *common.ConfigurationProvider { // Zones in the default view are not moved. VCN-dedicated resolvers are initially created in the same compartment // as their corresponding VCN, but can then be moved to a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ChangeResolverCompartment.go.html to see an example of how to use ChangeResolverCompartment API. // A default retry strategy applies to this operation ChangeResolverCompartment() @@ -159,7 +159,7 @@ func (client DnsClient) changeResolverCompartment(ctx context.Context, request c // ChangeSteeringPolicyCompartment Moves a steering policy into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ChangeSteeringPolicyCompartment.go.html to see an example of how to use ChangeSteeringPolicyCompartment API. // A default retry strategy applies to this operation ChangeSteeringPolicyCompartment() @@ -222,7 +222,7 @@ func (client DnsClient) changeSteeringPolicyCompartment(ctx context.Context, req // ChangeTsigKeyCompartment Moves a TSIG key into a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ChangeTsigKeyCompartment.go.html to see an example of how to use ChangeTsigKeyCompartment API. // A default retry strategy applies to this operation ChangeTsigKeyCompartment() @@ -286,7 +286,7 @@ func (client DnsClient) changeTsigKeyCompartment(ctx context.Context, request co // ChangeViewCompartment Moves a view into a different compartment. // To change the compartment of a protected view, change the compartment of its corresponding resolver. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ChangeViewCompartment.go.html to see an example of how to use ChangeViewCompartment API. // A default retry strategy applies to this operation ChangeViewCompartment() @@ -354,7 +354,7 @@ func (client DnsClient) changeViewCompartment(ctx context.Context, request commo // **Note:** All SteeringPolicyAttachment objects associated with this zone will also be moved into // the provided compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ChangeZoneCompartment.go.html to see an example of how to use ChangeZoneCompartment API. // A default retry strategy applies to this operation ChangeZoneCompartment() @@ -417,7 +417,7 @@ func (client DnsClient) changeZoneCompartment(ctx context.Context, request commo // CreateResolverEndpoint Creates a new resolver endpoint in the same compartment as the resolver. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/CreateResolverEndpoint.go.html to see an example of how to use CreateResolverEndpoint API. // A default retry strategy applies to this operation CreateResolverEndpoint() @@ -481,7 +481,7 @@ func (client DnsClient) createResolverEndpoint(ctx context.Context, request comm // CreateSteeringPolicy Creates a new steering policy in the specified compartment. For more information on // creating policies with templates, see Traffic Management API Guide (https://docs.cloud.oracle.com/iaas/Content/TrafficManagement/Concepts/trafficmanagementapi.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/CreateSteeringPolicy.go.html to see an example of how to use CreateSteeringPolicy API. // A default retry strategy applies to this operation CreateSteeringPolicy() @@ -548,7 +548,7 @@ func (client DnsClient) createSteeringPolicy(ctx context.Context, request common // For the purposes of access control, the attachment is automatically placed // into the same compartment as the domain's zone. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/CreateSteeringPolicyAttachment.go.html to see an example of how to use CreateSteeringPolicyAttachment API. // A default retry strategy applies to this operation CreateSteeringPolicyAttachment() @@ -612,7 +612,7 @@ func (client DnsClient) createSteeringPolicyAttachment(ctx context.Context, requ // CreateTsigKey Creates a new TSIG key in the specified compartment. There is no // `opc-retry-token` header since TSIG key names must be globally unique. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/CreateTsigKey.go.html to see an example of how to use CreateTsigKey API. // A default retry strategy applies to this operation CreateTsigKey() @@ -670,7 +670,7 @@ func (client DnsClient) createTsigKey(ctx context.Context, request common.OCIReq // CreateView Creates a new view in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/CreateView.go.html to see an example of how to use CreateView API. // A default retry strategy applies to this operation CreateView() @@ -735,7 +735,7 @@ func (client DnsClient) createView(ctx context.Context, request common.OCIReques // Private zones must have a zone type of `PRIMARY`. Creating a private zone at or under `oraclevcn.com` // within the default protected view of a VCN-dedicated resolver is not permitted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/CreateZone.go.html to see an example of how to use CreateZone API. func (client DnsClient) CreateZone(ctx context.Context, request CreateZoneRequest) (response CreateZoneResponse, err error) { @@ -792,7 +792,7 @@ func (client DnsClient) createZone(ctx context.Context, request common.OCIReques // CreateZoneFromZoneFile Creates a new zone from a zone file in the specified compartment. Not supported for private zones. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/CreateZoneFromZoneFile.go.html to see an example of how to use CreateZoneFromZoneFile API. func (client DnsClient) CreateZoneFromZoneFile(ctx context.Context, request CreateZoneFromZoneFileRequest) (response CreateZoneFromZoneFileResponse, err error) { @@ -851,7 +851,7 @@ func (client DnsClient) createZoneFromZoneFile(ctx context.Context, request comm // When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter // then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/DeleteDomainRecords.go.html to see an example of how to use DeleteDomainRecords API. // A default retry strategy applies to this operation DeleteDomainRecords() @@ -911,7 +911,7 @@ func (client DnsClient) deleteDomainRecords(ctx context.Context, request common. // When the zone name is provided as a path parameter and `PRIVATE` is used for the scope // query parameter then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/DeleteRRSet.go.html to see an example of how to use DeleteRRSet API. // A default retry strategy applies to this operation DeleteRRSet() @@ -972,7 +972,7 @@ func (client DnsClient) deleteRRSet(ctx context.Context, request common.OCIReque // a `404` response to be consistent with other operations of the API. Resolver endpoints may not // be deleted if they are referenced by a resolver rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/DeleteResolverEndpoint.go.html to see an example of how to use DeleteResolverEndpoint API. // A default retry strategy applies to this operation DeleteResolverEndpoint() @@ -1033,7 +1033,7 @@ func (client DnsClient) deleteResolverEndpoint(ctx context.Context, request comm // Deletion will fail if the policy is attached to any zones. To detach a // policy from a zone, see `DeleteSteeringPolicyAttachment`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/DeleteSteeringPolicy.go.html to see an example of how to use DeleteSteeringPolicy API. // A default retry strategy applies to this operation DeleteSteeringPolicy() @@ -1092,7 +1092,7 @@ func (client DnsClient) deleteSteeringPolicy(ctx context.Context, request common // DeleteSteeringPolicyAttachment Deletes the specified steering policy attachment. // A `204` response indicates that the delete has been successful. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/DeleteSteeringPolicyAttachment.go.html to see an example of how to use DeleteSteeringPolicyAttachment API. // A default retry strategy applies to this operation DeleteSteeringPolicyAttachment() @@ -1150,7 +1150,7 @@ func (client DnsClient) deleteSteeringPolicyAttachment(ctx context.Context, requ // DeleteTsigKey Deletes the specified TSIG key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/DeleteTsigKey.go.html to see an example of how to use DeleteTsigKey API. // A default retry strategy applies to this operation DeleteTsigKey() @@ -1212,7 +1212,7 @@ func (client DnsClient) deleteTsigKey(ctx context.Context, request common.OCIReq // deleted if they are referenced by non-deleted zones or resolvers. // Protected views cannot be deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/DeleteView.go.html to see an example of how to use DeleteView API. // A default retry strategy applies to this operation DeleteView() @@ -1273,7 +1273,7 @@ func (client DnsClient) deleteView(ctx context.Context, request common.OCIReques // When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter // then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/DeleteZone.go.html to see an example of how to use DeleteZone API. func (client DnsClient) DeleteZone(ctx context.Context, request DeleteZoneRequest) (response DeleteZoneResponse, err error) { @@ -1333,7 +1333,7 @@ func (client DnsClient) deleteZone(ctx context.Context, request common.OCIReques // the results using the listed parameters. When the zone name is provided as a path parameter and `PRIVATE` // is used for the scope query parameter then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetDomainRecords.go.html to see an example of how to use GetDomainRecords API. // A default retry strategy applies to this operation GetDomainRecords() @@ -1393,7 +1393,7 @@ func (client DnsClient) getDomainRecords(ctx context.Context, request common.OCI // The results are sorted by `recordHash` by default. When the zone name is provided as a path parameter // and `PRIVATE` is used for the scope query parameter then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetRRSet.go.html to see an example of how to use GetRRSet API. // A default retry strategy applies to this operation GetRRSet() @@ -1453,7 +1453,7 @@ func (client DnsClient) getRRSet(ctx context.Context, request common.OCIRequest, // Note that attempting to get a resolver in the DELETED lifecycleState will result in a `404` // response to be consistent with other operations of the API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetResolver.go.html to see an example of how to use GetResolver API. // A default retry strategy applies to this operation GetResolver() @@ -1513,7 +1513,7 @@ func (client DnsClient) getResolver(ctx context.Context, request common.OCIReque // Note that attempting to get a resolver endpoint in the DELETED lifecycle state will result // in a `404` response to be consistent with other operations of the API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetResolverEndpoint.go.html to see an example of how to use GetResolverEndpoint API. // A default retry strategy applies to this operation GetResolverEndpoint() @@ -1571,7 +1571,7 @@ func (client DnsClient) getResolverEndpoint(ctx context.Context, request common. // GetSteeringPolicy Gets information about the specified steering policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetSteeringPolicy.go.html to see an example of how to use GetSteeringPolicy API. // A default retry strategy applies to this operation GetSteeringPolicy() @@ -1629,7 +1629,7 @@ func (client DnsClient) getSteeringPolicy(ctx context.Context, request common.OC // GetSteeringPolicyAttachment Gets information about the specified steering policy attachment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetSteeringPolicyAttachment.go.html to see an example of how to use GetSteeringPolicyAttachment API. // A default retry strategy applies to this operation GetSteeringPolicyAttachment() @@ -1687,7 +1687,7 @@ func (client DnsClient) getSteeringPolicyAttachment(ctx context.Context, request // GetTsigKey Gets information about the specified TSIG key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetTsigKey.go.html to see an example of how to use GetTsigKey API. // A default retry strategy applies to this operation GetTsigKey() @@ -1748,7 +1748,7 @@ func (client DnsClient) getTsigKey(ctx context.Context, request common.OCIReques // view in the DELETED lifecycleState will result in a `404` response to be // consistent with other operations of the API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetView.go.html to see an example of how to use GetView API. // A default retry strategy applies to this operation GetView() @@ -1808,7 +1808,7 @@ func (client DnsClient) getView(ctx context.Context, request common.OCIRequest, // When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query // parameter then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetZone.go.html to see an example of how to use GetZone API. // A default retry strategy applies to this operation GetZone() @@ -1866,7 +1866,7 @@ func (client DnsClient) getZone(ctx context.Context, request common.OCIRequest, // GetZoneContent Gets the requested zone's zone file. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetZoneContent.go.html to see an example of how to use GetZoneContent API. // A default retry strategy applies to this operation GetZoneContent() @@ -1927,7 +1927,7 @@ func (client DnsClient) getZoneContent(ctx context.Context, request common.OCIRe // When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter // then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/GetZoneRecords.go.html to see an example of how to use GetZoneRecords API. // A default retry strategy applies to this operation GetZoneRecords() @@ -2004,7 +2004,7 @@ func (m *listresolverendpointsummary) UnmarshalPolymorphicJSON(data []byte) (int // query parameter is provided, the collection does not include resolver endpoints in the DELETED // lifecycle state to be consistent with other operations of the API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ListResolverEndpoints.go.html to see an example of how to use ListResolverEndpoints API. // A default retry strategy applies to this operation ListResolverEndpoints() @@ -2066,7 +2066,7 @@ func (client DnsClient) listResolverEndpoints(ctx context.Context, request commo // query parameter is provided, the collection does not include resolvers in the DELETED // lifecycleState to be consistent with other operations of the API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ListResolvers.go.html to see an example of how to use ListResolvers API. // A default retry strategy applies to this operation ListResolvers() @@ -2124,7 +2124,7 @@ func (client DnsClient) listResolvers(ctx context.Context, request common.OCIReq // ListSteeringPolicies Gets a list of all steering policies in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ListSteeringPolicies.go.html to see an example of how to use ListSteeringPolicies API. // A default retry strategy applies to this operation ListSteeringPolicies() @@ -2182,7 +2182,7 @@ func (client DnsClient) listSteeringPolicies(ctx context.Context, request common // ListSteeringPolicyAttachments Lists the steering policy attachments in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ListSteeringPolicyAttachments.go.html to see an example of how to use ListSteeringPolicyAttachments API. // A default retry strategy applies to this operation ListSteeringPolicyAttachments() @@ -2240,7 +2240,7 @@ func (client DnsClient) listSteeringPolicyAttachments(ctx context.Context, reque // ListTsigKeys Gets a list of all TSIG keys in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ListTsigKeys.go.html to see an example of how to use ListTsigKeys API. // A default retry strategy applies to this operation ListTsigKeys() @@ -2302,7 +2302,7 @@ func (client DnsClient) listTsigKeys(ctx context.Context, request common.OCIRequ // query parameter is provided, the collection does not include views in the DELETED // lifecycleState to be consistent with other operations of the API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ListViews.go.html to see an example of how to use ListViews API. // A default retry strategy applies to this operation ListViews() @@ -2362,7 +2362,7 @@ func (client DnsClient) listViews(ctx context.Context, request common.OCIRequest // compartment (which must be the root compartment of a tenancy) that transfer zone data with external master or // downstream nameservers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ListZoneTransferServers.go.html to see an example of how to use ListZoneTransferServers API. // A default retry strategy applies to this operation ListZoneTransferServers() @@ -2422,7 +2422,7 @@ func (client DnsClient) listZoneTransferServers(ctx context.Context, request com // The collection can be filtered by name, time created, scope, associated view, and zone type. // Filtering by view is only supported for private zones. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/ListZones.go.html to see an example of how to use ListZones API. // A default retry strategy applies to this operation ListZones() @@ -2484,7 +2484,7 @@ func (client DnsClient) listZones(ctx context.Context, request common.OCIRequest // a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is // required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/PatchDomainRecords.go.html to see an example of how to use PatchDomainRecords API. // A default retry strategy applies to this operation PatchDomainRecords() @@ -2544,7 +2544,7 @@ func (client DnsClient) patchDomainRecords(ctx context.Context, request common.O // When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query // parameter then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/PatchRRSet.go.html to see an example of how to use PatchRRSet API. // A default retry strategy applies to this operation PatchRRSet() @@ -2606,7 +2606,7 @@ func (client DnsClient) patchRRSet(ctx context.Context, request common.OCIReques // a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is // required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/PatchZoneRecords.go.html to see an example of how to use PatchZoneRecords API. // A default retry strategy applies to this operation PatchZoneRecords() @@ -2668,7 +2668,7 @@ func (client DnsClient) patchZoneRecords(ctx context.Context, request common.OCI // the record will be removed from the zone. When the zone name is provided as a path parameter and `PRIVATE` // is used for the scope query parameter then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateDomainRecords.go.html to see an example of how to use UpdateDomainRecords API. // A default retry strategy applies to this operation UpdateDomainRecords() @@ -2728,7 +2728,7 @@ func (client DnsClient) updateDomainRecords(ctx context.Context, request common. // When the zone name is provided as a path parameter and `PRIVATE` is used for the scope // query parameter then the viewId query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateRRSet.go.html to see an example of how to use UpdateRRSet API. // A default retry strategy applies to this operation UpdateRRSet() @@ -2786,7 +2786,7 @@ func (client DnsClient) updateRRSet(ctx context.Context, request common.OCIReque // UpdateResolver Updates the specified resolver with your new information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateResolver.go.html to see an example of how to use UpdateResolver API. // A default retry strategy applies to this operation UpdateResolver() @@ -2844,7 +2844,7 @@ func (client DnsClient) updateResolver(ctx context.Context, request common.OCIRe // UpdateResolverEndpoint Updates the specified resolver endpoint with your new information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateResolverEndpoint.go.html to see an example of how to use UpdateResolverEndpoint API. // A default retry strategy applies to this operation UpdateResolverEndpoint() @@ -2902,7 +2902,7 @@ func (client DnsClient) updateResolverEndpoint(ctx context.Context, request comm // UpdateSteeringPolicy Updates the configuration of the specified steering policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateSteeringPolicy.go.html to see an example of how to use UpdateSteeringPolicy API. // A default retry strategy applies to this operation UpdateSteeringPolicy() @@ -2960,7 +2960,7 @@ func (client DnsClient) updateSteeringPolicy(ctx context.Context, request common // UpdateSteeringPolicyAttachment Updates the specified steering policy attachment with your new information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateSteeringPolicyAttachment.go.html to see an example of how to use UpdateSteeringPolicyAttachment API. // A default retry strategy applies to this operation UpdateSteeringPolicyAttachment() @@ -3018,7 +3018,7 @@ func (client DnsClient) updateSteeringPolicyAttachment(ctx context.Context, requ // UpdateTsigKey Updates the specified TSIG key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateTsigKey.go.html to see an example of how to use UpdateTsigKey API. // A default retry strategy applies to this operation UpdateTsigKey() @@ -3076,7 +3076,7 @@ func (client DnsClient) updateTsigKey(ctx context.Context, request common.OCIReq // UpdateView Updates the specified view with your new information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateView.go.html to see an example of how to use UpdateView API. // A default retry strategy applies to this operation UpdateView() @@ -3138,7 +3138,7 @@ func (client DnsClient) updateView(ctx context.Context, request common.OCIReques // is provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId // query parameter is required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateZone.go.html to see an example of how to use UpdateZone API. // A default retry strategy applies to this operation UpdateZone() @@ -3201,7 +3201,7 @@ func (client DnsClient) updateZone(ctx context.Context, request common.OCIReques // parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is // required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/dns/UpdateZoneRecords.go.html to see an example of how to use UpdateZoneRecords API. // A default retry strategy applies to this operation UpdateZoneRecords() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_forward_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_forward_rule.go index ae503bf615a..e6f985bc594 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_forward_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_forward_rule.go @@ -35,12 +35,12 @@ type ResolverForwardRule struct { SourceEndpointName *string `mandatory:"false" json:"sourceEndpointName"` } -//GetClientAddressConditions returns ClientAddressConditions +// GetClientAddressConditions returns ClientAddressConditions func (m ResolverForwardRule) GetClientAddressConditions() []string { return m.ClientAddressConditions } -//GetQnameCoverConditions returns QnameCoverConditions +// GetQnameCoverConditions returns QnameCoverConditions func (m ResolverForwardRule) GetQnameCoverConditions() []string { return m.QnameCoverConditions } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_forward_rule_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_forward_rule_details.go index 2fdad54ca54..6af4692de3e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_forward_rule_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_forward_rule_details.go @@ -35,12 +35,12 @@ type ResolverForwardRuleDetails struct { QnameCoverConditions []string `mandatory:"false" json:"qnameCoverConditions"` } -//GetClientAddressConditions returns ClientAddressConditions +// GetClientAddressConditions returns ClientAddressConditions func (m ResolverForwardRuleDetails) GetClientAddressConditions() []string { return m.ClientAddressConditions } -//GetQnameCoverConditions returns QnameCoverConditions +// GetQnameCoverConditions returns QnameCoverConditions func (m ResolverForwardRuleDetails) GetQnameCoverConditions() []string { return m.QnameCoverConditions } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_vnic_endpoint.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_vnic_endpoint.go index 92fce21683a..eaa29aac3ec 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_vnic_endpoint.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_vnic_endpoint.go @@ -67,52 +67,52 @@ type ResolverVnicEndpoint struct { LifecycleState ResolverEndpointLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetName returns Name +// GetName returns Name func (m ResolverVnicEndpoint) GetName() *string { return m.Name } -//GetForwardingAddress returns ForwardingAddress +// GetForwardingAddress returns ForwardingAddress func (m ResolverVnicEndpoint) GetForwardingAddress() *string { return m.ForwardingAddress } -//GetIsForwarding returns IsForwarding +// GetIsForwarding returns IsForwarding func (m ResolverVnicEndpoint) GetIsForwarding() *bool { return m.IsForwarding } -//GetIsListening returns IsListening +// GetIsListening returns IsListening func (m ResolverVnicEndpoint) GetIsListening() *bool { return m.IsListening } -//GetListeningAddress returns ListeningAddress +// GetListeningAddress returns ListeningAddress func (m ResolverVnicEndpoint) GetListeningAddress() *string { return m.ListeningAddress } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ResolverVnicEndpoint) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ResolverVnicEndpoint) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ResolverVnicEndpoint) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ResolverVnicEndpoint) GetLifecycleState() ResolverEndpointLifecycleStateEnum { return m.LifecycleState } -//GetSelf returns Self +// GetSelf returns Self func (m ResolverVnicEndpoint) GetSelf() *string { return m.Self } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_vnic_endpoint_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_vnic_endpoint_summary.go index 4a9ce68ebf0..4d05b0c93de 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_vnic_endpoint_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/resolver_vnic_endpoint_summary.go @@ -63,52 +63,52 @@ type ResolverVnicEndpointSummary struct { LifecycleState ResolverEndpointSummaryLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetName returns Name +// GetName returns Name func (m ResolverVnicEndpointSummary) GetName() *string { return m.Name } -//GetForwardingAddress returns ForwardingAddress +// GetForwardingAddress returns ForwardingAddress func (m ResolverVnicEndpointSummary) GetForwardingAddress() *string { return m.ForwardingAddress } -//GetIsForwarding returns IsForwarding +// GetIsForwarding returns IsForwarding func (m ResolverVnicEndpointSummary) GetIsForwarding() *bool { return m.IsForwarding } -//GetIsListening returns IsListening +// GetIsListening returns IsListening func (m ResolverVnicEndpointSummary) GetIsListening() *bool { return m.IsListening } -//GetListeningAddress returns ListeningAddress +// GetListeningAddress returns ListeningAddress func (m ResolverVnicEndpointSummary) GetListeningAddress() *string { return m.ListeningAddress } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ResolverVnicEndpointSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ResolverVnicEndpointSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ResolverVnicEndpointSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ResolverVnicEndpointSummary) GetLifecycleState() ResolverEndpointSummaryLifecycleStateEnum { return m.LifecycleState } -//GetSelf returns Self +// GetSelf returns Self func (m ResolverVnicEndpointSummary) GetSelf() *string { return m.Self } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_filter_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_filter_rule.go index 2262aa81e26..efb235535d6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_filter_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_filter_rule.go @@ -40,7 +40,7 @@ type SteeringPolicyFilterRule struct { DefaultAnswerData []SteeringPolicyFilterAnswerData `mandatory:"false" json:"defaultAnswerData"` } -//GetDescription returns Description +// GetDescription returns Description func (m SteeringPolicyFilterRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_health_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_health_rule.go index 4571ec7937a..ca44c892033 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_health_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_health_rule.go @@ -34,7 +34,7 @@ type SteeringPolicyHealthRule struct { Cases []SteeringPolicyHealthRuleCase `mandatory:"false" json:"cases"` } -//GetDescription returns Description +// GetDescription returns Description func (m SteeringPolicyHealthRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_limit_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_limit_rule.go index 4ac818905dd..c081b09feec 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_limit_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_limit_rule.go @@ -40,7 +40,7 @@ type SteeringPolicyLimitRule struct { DefaultCount *int `mandatory:"false" json:"defaultCount"` } -//GetDescription returns Description +// GetDescription returns Description func (m SteeringPolicyLimitRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_priority_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_priority_rule.go index 5697584c674..5326434309d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_priority_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_priority_rule.go @@ -40,7 +40,7 @@ type SteeringPolicyPriorityRule struct { DefaultAnswerData []SteeringPolicyPriorityAnswerData `mandatory:"false" json:"defaultAnswerData"` } -//GetDescription returns Description +// GetDescription returns Description func (m SteeringPolicyPriorityRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_weighted_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_weighted_rule.go index ba757025ad6..61a215938ae 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_weighted_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/dns/steering_policy_weighted_rule.go @@ -40,7 +40,7 @@ type SteeringPolicyWeightedRule struct { DefaultAnswerData []SteeringPolicyWeightedAnswerData `mandatory:"false" json:"defaultAnswerData"` } -//GetDescription returns Description +// GetDescription returns Description func (m SteeringPolicyWeightedRule) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/email/email_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/email/email_client.go index 7c8a5a6523a..7cd5207247e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/email/email_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/email/email_client.go @@ -101,7 +101,7 @@ func (client *EmailClient) ConfigurationProvider() *common.ConfigurationProvider // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // **Note:** All Dkim objects associated with this email domain will also be moved into the provided compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/ChangeEmailDomainCompartment.go.html to see an example of how to use ChangeEmailDomainCompartment API. func (client EmailClient) ChangeEmailDomainCompartment(ctx context.Context, request ChangeEmailDomainCompartmentRequest) (response ChangeEmailDomainCompartmentResponse, err error) { @@ -163,7 +163,7 @@ func (client EmailClient) changeEmailDomainCompartment(ctx context.Context, requ // ChangeSenderCompartment Moves a sender into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/ChangeSenderCompartment.go.html to see an example of how to use ChangeSenderCompartment API. func (client EmailClient) ChangeSenderCompartment(ctx context.Context, request ChangeSenderCompartmentRequest) (response ChangeSenderCompartmentResponse, err error) { @@ -224,7 +224,7 @@ func (client EmailClient) changeSenderCompartment(ctx context.Context, request c // When a second DKIM is applied, all senders will seamlessly pick up the new key // without interruption in signing. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/CreateDkim.go.html to see an example of how to use CreateDkim API. func (client EmailClient) CreateDkim(ctx context.Context, request CreateDkimRequest) (response CreateDkimResponse, err error) { @@ -286,7 +286,7 @@ func (client EmailClient) createDkim(ctx context.Context, request common.OCIRequ // CreateEmailDomain Creates a new email domain. Avoid entering confidential information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/CreateEmailDomain.go.html to see an example of how to use CreateEmailDomain API. func (client EmailClient) CreateEmailDomain(ctx context.Context, request CreateEmailDomainRequest) (response CreateEmailDomainResponse, err error) { @@ -348,7 +348,7 @@ func (client EmailClient) createEmailDomain(ctx context.Context, request common. // CreateSender Creates a sender for a tenancy in a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/CreateSender.go.html to see an example of how to use CreateSender API. func (client EmailClient) CreateSender(ctx context.Context, request CreateSenderRequest) (response CreateSenderResponse, err error) { @@ -408,7 +408,7 @@ func (client EmailClient) createSender(ctx context.Context, request common.OCIRe // "MANUAL" in the `reason` field. *Note:* All email addresses added to the // suppression list are normalized to include only lowercase letters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/CreateSuppression.go.html to see an example of how to use CreateSuppression API. func (client EmailClient) CreateSuppression(ctx context.Context, request CreateSuppressionRequest) (response CreateSuppressionResponse, err error) { @@ -470,7 +470,7 @@ func (client EmailClient) createSuppression(ctx context.Context, request common. // in-transit mail to be validated. // Consider instead of deletion creating a new DKIM for this domain so the signing can be rotated to it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/DeleteDkim.go.html to see an example of how to use DeleteDkim API. func (client EmailClient) DeleteDkim(ctx context.Context, request DeleteDkimRequest) (response DeleteDkimResponse, err error) { @@ -527,7 +527,7 @@ func (client EmailClient) deleteDkim(ctx context.Context, request common.OCIRequ // DeleteEmailDomain Deletes a email domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/DeleteEmailDomain.go.html to see an example of how to use DeleteEmailDomain API. func (client EmailClient) DeleteEmailDomain(ctx context.Context, request DeleteEmailDomainRequest) (response DeleteEmailDomainResponse, err error) { @@ -585,7 +585,7 @@ func (client EmailClient) deleteEmailDomain(ctx context.Context, request common. // DeleteSender Deletes an approved sender for a tenancy in a given compartment for a // provided `senderId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/DeleteSender.go.html to see an example of how to use DeleteSender API. func (client EmailClient) DeleteSender(ctx context.Context, request DeleteSenderRequest) (response DeleteSenderResponse, err error) { @@ -643,7 +643,7 @@ func (client EmailClient) deleteSender(ctx context.Context, request common.OCIRe // DeleteSuppression Removes a suppressed recipient email address from the suppression list // for a tenancy in a given compartment for a provided `suppressionId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/DeleteSuppression.go.html to see an example of how to use DeleteSuppression API. func (client EmailClient) DeleteSuppression(ctx context.Context, request DeleteSuppressionRequest) (response DeleteSuppressionResponse, err error) { @@ -700,7 +700,7 @@ func (client EmailClient) deleteSuppression(ctx context.Context, request common. // GetDkim Retrieves the specified DKIM. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/GetDkim.go.html to see an example of how to use GetDkim API. func (client EmailClient) GetDkim(ctx context.Context, request GetDkimRequest) (response GetDkimResponse, err error) { @@ -757,7 +757,7 @@ func (client EmailClient) getDkim(ctx context.Context, request common.OCIRequest // GetEmailDomain Retrieves the specified email domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/GetEmailDomain.go.html to see an example of how to use GetEmailDomain API. func (client EmailClient) GetEmailDomain(ctx context.Context, request GetEmailDomainRequest) (response GetEmailDomainResponse, err error) { @@ -814,7 +814,7 @@ func (client EmailClient) getEmailDomain(ctx context.Context, request common.OCI // GetSender Gets an approved sender for a given `senderId`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/GetSender.go.html to see an example of how to use GetSender API. func (client EmailClient) GetSender(ctx context.Context, request GetSenderRequest) (response GetSenderResponse, err error) { @@ -872,7 +872,7 @@ func (client EmailClient) getSender(ctx context.Context, request common.OCIReque // GetSuppression Gets the details of a suppressed recipient email address for a given // `suppressionId`. Each suppression is given a unique OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/GetSuppression.go.html to see an example of how to use GetSuppression API. func (client EmailClient) GetSuppression(ctx context.Context, request GetSuppressionRequest) (response GetSuppressionResponse, err error) { @@ -929,7 +929,7 @@ func (client EmailClient) getSuppression(ctx context.Context, request common.OCI // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client EmailClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -986,7 +986,7 @@ func (client EmailClient) getWorkRequest(ctx context.Context, request common.OCI // ListDkims Lists DKIMs for a email domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/ListDkims.go.html to see an example of how to use ListDkims API. func (client EmailClient) ListDkims(ctx context.Context, request ListDkimsRequest) (response ListDkimsResponse, err error) { @@ -1043,7 +1043,7 @@ func (client EmailClient) listDkims(ctx context.Context, request common.OCIReque // ListEmailDomains Lists email domains in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/ListEmailDomains.go.html to see an example of how to use ListEmailDomains API. func (client EmailClient) ListEmailDomains(ctx context.Context, request ListEmailDomainsRequest) (response ListEmailDomainsResponse, err error) { @@ -1100,7 +1100,7 @@ func (client EmailClient) listEmailDomains(ctx context.Context, request common.O // ListSenders Gets a collection of approved sender email addresses and sender IDs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/ListSenders.go.html to see an example of how to use ListSenders API. func (client EmailClient) ListSenders(ctx context.Context, request ListSendersRequest) (response ListSendersResponse, err error) { @@ -1159,7 +1159,7 @@ func (client EmailClient) listSenders(ctx context.Context, request common.OCIReq // `compartmentId` for suppressions must be a tenancy OCID. The returned list // is sorted by creation time in descending order. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/ListSuppressions.go.html to see an example of how to use ListSuppressions API. func (client EmailClient) ListSuppressions(ctx context.Context, request ListSuppressionsRequest) (response ListSuppressionsResponse, err error) { @@ -1216,7 +1216,7 @@ func (client EmailClient) listSuppressions(ctx context.Context, request common.O // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client EmailClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -1273,7 +1273,7 @@ func (client EmailClient) listWorkRequestErrors(ctx context.Context, request com // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client EmailClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -1330,7 +1330,7 @@ func (client EmailClient) listWorkRequestLogs(ctx context.Context, request commo // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client EmailClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -1387,7 +1387,7 @@ func (client EmailClient) listWorkRequests(ctx context.Context, request common.O // UpdateDkim Modifies a DKIM. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/UpdateDkim.go.html to see an example of how to use UpdateDkim API. func (client EmailClient) UpdateDkim(ctx context.Context, request UpdateDkimRequest) (response UpdateDkimResponse, err error) { @@ -1444,7 +1444,7 @@ func (client EmailClient) updateDkim(ctx context.Context, request common.OCIRequ // UpdateEmailDomain Modifies a email domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/UpdateEmailDomain.go.html to see an example of how to use UpdateEmailDomain API. func (client EmailClient) UpdateEmailDomain(ctx context.Context, request UpdateEmailDomainRequest) (response UpdateEmailDomainResponse, err error) { @@ -1504,7 +1504,7 @@ func (client EmailClient) updateEmailDomain(ctx context.Context, request common. // include the full set of tags for the sender, partial updates are not permitted. // For more information about tagging, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/email/UpdateSender.go.html to see an example of how to use UpdateSender API. func (client EmailClient) UpdateSender(ctx context.Context, request UpdateSenderRequest) (response UpdateSenderResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/emwarehouse/emwarehouse_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/emwarehouse/emwarehouse_client.go index a3b77218279..97cf5ff2aa7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/emwarehouse/emwarehouse_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/emwarehouse/emwarehouse_client.go @@ -93,7 +93,7 @@ func (client *EmWarehouseClient) ConfigurationProvider() *common.ConfigurationPr // CancelWorkRequest Cancels the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. func (client EmWarehouseClient) CancelWorkRequest(ctx context.Context, request CancelWorkRequestRequest) (response CancelWorkRequestResponse, err error) { @@ -150,7 +150,7 @@ func (client EmWarehouseClient) cancelWorkRequest(ctx context.Context, request c // ChangeEmWarehouseCompartment Moves a EmWarehouse resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/ChangeEmWarehouseCompartment.go.html to see an example of how to use ChangeEmWarehouseCompartment API. func (client EmWarehouseClient) ChangeEmWarehouseCompartment(ctx context.Context, request ChangeEmWarehouseCompartmentRequest) (response ChangeEmWarehouseCompartmentResponse, err error) { @@ -212,7 +212,7 @@ func (client EmWarehouseClient) changeEmWarehouseCompartment(ctx context.Context // CreateEmWarehouse Creates a new EmWarehouse. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/CreateEmWarehouse.go.html to see an example of how to use CreateEmWarehouse API. func (client EmWarehouseClient) CreateEmWarehouse(ctx context.Context, request CreateEmWarehouseRequest) (response CreateEmWarehouseResponse, err error) { @@ -274,7 +274,7 @@ func (client EmWarehouseClient) createEmWarehouse(ctx context.Context, request c // DeleteEmWarehouse Deletes a EmWarehouse resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/DeleteEmWarehouse.go.html to see an example of how to use DeleteEmWarehouse API. func (client EmWarehouseClient) DeleteEmWarehouse(ctx context.Context, request DeleteEmWarehouseRequest) (response DeleteEmWarehouseResponse, err error) { @@ -331,7 +331,7 @@ func (client EmWarehouseClient) deleteEmWarehouse(ctx context.Context, request c // GetEmWarehouse Gets a EmWarehouse by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/GetEmWarehouse.go.html to see an example of how to use GetEmWarehouse API. func (client EmWarehouseClient) GetEmWarehouse(ctx context.Context, request GetEmWarehouseRequest) (response GetEmWarehouseResponse, err error) { @@ -388,7 +388,7 @@ func (client EmWarehouseClient) getEmWarehouse(ctx context.Context, request comm // GetEmWarehouseResourceUsage Gets a EmWarehouseResourceUsage by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/GetEmWarehouseResourceUsage.go.html to see an example of how to use GetEmWarehouseResourceUsage API. func (client EmWarehouseClient) GetEmWarehouseResourceUsage(ctx context.Context, request GetEmWarehouseResourceUsageRequest) (response GetEmWarehouseResourceUsageResponse, err error) { @@ -445,7 +445,7 @@ func (client EmWarehouseClient) getEmWarehouseResourceUsage(ctx context.Context, // GetWorkRequest Gets details of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client EmWarehouseClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -502,7 +502,7 @@ func (client EmWarehouseClient) getWorkRequest(ctx context.Context, request comm // ListEmWarehouses Returns a list of EmWarehouses. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/ListEmWarehouses.go.html to see an example of how to use ListEmWarehouses API. func (client EmWarehouseClient) ListEmWarehouses(ctx context.Context, request ListEmWarehousesRequest) (response ListEmWarehousesResponse, err error) { @@ -559,7 +559,7 @@ func (client EmWarehouseClient) listEmWarehouses(ctx context.Context, request co // ListEtlRuns Gets a list of runs of an EmWarehouseResource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/ListEtlRuns.go.html to see an example of how to use ListEtlRuns API. func (client EmWarehouseClient) ListEtlRuns(ctx context.Context, request ListEtlRunsRequest) (response ListEtlRunsResponse, err error) { @@ -616,7 +616,7 @@ func (client EmWarehouseClient) listEtlRuns(ctx context.Context, request common. // ListWorkRequestErrors Returns a (paginated) list of errors for the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client EmWarehouseClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -673,7 +673,7 @@ func (client EmWarehouseClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Returns a (paginated) list of logs for the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client EmWarehouseClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -730,7 +730,7 @@ func (client EmWarehouseClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client EmWarehouseClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -787,7 +787,7 @@ func (client EmWarehouseClient) listWorkRequests(ctx context.Context, request co // UpdateEmWarehouse Updates the EmWarehouse // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/emwarehouse/UpdateEmWarehouse.go.html to see an example of how to use UpdateEmWarehouse API. func (client EmWarehouseClient) UpdateEmWarehouse(ctx context.Context, request UpdateEmWarehouseRequest) (response UpdateEmWarehouseResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/events/create_faa_s_action_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/events/create_faa_s_action_details.go index 9a4c887e7fd..cd1fcb1f4c7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/events/create_faa_s_action_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/events/create_faa_s_action_details.go @@ -32,12 +32,12 @@ type CreateFaaSActionDetails struct { FunctionId *string `mandatory:"false" json:"functionId"` } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m CreateFaaSActionDetails) GetIsEnabled() *bool { return m.IsEnabled } -//GetDescription returns Description +// GetDescription returns Description func (m CreateFaaSActionDetails) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/events/create_notification_service_action_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/events/create_notification_service_action_details.go index 182f1db97fb..525e3fd4392 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/events/create_notification_service_action_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/events/create_notification_service_action_details.go @@ -32,12 +32,12 @@ type CreateNotificationServiceActionDetails struct { TopicId *string `mandatory:"false" json:"topicId"` } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m CreateNotificationServiceActionDetails) GetIsEnabled() *bool { return m.IsEnabled } -//GetDescription returns Description +// GetDescription returns Description func (m CreateNotificationServiceActionDetails) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/events/create_streaming_service_action_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/events/create_streaming_service_action_details.go index b5f74e956e0..6c509f1507c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/events/create_streaming_service_action_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/events/create_streaming_service_action_details.go @@ -32,12 +32,12 @@ type CreateStreamingServiceActionDetails struct { Description *string `mandatory:"false" json:"description"` } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m CreateStreamingServiceActionDetails) GetIsEnabled() *bool { return m.IsEnabled } -//GetDescription returns Description +// GetDescription returns Description func (m CreateStreamingServiceActionDetails) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/events/events_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/events/events_client.go index b40da44edfd..bd38af634e0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/events/events_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/events/events_client.go @@ -95,7 +95,7 @@ func (client *EventsClient) ConfigurationProvider() *common.ConfigurationProvide // ChangeRuleCompartment Moves a rule into a different compartment within the same tenancy. For information about moving // resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/events/ChangeRuleCompartment.go.html to see an example of how to use ChangeRuleCompartment API. func (client EventsClient) ChangeRuleCompartment(ctx context.Context, request ChangeRuleCompartmentRequest) (response ChangeRuleCompartmentResponse, err error) { @@ -157,7 +157,7 @@ func (client EventsClient) changeRuleCompartment(ctx context.Context, request co // CreateRule Creates a new rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/events/CreateRule.go.html to see an example of how to use CreateRule API. func (client EventsClient) CreateRule(ctx context.Context, request CreateRuleRequest) (response CreateRuleResponse, err error) { @@ -219,7 +219,7 @@ func (client EventsClient) createRule(ctx context.Context, request common.OCIReq // DeleteRule Deletes a rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/events/DeleteRule.go.html to see an example of how to use DeleteRule API. func (client EventsClient) DeleteRule(ctx context.Context, request DeleteRuleRequest) (response DeleteRuleResponse, err error) { @@ -276,7 +276,7 @@ func (client EventsClient) deleteRule(ctx context.Context, request common.OCIReq // GetRule Retrieves a rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/events/GetRule.go.html to see an example of how to use GetRule API. func (client EventsClient) GetRule(ctx context.Context, request GetRuleRequest) (response GetRuleResponse, err error) { @@ -333,7 +333,7 @@ func (client EventsClient) getRule(ctx context.Context, request common.OCIReques // ListRules Lists rules for this compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/events/ListRules.go.html to see an example of how to use ListRules API. func (client EventsClient) ListRules(ctx context.Context, request ListRulesRequest) (response ListRulesResponse, err error) { @@ -390,7 +390,7 @@ func (client EventsClient) listRules(ctx context.Context, request common.OCIRequ // UpdateRule Updates a rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/events/UpdateRule.go.html to see an example of how to use UpdateRule API. func (client EventsClient) UpdateRule(ctx context.Context, request UpdateRuleRequest) (response UpdateRuleResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/events/faa_s_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/events/faa_s_action.go index 1bf46b0b6df..df475e90f54 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/events/faa_s_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/events/faa_s_action.go @@ -41,27 +41,27 @@ type FaaSAction struct { LifecycleState ActionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m FaaSAction) GetId() *string { return m.Id } -//GetLifecycleMessage returns LifecycleMessage +// GetLifecycleMessage returns LifecycleMessage func (m FaaSAction) GetLifecycleMessage() *string { return m.LifecycleMessage } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m FaaSAction) GetLifecycleState() ActionLifecycleStateEnum { return m.LifecycleState } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m FaaSAction) GetIsEnabled() *bool { return m.IsEnabled } -//GetDescription returns Description +// GetDescription returns Description func (m FaaSAction) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/events/notification_service_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/events/notification_service_action.go index 863e99ce83b..f03363f552c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/events/notification_service_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/events/notification_service_action.go @@ -41,27 +41,27 @@ type NotificationServiceAction struct { LifecycleState ActionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m NotificationServiceAction) GetId() *string { return m.Id } -//GetLifecycleMessage returns LifecycleMessage +// GetLifecycleMessage returns LifecycleMessage func (m NotificationServiceAction) GetLifecycleMessage() *string { return m.LifecycleMessage } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m NotificationServiceAction) GetLifecycleState() ActionLifecycleStateEnum { return m.LifecycleState } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m NotificationServiceAction) GetIsEnabled() *bool { return m.IsEnabled } -//GetDescription returns Description +// GetDescription returns Description func (m NotificationServiceAction) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/events/streaming_service_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/events/streaming_service_action.go index 3392e0a38dc..d0bdaa3ac90 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/events/streaming_service_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/events/streaming_service_action.go @@ -41,27 +41,27 @@ type StreamingServiceAction struct { LifecycleState ActionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m StreamingServiceAction) GetId() *string { return m.Id } -//GetLifecycleMessage returns LifecycleMessage +// GetLifecycleMessage returns LifecycleMessage func (m StreamingServiceAction) GetLifecycleMessage() *string { return m.LifecycleMessage } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m StreamingServiceAction) GetLifecycleState() ActionLifecycleStateEnum { return m.LifecycleState } -//GetIsEnabled returns IsEnabled +// GetIsEnabled returns IsEnabled func (m StreamingServiceAction) GetIsEnabled() *bool { return m.IsEnabled } -//GetDescription returns Description +// GetDescription returns Description func (m StreamingServiceAction) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/create_ldap_bind_account_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/create_ldap_bind_account_details.go index 7d027ca9e2d..41d6e32fcb8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/create_ldap_bind_account_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/create_ldap_bind_account_details.go @@ -57,27 +57,27 @@ type CreateLdapBindAccountDetails struct { PasswordSecretVersion *int `mandatory:"false" json:"passwordSecretVersion"` } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m CreateLdapBindAccountDetails) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateLdapBindAccountDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateLdapBindAccountDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateLdapBindAccountDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateLdapBindAccountDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/export.go b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/export.go index c91155d8b0b..a6219b13991 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/export.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/export.go @@ -29,12 +29,14 @@ import ( // complete path element sequence of the second export resource. // // For example, the following are acceptable: -// * /example and /path -// * /example1 and /example2 -// * /example and /example1 +// - /example and /path +// - /example1 and /example2 +// - /example and /example1 +// // The following examples are not acceptable: -// * /example and /example/path -// * / and /example +// - /example and /example/path +// - / and /example +// // Paths may not end in a slash (/). No path element can be a period (.) // or two periods in sequence (..). All path elements must be 255 bytes or less. // No two non-'DELETED' export resources in the same export set can diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/filestorage_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/filestorage_client.go index db9bf9da7eb..697a91a7f67 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/filestorage_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/filestorage_client.go @@ -94,7 +94,7 @@ func (client *FileStorageClient) ConfigurationProvider() *common.ConfigurationPr // ChangeFileSystemCompartment Moves a file system and its associated snapshots into a different compartment within the same tenancy. For information about moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes) // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ChangeFileSystemCompartment.go.html to see an example of how to use ChangeFileSystemCompartment API. func (client FileStorageClient) ChangeFileSystemCompartment(ctx context.Context, request ChangeFileSystemCompartmentRequest) (response ChangeFileSystemCompartmentResponse, err error) { @@ -151,7 +151,7 @@ func (client FileStorageClient) changeFileSystemCompartment(ctx context.Context, // ChangeFilesystemSnapshotPolicyCompartment Moves a file system snapshot policy into a different compartment within the same tenancy. For information about moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ChangeFilesystemSnapshotPolicyCompartment.go.html to see an example of how to use ChangeFilesystemSnapshotPolicyCompartment API. func (client FileStorageClient) ChangeFilesystemSnapshotPolicyCompartment(ctx context.Context, request ChangeFilesystemSnapshotPolicyCompartmentRequest) (response ChangeFilesystemSnapshotPolicyCompartmentResponse, err error) { @@ -208,7 +208,7 @@ func (client FileStorageClient) changeFilesystemSnapshotPolicyCompartment(ctx co // ChangeMountTargetCompartment Moves a mount target and its associated export set or share set into a different compartment within the same tenancy. For information about moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes) // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ChangeMountTargetCompartment.go.html to see an example of how to use ChangeMountTargetCompartment API. func (client FileStorageClient) ChangeMountTargetCompartment(ctx context.Context, request ChangeMountTargetCompartmentRequest) (response ChangeMountTargetCompartmentResponse, err error) { @@ -267,7 +267,7 @@ func (client FileStorageClient) changeMountTargetCompartment(ctx context.Context // For information about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes) // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ChangeOutboundConnectorCompartment.go.html to see an example of how to use ChangeOutboundConnectorCompartment API. func (client FileStorageClient) ChangeOutboundConnectorCompartment(ctx context.Context, request ChangeOutboundConnectorCompartmentRequest) (response ChangeOutboundConnectorCompartmentResponse, err error) { @@ -325,7 +325,7 @@ func (client FileStorageClient) changeOutboundConnectorCompartment(ctx context.C // ChangeReplicationCompartment Moves a replication and its replication target into a different compartment within the same tenancy. // For information about moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ChangeReplicationCompartment.go.html to see an example of how to use ChangeReplicationCompartment API. func (client FileStorageClient) ChangeReplicationCompartment(ctx context.Context, request ChangeReplicationCompartmentRequest) (response ChangeReplicationCompartmentResponse, err error) { @@ -383,7 +383,7 @@ func (client FileStorageClient) changeReplicationCompartment(ctx context.Context // CreateExport Creates a new export in the specified export set, path, and // file system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/CreateExport.go.html to see an example of how to use CreateExport API. func (client FileStorageClient) CreateExport(ctx context.Context, request CreateExportRequest) (response CreateExportResponse, err error) { @@ -468,7 +468,7 @@ func (client FileStorageClient) createExport(ctx context.Context, request common // You can also retrieve a resource's OCID by using a List API operation on that resource // type or by viewing the resource in the Console. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/CreateFileSystem.go.html to see an example of how to use CreateFileSystem API. func (client FileStorageClient) CreateFileSystem(ctx context.Context, request CreateFileSystemRequest) (response CreateFileSystemResponse, err error) { @@ -533,7 +533,7 @@ func (client FileStorageClient) createFileSystem(ctx context.Context, request co // After you create a file system snapshot policy, you can associate it with // file systems. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/CreateFilesystemSnapshotPolicy.go.html to see an example of how to use CreateFilesystemSnapshotPolicy API. func (client FileStorageClient) CreateFilesystemSnapshotPolicy(ctx context.Context, request CreateFilesystemSnapshotPolicyRequest) (response CreateFilesystemSnapshotPolicyResponse, err error) { @@ -622,7 +622,7 @@ func (client FileStorageClient) createFilesystemSnapshotPolicy(ctx context.Conte // You can also retrieve a resource's OCID by using a List API operation on that resource // type, or by viewing the resource in the Console. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/CreateMountTarget.go.html to see an example of how to use CreateMountTarget API. func (client FileStorageClient) CreateMountTarget(ctx context.Context, request CreateMountTargetRequest) (response CreateMountTargetResponse, err error) { @@ -700,7 +700,7 @@ func (client FileStorageClient) createMountTarget(ctx context.Context, request c // You can also retrieve a resource's OCID by using a List API operation on that resource // type, or by viewing the resource in the Console. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/CreateOutboundConnector.go.html to see an example of how to use CreateOutboundConnector API. func (client FileStorageClient) CreateOutboundConnector(ctx context.Context, request CreateOutboundConnectorRequest) (response CreateOutboundConnectorResponse, err error) { @@ -785,7 +785,7 @@ func (client FileStorageClient) createOutboundConnector(ctx context.Context, req // You can also retrieve a resource's OCID by using a List API operation on that resource // type, or by viewing the resource in the Console. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/CreateReplication.go.html to see an example of how to use CreateReplication API. func (client FileStorageClient) CreateReplication(ctx context.Context, request CreateReplicationRequest) (response CreateReplicationResponse, err error) { @@ -848,7 +848,7 @@ func (client FileStorageClient) createReplication(ctx context.Context, request c // CreateSnapshot Creates a new snapshot of the specified file system. You // can access the snapshot at `.snapshot/`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/CreateSnapshot.go.html to see an example of how to use CreateSnapshot API. func (client FileStorageClient) CreateSnapshot(ctx context.Context, request CreateSnapshotRequest) (response CreateSnapshotResponse, err error) { @@ -910,7 +910,7 @@ func (client FileStorageClient) createSnapshot(ctx context.Context, request comm // DeleteExport Deletes the specified export. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/DeleteExport.go.html to see an example of how to use DeleteExport API. func (client FileStorageClient) DeleteExport(ctx context.Context, request DeleteExportRequest) (response DeleteExportResponse, err error) { @@ -969,7 +969,7 @@ func (client FileStorageClient) deleteExport(ctx context.Context, request common // verify that no remaining export resources still reference it. Deleting a // file system also deletes all of its snapshots. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/DeleteFileSystem.go.html to see an example of how to use DeleteFileSystem API. func (client FileStorageClient) DeleteFileSystem(ctx context.Context, request DeleteFileSystemRequest) (response DeleteFileSystemResponse, err error) { @@ -1026,7 +1026,7 @@ func (client FileStorageClient) deleteFileSystem(ctx context.Context, request co // DeleteFilesystemSnapshotPolicy Deletes the specified file system snapshot policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/DeleteFilesystemSnapshotPolicy.go.html to see an example of how to use DeleteFilesystemSnapshotPolicy API. func (client FileStorageClient) DeleteFilesystemSnapshotPolicy(ctx context.Context, request DeleteFilesystemSnapshotPolicyRequest) (response DeleteFilesystemSnapshotPolicyResponse, err error) { @@ -1084,7 +1084,7 @@ func (client FileStorageClient) deleteFilesystemSnapshotPolicy(ctx context.Conte // DeleteMountTarget Deletes the specified mount target. This operation also deletes the // mount target's VNICs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/DeleteMountTarget.go.html to see an example of how to use DeleteMountTarget API. func (client FileStorageClient) DeleteMountTarget(ctx context.Context, request DeleteMountTargetRequest) (response DeleteMountTargetResponse, err error) { @@ -1141,7 +1141,7 @@ func (client FileStorageClient) deleteMountTarget(ctx context.Context, request c // DeleteOutboundConnector Deletes the specified outbound connector. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/DeleteOutboundConnector.go.html to see an example of how to use DeleteOutboundConnector API. func (client FileStorageClient) DeleteOutboundConnector(ctx context.Context, request DeleteOutboundConnectorRequest) (response DeleteOutboundConnectorResponse, err error) { @@ -1198,7 +1198,7 @@ func (client FileStorageClient) deleteOutboundConnector(ctx context.Context, req // DeleteReplication Deletes the specified replication and the the associated replication target. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/DeleteReplication.go.html to see an example of how to use DeleteReplication API. func (client FileStorageClient) DeleteReplication(ctx context.Context, request DeleteReplicationRequest) (response DeleteReplicationResponse, err error) { @@ -1258,7 +1258,7 @@ func (client FileStorageClient) deleteReplication(ctx context.Context, request c // If there is any current delta being applied the delete operation is blocked until the current // delta has been completely applied. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/DeleteReplicationTarget.go.html to see an example of how to use DeleteReplicationTarget API. func (client FileStorageClient) DeleteReplicationTarget(ctx context.Context, request DeleteReplicationTargetRequest) (response DeleteReplicationTargetResponse, err error) { @@ -1315,7 +1315,7 @@ func (client FileStorageClient) deleteReplicationTarget(ctx context.Context, req // DeleteSnapshot Deletes the specified snapshot. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/DeleteSnapshot.go.html to see an example of how to use DeleteSnapshot API. func (client FileStorageClient) DeleteSnapshot(ctx context.Context, request DeleteSnapshotRequest) (response DeleteSnapshotResponse, err error) { @@ -1372,7 +1372,7 @@ func (client FileStorageClient) deleteSnapshot(ctx context.Context, request comm // EstimateReplication Provides estimates for replication created using specific file system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/EstimateReplication.go.html to see an example of how to use EstimateReplication API. func (client FileStorageClient) EstimateReplication(ctx context.Context, request EstimateReplicationRequest) (response EstimateReplicationResponse, err error) { @@ -1429,7 +1429,7 @@ func (client FileStorageClient) estimateReplication(ctx context.Context, request // GetExport Gets the specified export's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/GetExport.go.html to see an example of how to use GetExport API. func (client FileStorageClient) GetExport(ctx context.Context, request GetExportRequest) (response GetExportResponse, err error) { @@ -1486,7 +1486,7 @@ func (client FileStorageClient) getExport(ctx context.Context, request common.OC // GetExportSet Gets the specified export set's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/GetExportSet.go.html to see an example of how to use GetExportSet API. func (client FileStorageClient) GetExportSet(ctx context.Context, request GetExportSetRequest) (response GetExportSetResponse, err error) { @@ -1543,7 +1543,7 @@ func (client FileStorageClient) getExportSet(ctx context.Context, request common // GetFileSystem Gets the specified file system's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/GetFileSystem.go.html to see an example of how to use GetFileSystem API. func (client FileStorageClient) GetFileSystem(ctx context.Context, request GetFileSystemRequest) (response GetFileSystemResponse, err error) { @@ -1600,7 +1600,7 @@ func (client FileStorageClient) getFileSystem(ctx context.Context, request commo // GetFilesystemSnapshotPolicy Gets the specified file system snapshot policy's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/GetFilesystemSnapshotPolicy.go.html to see an example of how to use GetFilesystemSnapshotPolicy API. func (client FileStorageClient) GetFilesystemSnapshotPolicy(ctx context.Context, request GetFilesystemSnapshotPolicyRequest) (response GetFilesystemSnapshotPolicyResponse, err error) { @@ -1657,7 +1657,7 @@ func (client FileStorageClient) getFilesystemSnapshotPolicy(ctx context.Context, // GetMountTarget Gets the specified mount target's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/GetMountTarget.go.html to see an example of how to use GetMountTarget API. func (client FileStorageClient) GetMountTarget(ctx context.Context, request GetMountTargetRequest) (response GetMountTargetResponse, err error) { @@ -1714,7 +1714,7 @@ func (client FileStorageClient) getMountTarget(ctx context.Context, request comm // GetOutboundConnector Gets the specified outbound connector's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/GetOutboundConnector.go.html to see an example of how to use GetOutboundConnector API. func (client FileStorageClient) GetOutboundConnector(ctx context.Context, request GetOutboundConnectorRequest) (response GetOutboundConnectorResponse, err error) { @@ -1771,7 +1771,7 @@ func (client FileStorageClient) getOutboundConnector(ctx context.Context, reques // GetReplication Gets the specified replication's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/GetReplication.go.html to see an example of how to use GetReplication API. func (client FileStorageClient) GetReplication(ctx context.Context, request GetReplicationRequest) (response GetReplicationResponse, err error) { @@ -1828,7 +1828,7 @@ func (client FileStorageClient) getReplication(ctx context.Context, request comm // GetReplicationTarget Gets the specified replication target's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/GetReplicationTarget.go.html to see an example of how to use GetReplicationTarget API. func (client FileStorageClient) GetReplicationTarget(ctx context.Context, request GetReplicationTargetRequest) (response GetReplicationTargetResponse, err error) { @@ -1885,7 +1885,7 @@ func (client FileStorageClient) getReplicationTarget(ctx context.Context, reques // GetSnapshot Gets the specified snapshot's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/GetSnapshot.go.html to see an example of how to use GetSnapshot API. func (client FileStorageClient) GetSnapshot(ctx context.Context, request GetSnapshotRequest) (response GetSnapshotResponse, err error) { @@ -1942,7 +1942,7 @@ func (client FileStorageClient) getSnapshot(ctx context.Context, request common. // ListExportSets Lists the export set resources in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ListExportSets.go.html to see an example of how to use ListExportSets API. func (client FileStorageClient) ListExportSets(ctx context.Context, request ListExportSetsRequest) (response ListExportSetsResponse, err error) { @@ -2001,7 +2001,7 @@ func (client FileStorageClient) listExportSets(ctx context.Context, request comm // set. You must specify an export set ID, a file system ID, and // / or a compartment ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ListExports.go.html to see an example of how to use ListExports API. func (client FileStorageClient) ListExports(ctx context.Context, request ListExportsRequest) (response ListExportsResponse, err error) { @@ -2059,7 +2059,7 @@ func (client FileStorageClient) listExports(ctx context.Context, request common. // ListFileSystems Lists the file system resources in the specified compartment, or by the specified compartment and // file system snapshot policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ListFileSystems.go.html to see an example of how to use ListFileSystems API. func (client FileStorageClient) ListFileSystems(ctx context.Context, request ListFileSystemsRequest) (response ListFileSystemsResponse, err error) { @@ -2116,7 +2116,7 @@ func (client FileStorageClient) listFileSystems(ctx context.Context, request com // ListFilesystemSnapshotPolicies Lists file system snapshot policies in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ListFilesystemSnapshotPolicies.go.html to see an example of how to use ListFilesystemSnapshotPolicies API. func (client FileStorageClient) ListFilesystemSnapshotPolicies(ctx context.Context, request ListFilesystemSnapshotPoliciesRequest) (response ListFilesystemSnapshotPoliciesResponse, err error) { @@ -2173,7 +2173,7 @@ func (client FileStorageClient) listFilesystemSnapshotPolicies(ctx context.Conte // ListMountTargets Lists the mount target resources in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ListMountTargets.go.html to see an example of how to use ListMountTargets API. func (client FileStorageClient) ListMountTargets(ctx context.Context, request ListMountTargetsRequest) (response ListMountTargetsResponse, err error) { @@ -2246,7 +2246,7 @@ func (m *listoutboundconnectorsummary) UnmarshalPolymorphicJSON(data []byte) (in // ListOutboundConnectors Lists the outbound connector resources in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ListOutboundConnectors.go.html to see an example of how to use ListOutboundConnectors API. func (client FileStorageClient) ListOutboundConnectors(ctx context.Context, request ListOutboundConnectorsRequest) (response ListOutboundConnectorsResponse, err error) { @@ -2303,7 +2303,7 @@ func (client FileStorageClient) listOutboundConnectors(ctx context.Context, requ // ListReplicationTargets Lists the replication target resources in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ListReplicationTargets.go.html to see an example of how to use ListReplicationTargets API. func (client FileStorageClient) ListReplicationTargets(ctx context.Context, request ListReplicationTargetsRequest) (response ListReplicationTargetsResponse, err error) { @@ -2360,7 +2360,7 @@ func (client FileStorageClient) listReplicationTargets(ctx context.Context, requ // ListReplications Lists the replication resources in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ListReplications.go.html to see an example of how to use ListReplications API. func (client FileStorageClient) ListReplications(ctx context.Context, request ListReplicationsRequest) (response ListReplicationsResponse, err error) { @@ -2421,7 +2421,7 @@ func (client FileStorageClient) listReplications(ctx context.Context, request co // Users can only sort by time created when listing snapshots by file system snapshot policy ID and compartment ID // (sort by name is NOT supported for listing snapshots by policy and compartment). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ListSnapshots.go.html to see an example of how to use ListSnapshots API. func (client FileStorageClient) ListSnapshots(ctx context.Context, request ListSnapshotsRequest) (response ListSnapshotsResponse, err error) { @@ -2482,7 +2482,7 @@ func (client FileStorageClient) listSnapshots(ctx context.Context, request commo // If the policy is already paused, or in the INACTIVE state, you cannot pause it again. You can't pause a policy // that is in a DELETING, DELETED, FAILED, CREATING or INACTIVE state; attempts to pause a policy in these states result in a 409 conflict error. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/PauseFilesystemSnapshotPolicy.go.html to see an example of how to use PauseFilesystemSnapshotPolicy API. func (client FileStorageClient) PauseFilesystemSnapshotPolicy(ctx context.Context, request PauseFilesystemSnapshotPolicyRequest) (response PauseFilesystemSnapshotPolicyResponse, err error) { @@ -2542,7 +2542,7 @@ func (client FileStorageClient) pauseFilesystemSnapshotPolicy(ctx context.Contex // policy will have snapshots created and deleted according to the schedules defined in the policy. // If the policy is already in the ACTIVE state, you cannot unpause it. You can't unpause a policy that is in a DELETING, DELETED, FAILED, CREATING, or ACTIVE state; attempts to unpause a policy in these states result in a 409 conflict error. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/UnpauseFilesystemSnapshotPolicy.go.html to see an example of how to use UnpauseFilesystemSnapshotPolicy API. func (client FileStorageClient) UnpauseFilesystemSnapshotPolicy(ctx context.Context, request UnpauseFilesystemSnapshotPolicyRequest) (response UnpauseFilesystemSnapshotPolicyResponse, err error) { @@ -2599,7 +2599,7 @@ func (client FileStorageClient) unpauseFilesystemSnapshotPolicy(ctx context.Cont // UpdateExport Updates the specified export's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/UpdateExport.go.html to see an example of how to use UpdateExport API. func (client FileStorageClient) UpdateExport(ctx context.Context, request UpdateExportRequest) (response UpdateExportResponse, err error) { @@ -2656,7 +2656,7 @@ func (client FileStorageClient) updateExport(ctx context.Context, request common // UpdateExportSet Updates the specified export set's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/UpdateExportSet.go.html to see an example of how to use UpdateExportSet API. func (client FileStorageClient) UpdateExportSet(ctx context.Context, request UpdateExportSetRequest) (response UpdateExportSetResponse, err error) { @@ -2714,7 +2714,7 @@ func (client FileStorageClient) updateExportSet(ctx context.Context, request com // UpdateFileSystem Updates the specified file system's information. // You can use this operation to rename a file system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/UpdateFileSystem.go.html to see an example of how to use UpdateFileSystem API. func (client FileStorageClient) UpdateFileSystem(ctx context.Context, request UpdateFileSystemRequest) (response UpdateFileSystemResponse, err error) { @@ -2771,7 +2771,7 @@ func (client FileStorageClient) updateFileSystem(ctx context.Context, request co // UpdateFilesystemSnapshotPolicy Updates the specified file system snapshot policy's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/UpdateFilesystemSnapshotPolicy.go.html to see an example of how to use UpdateFilesystemSnapshotPolicy API. func (client FileStorageClient) UpdateFilesystemSnapshotPolicy(ctx context.Context, request UpdateFilesystemSnapshotPolicyRequest) (response UpdateFilesystemSnapshotPolicyResponse, err error) { @@ -2828,7 +2828,7 @@ func (client FileStorageClient) updateFilesystemSnapshotPolicy(ctx context.Conte // UpdateMountTarget Updates the specified mount target's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/UpdateMountTarget.go.html to see an example of how to use UpdateMountTarget API. func (client FileStorageClient) UpdateMountTarget(ctx context.Context, request UpdateMountTargetRequest) (response UpdateMountTargetResponse, err error) { @@ -2885,7 +2885,7 @@ func (client FileStorageClient) updateMountTarget(ctx context.Context, request c // UpdateOutboundConnector Updates the specified outbound connector's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/UpdateOutboundConnector.go.html to see an example of how to use UpdateOutboundConnector API. func (client FileStorageClient) UpdateOutboundConnector(ctx context.Context, request UpdateOutboundConnectorRequest) (response UpdateOutboundConnectorResponse, err error) { @@ -2942,7 +2942,7 @@ func (client FileStorageClient) updateOutboundConnector(ctx context.Context, req // UpdateReplication Updates the information for the specified replication and its associated replication target. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/UpdateReplication.go.html to see an example of how to use UpdateReplication API. func (client FileStorageClient) UpdateReplication(ctx context.Context, request UpdateReplicationRequest) (response UpdateReplicationResponse, err error) { @@ -2999,7 +2999,7 @@ func (client FileStorageClient) updateReplication(ctx context.Context, request c // UpdateSnapshot Updates the specified snapshot's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/UpdateSnapshot.go.html to see an example of how to use UpdateSnapshot API. func (client FileStorageClient) UpdateSnapshot(ctx context.Context, request UpdateSnapshotRequest) (response UpdateSnapshotResponse, err error) { @@ -3058,7 +3058,7 @@ func (client FileStorageClient) updateSnapshot(ctx context.Context, request comm // the mount target passed in the request. The keytabs are deserialized, the contents are validated for compatibility // and the principal, key version number and encryption type of each entry is provided as part of the response. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/filestorage/ValidateKeyTabs.go.html to see an example of how to use ValidateKeyTabs API. func (client FileStorageClient) ValidateKeyTabs(ctx context.Context, request ValidateKeyTabsRequest) (response ValidateKeyTabsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/ldap_bind_account.go b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/ldap_bind_account.go index abf5b1fd65c..0e0cff48e02 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/ldap_bind_account.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/ldap_bind_account.go @@ -68,42 +68,42 @@ type LdapBindAccount struct { LifecycleState OutboundConnectorLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m LdapBindAccount) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m LdapBindAccount) GetCompartmentId() *string { return m.CompartmentId } -//GetId returns Id +// GetId returns Id func (m LdapBindAccount) GetId() *string { return m.Id } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m LdapBindAccount) GetLifecycleState() OutboundConnectorLifecycleStateEnum { return m.LifecycleState } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m LdapBindAccount) GetDisplayName() *string { return m.DisplayName } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m LdapBindAccount) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m LdapBindAccount) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m LdapBindAccount) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/ldap_bind_account_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/ldap_bind_account_summary.go index 1ba610c09bf..f822706e5fe 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/ldap_bind_account_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/filestorage/ldap_bind_account_summary.go @@ -62,42 +62,42 @@ type LdapBindAccountSummary struct { LifecycleState OutboundConnectorSummaryLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetAvailabilityDomain returns AvailabilityDomain +// GetAvailabilityDomain returns AvailabilityDomain func (m LdapBindAccountSummary) GetAvailabilityDomain() *string { return m.AvailabilityDomain } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m LdapBindAccountSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetId returns Id +// GetId returns Id func (m LdapBindAccountSummary) GetId() *string { return m.Id } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m LdapBindAccountSummary) GetLifecycleState() OutboundConnectorSummaryLifecycleStateEnum { return m.LifecycleState } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m LdapBindAccountSummary) GetDisplayName() *string { return m.DisplayName } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m LdapBindAccountSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m LdapBindAccountSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m LdapBindAccountSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/functions/functions_functionsinvoke_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/functions/functions_functionsinvoke_client.go index 76b96bbca0e..b101c4b7381 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/functions/functions_functionsinvoke_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/functions/functions_functionsinvoke_client.go @@ -81,7 +81,7 @@ func (client *FunctionsInvokeClient) ConfigurationProvider() *common.Configurati // InvokeFunction Invokes a function // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/InvokeFunction.go.html to see an example of how to use InvokeFunction API. func (client FunctionsInvokeClient) InvokeFunction(ctx context.Context, request InvokeFunctionRequest) (response InvokeFunctionResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/functions/functions_functionsmanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/functions/functions_functionsmanagement_client.go index 7d5696605d1..c30ffec158a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/functions/functions_functionsmanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/functions/functions_functionsmanagement_client.go @@ -94,7 +94,7 @@ func (client *FunctionsManagementClient) ConfigurationProvider() *common.Configu // ChangeApplicationCompartment Moves an application into a different compartment within the same tenancy. // For information about moving resources between compartments, see Moving Resources Between Compartments (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/ChangeApplicationCompartment.go.html to see an example of how to use ChangeApplicationCompartment API. // A default retry strategy applies to this operation ChangeApplicationCompartment() @@ -152,7 +152,7 @@ func (client FunctionsManagementClient) changeApplicationCompartment(ctx context // CreateApplication Creates a new application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/CreateApplication.go.html to see an example of how to use CreateApplication API. // A default retry strategy applies to this operation CreateApplication() @@ -210,7 +210,7 @@ func (client FunctionsManagementClient) createApplication(ctx context.Context, r // CreateFunction Creates a new function. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/CreateFunction.go.html to see an example of how to use CreateFunction API. // A default retry strategy applies to this operation CreateFunction() @@ -268,7 +268,7 @@ func (client FunctionsManagementClient) createFunction(ctx context.Context, requ // DeleteApplication Deletes an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/DeleteApplication.go.html to see an example of how to use DeleteApplication API. // A default retry strategy applies to this operation DeleteApplication() @@ -326,7 +326,7 @@ func (client FunctionsManagementClient) deleteApplication(ctx context.Context, r // DeleteFunction Deletes a function. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/DeleteFunction.go.html to see an example of how to use DeleteFunction API. // A default retry strategy applies to this operation DeleteFunction() @@ -384,7 +384,7 @@ func (client FunctionsManagementClient) deleteFunction(ctx context.Context, requ // GetApplication Retrieves an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/GetApplication.go.html to see an example of how to use GetApplication API. // A default retry strategy applies to this operation GetApplication() @@ -442,7 +442,7 @@ func (client FunctionsManagementClient) getApplication(ctx context.Context, requ // GetFunction Retrieves a function. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/GetFunction.go.html to see an example of how to use GetFunction API. // A default retry strategy applies to this operation GetFunction() @@ -500,7 +500,7 @@ func (client FunctionsManagementClient) getFunction(ctx context.Context, request // GetPbfListing Fetches a Pre-built Function(PBF) Listing. Returns a PbfListing response model. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/GetPbfListing.go.html to see an example of how to use GetPbfListing API. // A default retry strategy applies to this operation GetPbfListing() @@ -558,7 +558,7 @@ func (client FunctionsManagementClient) getPbfListing(ctx context.Context, reque // GetPbfListingVersion Gets a PbfListingVersion by identifier for a PbfListing. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/GetPbfListingVersion.go.html to see an example of how to use GetPbfListingVersion API. // A default retry strategy applies to this operation GetPbfListingVersion() @@ -616,7 +616,7 @@ func (client FunctionsManagementClient) getPbfListingVersion(ctx context.Context // ListApplications Lists applications for a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/ListApplications.go.html to see an example of how to use ListApplications API. // A default retry strategy applies to this operation ListApplications() @@ -674,7 +674,7 @@ func (client FunctionsManagementClient) listApplications(ctx context.Context, re // ListFunctions Lists functions for an application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/ListFunctions.go.html to see an example of how to use ListFunctions API. // A default retry strategy applies to this operation ListFunctions() @@ -735,7 +735,7 @@ func (client FunctionsManagementClient) listFunctions(ctx context.Context, reque // Note that the PbfListingIdentifier must be provided as a query parameter, otherwise an exception shall // be thrown. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/ListPbfListingVersions.go.html to see an example of how to use ListPbfListingVersions API. // A default retry strategy applies to this operation ListPbfListingVersions() @@ -794,7 +794,7 @@ func (client FunctionsManagementClient) listPbfListingVersions(ctx context.Conte // ListPbfListings Fetches a wrapped list of all Pre-built Function(PBF) Listings. Returns a PbfListingCollection containing // an array of PbfListingSummary response models. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/ListPbfListings.go.html to see an example of how to use ListPbfListings API. // A default retry strategy applies to this operation ListPbfListings() @@ -852,7 +852,7 @@ func (client FunctionsManagementClient) listPbfListings(ctx context.Context, req // ListTriggers Returns a list of Triggers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/ListTriggers.go.html to see an example of how to use ListTriggers API. // A default retry strategy applies to this operation ListTriggers() @@ -910,7 +910,7 @@ func (client FunctionsManagementClient) listTriggers(ctx context.Context, reques // UpdateApplication Modifies an application // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/UpdateApplication.go.html to see an example of how to use UpdateApplication API. // A default retry strategy applies to this operation UpdateApplication() @@ -968,7 +968,7 @@ func (client FunctionsManagementClient) updateApplication(ctx context.Context, r // UpdateFunction Modifies a function // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/functions/UpdateFunction.go.html to see an example of how to use UpdateFunction API. // A default retry strategy applies to this operation UpdateFunction() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/fusionapps_fusionapplications_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/fusionapps_fusionapplications_client.go index 8cf1f08173b..454cb84c107 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/fusionapps_fusionapplications_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/fusionapps_fusionapplications_client.go @@ -94,7 +94,7 @@ func (client *FusionApplicationsClient) ConfigurationProvider() *common.Configur // ChangeFusionEnvironmentCompartment Moves a FusionEnvironment into a different compartment. When provided, If-Match is checked against ETag // values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ChangeFusionEnvironmentCompartment.go.html to see an example of how to use ChangeFusionEnvironmentCompartment API. // A default retry strategy applies to this operation ChangeFusionEnvironmentCompartment() @@ -158,7 +158,7 @@ func (client FusionApplicationsClient) changeFusionEnvironmentCompartment(ctx co // ChangeFusionEnvironmentFamilyCompartment Moves a FusionEnvironmentFamily into a different compartment. When provided, If-Match is checked against ETag // values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ChangeFusionEnvironmentFamilyCompartment.go.html to see an example of how to use ChangeFusionEnvironmentFamilyCompartment API. // A default retry strategy applies to this operation ChangeFusionEnvironmentFamilyCompartment() @@ -221,7 +221,7 @@ func (client FusionApplicationsClient) changeFusionEnvironmentFamilyCompartment( // CreateDataMaskingActivity Creates a new DataMaskingActivity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/CreateDataMaskingActivity.go.html to see an example of how to use CreateDataMaskingActivity API. // A default retry strategy applies to this operation CreateDataMaskingActivity() @@ -284,7 +284,7 @@ func (client FusionApplicationsClient) createDataMaskingActivity(ctx context.Con // CreateFusionEnvironment Creates a new FusionEnvironment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/CreateFusionEnvironment.go.html to see an example of how to use CreateFusionEnvironment API. // A default retry strategy applies to this operation CreateFusionEnvironment() @@ -347,7 +347,7 @@ func (client FusionApplicationsClient) createFusionEnvironment(ctx context.Conte // CreateFusionEnvironmentAdminUser Create a FusionEnvironment admin user // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/CreateFusionEnvironmentAdminUser.go.html to see an example of how to use CreateFusionEnvironmentAdminUser API. // A default retry strategy applies to this operation CreateFusionEnvironmentAdminUser() @@ -410,7 +410,7 @@ func (client FusionApplicationsClient) createFusionEnvironmentAdminUser(ctx cont // CreateFusionEnvironmentFamily Creates a new FusionEnvironmentFamily. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/CreateFusionEnvironmentFamily.go.html to see an example of how to use CreateFusionEnvironmentFamily API. // A default retry strategy applies to this operation CreateFusionEnvironmentFamily() @@ -473,7 +473,7 @@ func (client FusionApplicationsClient) createFusionEnvironmentFamily(ctx context // CreateRefreshActivity Creates a new RefreshActivity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/CreateRefreshActivity.go.html to see an example of how to use CreateRefreshActivity API. // A default retry strategy applies to this operation CreateRefreshActivity() @@ -536,7 +536,7 @@ func (client FusionApplicationsClient) createRefreshActivity(ctx context.Context // CreateServiceAttachment Attaches a service instance to the fusion pod. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/CreateServiceAttachment.go.html to see an example of how to use CreateServiceAttachment API. // A default retry strategy applies to this operation CreateServiceAttachment() @@ -599,7 +599,7 @@ func (client FusionApplicationsClient) createServiceAttachment(ctx context.Conte // DeleteFusionEnvironment Deletes the Fusion environment identified by it's OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/DeleteFusionEnvironment.go.html to see an example of how to use DeleteFusionEnvironment API. // A default retry strategy applies to this operation DeleteFusionEnvironment() @@ -657,7 +657,7 @@ func (client FusionApplicationsClient) deleteFusionEnvironment(ctx context.Conte // DeleteFusionEnvironmentAdminUser Deletes the FusionEnvironment administrator user identified by the username. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/DeleteFusionEnvironmentAdminUser.go.html to see an example of how to use DeleteFusionEnvironmentAdminUser API. // A default retry strategy applies to this operation DeleteFusionEnvironmentAdminUser() @@ -715,7 +715,7 @@ func (client FusionApplicationsClient) deleteFusionEnvironmentAdminUser(ctx cont // DeleteFusionEnvironmentFamily Deletes a FusionEnvironmentFamily resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/DeleteFusionEnvironmentFamily.go.html to see an example of how to use DeleteFusionEnvironmentFamily API. // A default retry strategy applies to this operation DeleteFusionEnvironmentFamily() @@ -773,7 +773,7 @@ func (client FusionApplicationsClient) deleteFusionEnvironmentFamily(ctx context // DeleteRefreshActivity Deletes a scheduled RefreshActivity resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/DeleteRefreshActivity.go.html to see an example of how to use DeleteRefreshActivity API. // A default retry strategy applies to this operation DeleteRefreshActivity() @@ -831,7 +831,7 @@ func (client FusionApplicationsClient) deleteRefreshActivity(ctx context.Context // DeleteServiceAttachment Delete a service attachment by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/DeleteServiceAttachment.go.html to see an example of how to use DeleteServiceAttachment API. // A default retry strategy applies to this operation DeleteServiceAttachment() @@ -889,7 +889,7 @@ func (client FusionApplicationsClient) deleteServiceAttachment(ctx context.Conte // GetDataMaskingActivity Gets a DataMaskingActivity by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetDataMaskingActivity.go.html to see an example of how to use GetDataMaskingActivity API. // A default retry strategy applies to this operation GetDataMaskingActivity() @@ -947,7 +947,7 @@ func (client FusionApplicationsClient) getDataMaskingActivity(ctx context.Contex // GetFusionEnvironment Gets a FusionEnvironment by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetFusionEnvironment.go.html to see an example of how to use GetFusionEnvironment API. // A default retry strategy applies to this operation GetFusionEnvironment() @@ -1005,7 +1005,7 @@ func (client FusionApplicationsClient) getFusionEnvironment(ctx context.Context, // GetFusionEnvironmentFamily Retrieves a fusion environment family identified by its OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetFusionEnvironmentFamily.go.html to see an example of how to use GetFusionEnvironmentFamily API. // A default retry strategy applies to this operation GetFusionEnvironmentFamily() @@ -1063,7 +1063,7 @@ func (client FusionApplicationsClient) getFusionEnvironmentFamily(ctx context.Co // GetFusionEnvironmentFamilyLimitsAndUsage Gets the number of environments (usage) of each type in the fusion environment family, as well as the limit that's allowed to be created based on the group's associated subscriptions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetFusionEnvironmentFamilyLimitsAndUsage.go.html to see an example of how to use GetFusionEnvironmentFamilyLimitsAndUsage API. // A default retry strategy applies to this operation GetFusionEnvironmentFamilyLimitsAndUsage() @@ -1121,7 +1121,7 @@ func (client FusionApplicationsClient) getFusionEnvironmentFamilyLimitsAndUsage( // GetFusionEnvironmentFamilySubscriptionDetail Gets the subscription details of an fusion environment family. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetFusionEnvironmentFamilySubscriptionDetail.go.html to see an example of how to use GetFusionEnvironmentFamilySubscriptionDetail API. // A default retry strategy applies to this operation GetFusionEnvironmentFamilySubscriptionDetail() @@ -1179,7 +1179,7 @@ func (client FusionApplicationsClient) getFusionEnvironmentFamilySubscriptionDet // GetFusionEnvironmentStatus Gets the status of a Fusion environment identified by its OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetFusionEnvironmentStatus.go.html to see an example of how to use GetFusionEnvironmentStatus API. // A default retry strategy applies to this operation GetFusionEnvironmentStatus() @@ -1237,7 +1237,7 @@ func (client FusionApplicationsClient) getFusionEnvironmentStatus(ctx context.Co // GetRefreshActivity Gets a RefreshActivity by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetRefreshActivity.go.html to see an example of how to use GetRefreshActivity API. // A default retry strategy applies to this operation GetRefreshActivity() @@ -1295,7 +1295,7 @@ func (client FusionApplicationsClient) getRefreshActivity(ctx context.Context, r // GetScheduledActivity Gets a ScheduledActivity by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetScheduledActivity.go.html to see an example of how to use GetScheduledActivity API. // A default retry strategy applies to this operation GetScheduledActivity() @@ -1353,7 +1353,7 @@ func (client FusionApplicationsClient) getScheduledActivity(ctx context.Context, // GetServiceAttachment Gets a Service Attachment by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetServiceAttachment.go.html to see an example of how to use GetServiceAttachment API. // A default retry strategy applies to this operation GetServiceAttachment() @@ -1411,7 +1411,7 @@ func (client FusionApplicationsClient) getServiceAttachment(ctx context.Context, // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1469,7 +1469,7 @@ func (client FusionApplicationsClient) getWorkRequest(ctx context.Context, reque // ListAdminUsers List all FusionEnvironment admin users // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListAdminUsers.go.html to see an example of how to use ListAdminUsers API. // A default retry strategy applies to this operation ListAdminUsers() @@ -1527,7 +1527,7 @@ func (client FusionApplicationsClient) listAdminUsers(ctx context.Context, reque // ListDataMaskingActivities Returns a list of DataMaskingActivities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListDataMaskingActivities.go.html to see an example of how to use ListDataMaskingActivities API. // A default retry strategy applies to this operation ListDataMaskingActivities() @@ -1585,7 +1585,7 @@ func (client FusionApplicationsClient) listDataMaskingActivities(ctx context.Con // ListFusionEnvironmentFamilies Returns a list of FusionEnvironmentFamilies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListFusionEnvironmentFamilies.go.html to see an example of how to use ListFusionEnvironmentFamilies API. // A default retry strategy applies to this operation ListFusionEnvironmentFamilies() @@ -1643,7 +1643,7 @@ func (client FusionApplicationsClient) listFusionEnvironmentFamilies(ctx context // ListFusionEnvironments Returns a list of FusionEnvironments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListFusionEnvironments.go.html to see an example of how to use ListFusionEnvironments API. // A default retry strategy applies to this operation ListFusionEnvironments() @@ -1701,7 +1701,7 @@ func (client FusionApplicationsClient) listFusionEnvironments(ctx context.Contex // ListRefreshActivities Returns a list of RefreshActivities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListRefreshActivities.go.html to see an example of how to use ListRefreshActivities API. // A default retry strategy applies to this operation ListRefreshActivities() @@ -1759,7 +1759,7 @@ func (client FusionApplicationsClient) listRefreshActivities(ctx context.Context // ListScheduledActivities Returns a list of ScheduledActivities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListScheduledActivities.go.html to see an example of how to use ListScheduledActivities API. // A default retry strategy applies to this operation ListScheduledActivities() @@ -1817,7 +1817,7 @@ func (client FusionApplicationsClient) listScheduledActivities(ctx context.Conte // ListServiceAttachments Returns a list of service attachments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListServiceAttachments.go.html to see an example of how to use ListServiceAttachments API. // A default retry strategy applies to this operation ListServiceAttachments() @@ -1875,7 +1875,7 @@ func (client FusionApplicationsClient) listServiceAttachments(ctx context.Contex // ListTimeAvailableForRefreshes Gets available refresh time for this fusion environment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListTimeAvailableForRefreshes.go.html to see an example of how to use ListTimeAvailableForRefreshes API. // A default retry strategy applies to this operation ListTimeAvailableForRefreshes() @@ -1933,7 +1933,7 @@ func (client FusionApplicationsClient) listTimeAvailableForRefreshes(ctx context // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1991,7 +1991,7 @@ func (client FusionApplicationsClient) listWorkRequestErrors(ctx context.Context // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -2049,7 +2049,7 @@ func (client FusionApplicationsClient) listWorkRequestLogs(ctx context.Context, // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2107,7 +2107,7 @@ func (client FusionApplicationsClient) listWorkRequests(ctx context.Context, req // ResetFusionEnvironmentPassword Resets the password of the Fusion Environment Administrator. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/ResetFusionEnvironmentPassword.go.html to see an example of how to use ResetFusionEnvironmentPassword API. // A default retry strategy applies to this operation ResetFusionEnvironmentPassword() @@ -2170,7 +2170,7 @@ func (client FusionApplicationsClient) resetFusionEnvironmentPassword(ctx contex // UpdateFusionEnvironment Updates the FusionEnvironment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/UpdateFusionEnvironment.go.html to see an example of how to use UpdateFusionEnvironment API. // A default retry strategy applies to this operation UpdateFusionEnvironment() @@ -2228,7 +2228,7 @@ func (client FusionApplicationsClient) updateFusionEnvironment(ctx context.Conte // UpdateFusionEnvironmentFamily Updates the FusionEnvironmentFamily // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/UpdateFusionEnvironmentFamily.go.html to see an example of how to use UpdateFusionEnvironmentFamily API. // A default retry strategy applies to this operation UpdateFusionEnvironmentFamily() @@ -2286,7 +2286,7 @@ func (client FusionApplicationsClient) updateFusionEnvironmentFamily(ctx context // UpdateRefreshActivity Updates a scheduled RefreshActivity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/UpdateRefreshActivity.go.html to see an example of how to use UpdateRefreshActivity API. // A default retry strategy applies to this operation UpdateRefreshActivity() @@ -2344,7 +2344,7 @@ func (client FusionApplicationsClient) updateRefreshActivity(ctx context.Context // VerifyServiceAttachment Verify whether a service instance can be attached to the fusion pod // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/fusionapps/VerifyServiceAttachment.go.html to see an example of how to use VerifyServiceAttachment API. // A default retry strategy applies to this operation VerifyServiceAttachment() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/patch_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/patch_action.go index 268adfcdbd1..953a3f156fc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/patch_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/patch_action.go @@ -38,17 +38,17 @@ type PatchAction struct { State ActionStateEnum `mandatory:"false" json:"state,omitempty"` } -//GetReferenceKey returns ReferenceKey +// GetReferenceKey returns ReferenceKey func (m PatchAction) GetReferenceKey() *string { return m.ReferenceKey } -//GetState returns State +// GetState returns State func (m PatchAction) GetState() ActionStateEnum { return m.State } -//GetDescription returns Description +// GetDescription returns Description func (m PatchAction) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/upgrade_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/upgrade_action.go index bcf604a1993..abe2c23dca6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/upgrade_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/upgrade_action.go @@ -35,17 +35,17 @@ type UpgradeAction struct { State ActionStateEnum `mandatory:"false" json:"state,omitempty"` } -//GetReferenceKey returns ReferenceKey +// GetReferenceKey returns ReferenceKey func (m UpgradeAction) GetReferenceKey() *string { return m.ReferenceKey } -//GetState returns State +// GetState returns State func (m UpgradeAction) GetState() ActionStateEnum { return m.State } -//GetDescription returns Description +// GetDescription returns Description func (m UpgradeAction) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/vertex_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/vertex_action.go index 87ee736ffc3..9cb1fd83bfc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/vertex_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/fusionapps/vertex_action.go @@ -32,17 +32,17 @@ type VertexAction struct { State ActionStateEnum `mandatory:"false" json:"state,omitempty"` } -//GetReferenceKey returns ReferenceKey +// GetReferenceKey returns ReferenceKey func (m VertexAction) GetReferenceKey() *string { return m.ReferenceKey } -//GetState returns State +// GetState returns State func (m VertexAction) GetState() ActionStateEnum { return m.State } -//GetDescription returns Description +// GetDescription returns Description func (m VertexAction) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/genericartifactscontent/genericartifactscontent_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/genericartifactscontent/genericartifactscontent_client.go index a452354ce46..cd82ef5cd37 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/genericartifactscontent/genericartifactscontent_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/genericartifactscontent/genericartifactscontent_client.go @@ -94,7 +94,7 @@ func (client *GenericArtifactsContentClient) ConfigurationProvider() *common.Con // GetGenericArtifactContent Gets the specified artifact's content. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/genericartifactscontent/GetGenericArtifactContent.go.html to see an example of how to use GetGenericArtifactContent API. func (client GenericArtifactsContentClient) GetGenericArtifactContent(ctx context.Context, request GetGenericArtifactContentRequest) (response GetGenericArtifactContentResponse, err error) { @@ -150,7 +150,7 @@ func (client GenericArtifactsContentClient) getGenericArtifactContent(ctx contex // GetGenericArtifactContentByPath Gets the content of an artifact with a specified `artifactPath` and `version`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/genericartifactscontent/GetGenericArtifactContentByPath.go.html to see an example of how to use GetGenericArtifactContentByPath API. func (client GenericArtifactsContentClient) GetGenericArtifactContentByPath(ctx context.Context, request GetGenericArtifactContentByPathRequest) (response GetGenericArtifactContentByPathResponse, err error) { @@ -206,7 +206,7 @@ func (client GenericArtifactsContentClient) getGenericArtifactContentByPath(ctx // PutGenericArtifactContentByPath Uploads an artifact. Provide `artifactPath`, `version` and content. Avoid entering confidential information when you define the path and version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/genericartifactscontent/PutGenericArtifactContentByPath.go.html to see an example of how to use PutGenericArtifactContentByPath API. func (client GenericArtifactsContentClient) PutGenericArtifactContentByPath(ctx context.Context, request PutGenericArtifactContentByPathRequest) (response PutGenericArtifactContentByPathResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/amazon_s3_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/amazon_s3_connection.go index 2aad15c3830..bcb6032fd3f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/amazon_s3_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/amazon_s3_connection.go @@ -89,82 +89,82 @@ type AmazonS3Connection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m AmazonS3Connection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AmazonS3Connection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m AmazonS3Connection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AmazonS3Connection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AmazonS3Connection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AmazonS3Connection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AmazonS3Connection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AmazonS3Connection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m AmazonS3Connection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AmazonS3Connection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AmazonS3Connection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m AmazonS3Connection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m AmazonS3Connection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m AmazonS3Connection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m AmazonS3Connection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m AmazonS3Connection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/amazon_s3_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/amazon_s3_connection_summary.go index e5a2bf76b22..9c5f55202bb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/amazon_s3_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/amazon_s3_connection_summary.go @@ -89,82 +89,82 @@ type AmazonS3ConnectionSummary struct { TechnologyType AmazonS3ConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetId returns Id +// GetId returns Id func (m AmazonS3ConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AmazonS3ConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m AmazonS3ConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AmazonS3ConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AmazonS3ConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AmazonS3ConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AmazonS3ConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AmazonS3ConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m AmazonS3ConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AmazonS3ConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AmazonS3ConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m AmazonS3ConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m AmazonS3ConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m AmazonS3ConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m AmazonS3ConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m AmazonS3ConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_data_lake_storage_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_data_lake_storage_connection.go index a719966865e..86035e210cd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_data_lake_storage_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_data_lake_storage_connection.go @@ -103,82 +103,82 @@ type AzureDataLakeStorageConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m AzureDataLakeStorageConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AzureDataLakeStorageConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m AzureDataLakeStorageConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AzureDataLakeStorageConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AzureDataLakeStorageConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AzureDataLakeStorageConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AzureDataLakeStorageConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AzureDataLakeStorageConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m AzureDataLakeStorageConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AzureDataLakeStorageConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AzureDataLakeStorageConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m AzureDataLakeStorageConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m AzureDataLakeStorageConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m AzureDataLakeStorageConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m AzureDataLakeStorageConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m AzureDataLakeStorageConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_data_lake_storage_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_data_lake_storage_connection_summary.go index 0ffc35381d2..a6ef72f09a0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_data_lake_storage_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_data_lake_storage_connection_summary.go @@ -103,82 +103,82 @@ type AzureDataLakeStorageConnectionSummary struct { AuthenticationType AzureDataLakeStorageConnectionAuthenticationTypeEnum `mandatory:"true" json:"authenticationType"` } -//GetId returns Id +// GetId returns Id func (m AzureDataLakeStorageConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AzureDataLakeStorageConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m AzureDataLakeStorageConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AzureDataLakeStorageConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AzureDataLakeStorageConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AzureDataLakeStorageConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AzureDataLakeStorageConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AzureDataLakeStorageConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m AzureDataLakeStorageConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AzureDataLakeStorageConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AzureDataLakeStorageConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m AzureDataLakeStorageConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m AzureDataLakeStorageConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m AzureDataLakeStorageConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m AzureDataLakeStorageConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m AzureDataLakeStorageConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_synapse_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_synapse_connection.go index 2d00243dd51..f6f62541291 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_synapse_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_synapse_connection.go @@ -94,82 +94,82 @@ type AzureSynapseConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m AzureSynapseConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AzureSynapseConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m AzureSynapseConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AzureSynapseConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AzureSynapseConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AzureSynapseConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AzureSynapseConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AzureSynapseConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m AzureSynapseConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AzureSynapseConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AzureSynapseConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m AzureSynapseConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m AzureSynapseConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m AzureSynapseConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m AzureSynapseConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m AzureSynapseConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_synapse_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_synapse_connection_summary.go index 216d6bb60df..be0358f1993 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_synapse_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/azure_synapse_connection_summary.go @@ -94,82 +94,82 @@ type AzureSynapseConnectionSummary struct { TechnologyType AzureSynapseConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetId returns Id +// GetId returns Id func (m AzureSynapseConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AzureSynapseConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m AzureSynapseConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AzureSynapseConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AzureSynapseConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AzureSynapseConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AzureSynapseConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AzureSynapseConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m AzureSynapseConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AzureSynapseConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AzureSynapseConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m AzureSynapseConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m AzureSynapseConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m AzureSynapseConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m AzureSynapseConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m AzureSynapseConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_amazon_s3_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_amazon_s3_connection_details.go index 294687e838e..93639a93bc7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_amazon_s3_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_amazon_s3_connection_details.go @@ -64,47 +64,47 @@ type CreateAmazonS3ConnectionDetails struct { TechnologyType AmazonS3ConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateAmazonS3ConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateAmazonS3ConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAmazonS3ConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAmazonS3ConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAmazonS3ConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateAmazonS3ConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateAmazonS3ConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateAmazonS3ConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateAmazonS3ConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_azure_data_lake_storage_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_azure_data_lake_storage_connection_details.go index 8e7c8594e27..bdc657dca07 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_azure_data_lake_storage_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_azure_data_lake_storage_connection_details.go @@ -87,47 +87,47 @@ type CreateAzureDataLakeStorageConnectionDetails struct { AuthenticationType AzureDataLakeStorageConnectionAuthenticationTypeEnum `mandatory:"true" json:"authenticationType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateAzureDataLakeStorageConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateAzureDataLakeStorageConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAzureDataLakeStorageConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAzureDataLakeStorageConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAzureDataLakeStorageConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateAzureDataLakeStorageConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateAzureDataLakeStorageConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateAzureDataLakeStorageConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateAzureDataLakeStorageConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_azure_synapse_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_azure_synapse_connection_details.go index f7087191e00..2e0831dc556 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_azure_synapse_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_azure_synapse_connection_details.go @@ -69,47 +69,47 @@ type CreateAzureSynapseConnectionDetails struct { TechnologyType AzureSynapseConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateAzureSynapseConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateAzureSynapseConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAzureSynapseConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAzureSynapseConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAzureSynapseConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateAzureSynapseConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateAzureSynapseConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateAzureSynapseConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateAzureSynapseConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_golden_gate_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_golden_gate_connection_details.go index 076a196f960..48c635ba74e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_golden_gate_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_golden_gate_connection_details.go @@ -78,47 +78,47 @@ type CreateGoldenGateConnectionDetails struct { TechnologyType GoldenGateConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGoldenGateConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGoldenGateConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateGoldenGateConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGoldenGateConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGoldenGateConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateGoldenGateConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateGoldenGateConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateGoldenGateConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateGoldenGateConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_hdfs_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_hdfs_connection_details.go index 6a6f5008fd7..fdd936e72f2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_hdfs_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_hdfs_connection_details.go @@ -59,47 +59,47 @@ type CreateHdfsConnectionDetails struct { TechnologyType HdfsConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateHdfsConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateHdfsConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateHdfsConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateHdfsConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateHdfsConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateHdfsConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateHdfsConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateHdfsConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateHdfsConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_java_message_service_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_java_message_service_connection_details.go index ff6db47c9fd..a529b546b44 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_java_message_service_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_java_message_service_connection_details.go @@ -102,47 +102,47 @@ type CreateJavaMessageServiceConnectionDetails struct { TechnologyType JavaMessageServiceConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateJavaMessageServiceConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateJavaMessageServiceConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateJavaMessageServiceConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateJavaMessageServiceConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateJavaMessageServiceConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateJavaMessageServiceConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateJavaMessageServiceConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateJavaMessageServiceConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateJavaMessageServiceConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_kafka_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_kafka_connection_details.go index d9ef15368a0..1bde567007c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_kafka_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_kafka_connection_details.go @@ -99,47 +99,47 @@ type CreateKafkaConnectionDetails struct { SecurityProtocol KafkaConnectionSecurityProtocolEnum `mandatory:"false" json:"securityProtocol,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateKafkaConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateKafkaConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateKafkaConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateKafkaConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateKafkaConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateKafkaConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateKafkaConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateKafkaConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateKafkaConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_kafka_schema_registry_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_kafka_schema_registry_connection_details.go index 1121d4665c2..c5fcf6b0493 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_kafka_schema_registry_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_kafka_schema_registry_connection_details.go @@ -94,47 +94,47 @@ type CreateKafkaSchemaRegistryConnectionDetails struct { AuthenticationType KafkaSchemaRegistryConnectionAuthenticationTypeEnum `mandatory:"true" json:"authenticationType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateKafkaSchemaRegistryConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateKafkaSchemaRegistryConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateKafkaSchemaRegistryConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateKafkaSchemaRegistryConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateKafkaSchemaRegistryConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateKafkaSchemaRegistryConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateKafkaSchemaRegistryConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateKafkaSchemaRegistryConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateKafkaSchemaRegistryConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_microsoft_sqlserver_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_microsoft_sqlserver_connection_details.go index a943382c3ff..6a042b720c6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_microsoft_sqlserver_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_microsoft_sqlserver_connection_details.go @@ -93,47 +93,47 @@ type CreateMicrosoftSqlserverConnectionDetails struct { SecurityProtocol MicrosoftSqlserverConnectionSecurityProtocolEnum `mandatory:"true" json:"securityProtocol"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateMicrosoftSqlserverConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateMicrosoftSqlserverConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateMicrosoftSqlserverConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMicrosoftSqlserverConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMicrosoftSqlserverConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateMicrosoftSqlserverConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateMicrosoftSqlserverConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateMicrosoftSqlserverConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateMicrosoftSqlserverConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_mongo_db_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_mongo_db_connection_details.go index 1a00c2eabaa..0833d4f9363 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_mongo_db_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_mongo_db_connection_details.go @@ -70,47 +70,47 @@ type CreateMongoDbConnectionDetails struct { TechnologyType MongoDbConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateMongoDbConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateMongoDbConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateMongoDbConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMongoDbConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMongoDbConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateMongoDbConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateMongoDbConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateMongoDbConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateMongoDbConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_mysql_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_mysql_connection_details.go index b84bbd1aa17..84275b23c9e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_mysql_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_mysql_connection_details.go @@ -110,47 +110,47 @@ type CreateMysqlConnectionDetails struct { SslMode MysqlConnectionSslModeEnum `mandatory:"false" json:"sslMode,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateMysqlConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateMysqlConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateMysqlConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMysqlConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMysqlConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateMysqlConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateMysqlConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateMysqlConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateMysqlConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oci_object_storage_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oci_object_storage_connection_details.go index 57b4bd7b583..20f882a180f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oci_object_storage_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oci_object_storage_connection_details.go @@ -77,47 +77,47 @@ type CreateOciObjectStorageConnectionDetails struct { TechnologyType OciObjectStorageConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOciObjectStorageConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOciObjectStorageConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateOciObjectStorageConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOciObjectStorageConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOciObjectStorageConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateOciObjectStorageConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateOciObjectStorageConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateOciObjectStorageConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateOciObjectStorageConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oracle_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oracle_connection_details.go index 6b321180a58..692138722be 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oracle_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oracle_connection_details.go @@ -88,47 +88,47 @@ type CreateOracleConnectionDetails struct { SessionMode OracleConnectionSessionModeEnum `mandatory:"false" json:"sessionMode,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOracleConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOracleConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateOracleConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOracleConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOracleConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateOracleConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateOracleConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateOracleConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateOracleConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oracle_nosql_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oracle_nosql_connection_details.go index 0b64d612fa4..be763a92eda 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oracle_nosql_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_oracle_nosql_connection_details.go @@ -77,47 +77,47 @@ type CreateOracleNosqlConnectionDetails struct { TechnologyType OracleNosqlConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOracleNosqlConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOracleNosqlConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateOracleNosqlConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOracleNosqlConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOracleNosqlConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateOracleNosqlConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateOracleNosqlConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateOracleNosqlConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateOracleNosqlConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_postgresql_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_postgresql_connection_details.go index ca75fd6ea76..df0044c61b4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_postgresql_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_postgresql_connection_details.go @@ -103,47 +103,47 @@ type CreatePostgresqlConnectionDetails struct { SslMode PostgresqlConnectionSslModeEnum `mandatory:"false" json:"sslMode,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreatePostgresqlConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreatePostgresqlConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreatePostgresqlConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreatePostgresqlConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreatePostgresqlConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreatePostgresqlConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreatePostgresqlConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreatePostgresqlConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreatePostgresqlConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_snowflake_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_snowflake_connection_details.go index aa425f390e7..6f25b03141d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_snowflake_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/create_snowflake_connection_details.go @@ -76,47 +76,47 @@ type CreateSnowflakeConnectionDetails struct { AuthenticationType SnowflakeConnectionAuthenticationTypeEnum `mandatory:"true" json:"authenticationType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateSnowflakeConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateSnowflakeConnectionDetails) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateSnowflakeConnectionDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSnowflakeConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSnowflakeConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m CreateSnowflakeConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m CreateSnowflakeConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m CreateSnowflakeConnectionDetails) GetSubnetId() *string { return m.SubnetId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m CreateSnowflakeConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/golden_gate_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/golden_gate_connection.go index dbe18801f6e..a87488f6492 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/golden_gate_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/golden_gate_connection.go @@ -104,82 +104,82 @@ type GoldenGateConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m GoldenGateConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GoldenGateConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GoldenGateConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GoldenGateConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GoldenGateConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GoldenGateConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GoldenGateConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GoldenGateConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GoldenGateConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GoldenGateConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GoldenGateConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m GoldenGateConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m GoldenGateConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m GoldenGateConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m GoldenGateConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m GoldenGateConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/golden_gate_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/golden_gate_connection_summary.go index 8df20e88b95..fda33898899 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/golden_gate_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/golden_gate_connection_summary.go @@ -104,82 +104,82 @@ type GoldenGateConnectionSummary struct { TechnologyType GoldenGateConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetId returns Id +// GetId returns Id func (m GoldenGateConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GoldenGateConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GoldenGateConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GoldenGateConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GoldenGateConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GoldenGateConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m GoldenGateConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GoldenGateConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m GoldenGateConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GoldenGateConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m GoldenGateConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m GoldenGateConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m GoldenGateConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m GoldenGateConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m GoldenGateConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m GoldenGateConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/goldengate_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/goldengate_client.go index de319db5aeb..9e8d596228c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/goldengate_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/goldengate_client.go @@ -93,7 +93,7 @@ func (client *GoldenGateClient) ConfigurationProvider() *common.ConfigurationPro // CancelDeploymentBackup Cancels a Deployment Backup creation process. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CancelDeploymentBackup.go.html to see an example of how to use CancelDeploymentBackup API. // A default retry strategy applies to this operation CancelDeploymentBackup() @@ -156,7 +156,7 @@ func (client GoldenGateClient) cancelDeploymentBackup(ctx context.Context, reque // CancelDeploymentUpgrade Cancels a DeploymentUpgrade, applicable only for DeploymentUpgrade in Waiting state. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CancelDeploymentUpgrade.go.html to see an example of how to use CancelDeploymentUpgrade API. // A default retry strategy applies to this operation CancelDeploymentUpgrade() @@ -219,7 +219,7 @@ func (client GoldenGateClient) cancelDeploymentUpgrade(ctx context.Context, requ // CancelSnoozeDeploymentUpgrade Cancel snooze of a DeploymentUpgrade. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CancelSnoozeDeploymentUpgrade.go.html to see an example of how to use CancelSnoozeDeploymentUpgrade API. // A default retry strategy applies to this operation CancelSnoozeDeploymentUpgrade() @@ -285,7 +285,7 @@ func (client GoldenGateClient) cancelSnoozeDeploymentUpgrade(ctx context.Context // moving resources between compartments, see Moving Resources Between // Compartments (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ChangeConnectionCompartment.go.html to see an example of how to use ChangeConnectionCompartment API. // A default retry strategy applies to this operation ChangeConnectionCompartment() @@ -347,7 +347,7 @@ func (client GoldenGateClient) changeConnectionCompartment(ctx context.Context, // moving resources between compartments, see Moving Resources Between // Compartments (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ChangeDatabaseRegistrationCompartment.go.html to see an example of how to use ChangeDatabaseRegistrationCompartment API. // A default retry strategy applies to this operation ChangeDatabaseRegistrationCompartment() @@ -413,7 +413,7 @@ func (client GoldenGateClient) changeDatabaseRegistrationCompartment(ctx context // resources between compartments, see Moving Resources Between // Compartments (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ChangeDeploymentBackupCompartment.go.html to see an example of how to use ChangeDeploymentBackupCompartment API. // A default retry strategy applies to this operation ChangeDeploymentBackupCompartment() @@ -479,7 +479,7 @@ func (client GoldenGateClient) changeDeploymentBackupCompartment(ctx context.Con // resources between compartments, see Moving Resources Between // Compartments (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ChangeDeploymentCompartment.go.html to see an example of how to use ChangeDeploymentCompartment API. // A default retry strategy applies to this operation ChangeDeploymentCompartment() @@ -542,7 +542,7 @@ func (client GoldenGateClient) changeDeploymentCompartment(ctx context.Context, // CollectDeploymentDiagnostic Collects the diagnostic of a Deployment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CollectDeploymentDiagnostic.go.html to see an example of how to use CollectDeploymentDiagnostic API. // A default retry strategy applies to this operation CollectDeploymentDiagnostic() @@ -605,7 +605,7 @@ func (client GoldenGateClient) collectDeploymentDiagnostic(ctx context.Context, // CopyDeploymentBackup Creates a copy of a Deployment Backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CopyDeploymentBackup.go.html to see an example of how to use CopyDeploymentBackup API. // A default retry strategy applies to this operation CopyDeploymentBackup() @@ -668,7 +668,7 @@ func (client GoldenGateClient) copyDeploymentBackup(ctx context.Context, request // CreateConnection Creates a new Connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CreateConnection.go.html to see an example of how to use CreateConnection API. // A default retry strategy applies to this operation CreateConnection() @@ -731,7 +731,7 @@ func (client GoldenGateClient) createConnection(ctx context.Context, request com // CreateConnectionAssignment Creates a new Connection Assignment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CreateConnectionAssignment.go.html to see an example of how to use CreateConnectionAssignment API. // A default retry strategy applies to this operation CreateConnectionAssignment() @@ -795,7 +795,7 @@ func (client GoldenGateClient) createConnectionAssignment(ctx context.Context, r // CreateDatabaseRegistration Note: Deprecated. Use the /connections API instead. // Creates a new DatabaseRegistration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CreateDatabaseRegistration.go.html to see an example of how to use CreateDatabaseRegistration API. // A default retry strategy applies to this operation CreateDatabaseRegistration() @@ -858,7 +858,7 @@ func (client GoldenGateClient) createDatabaseRegistration(ctx context.Context, r // CreateDeployment Creates a new Deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CreateDeployment.go.html to see an example of how to use CreateDeployment API. // A default retry strategy applies to this operation CreateDeployment() @@ -921,7 +921,7 @@ func (client GoldenGateClient) createDeployment(ctx context.Context, request com // CreateDeploymentBackup Creates a new DeploymentBackup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/CreateDeploymentBackup.go.html to see an example of how to use CreateDeploymentBackup API. // A default retry strategy applies to this operation CreateDeploymentBackup() @@ -984,7 +984,7 @@ func (client GoldenGateClient) createDeploymentBackup(ctx context.Context, reque // DeleteConnection Deletes a Connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/DeleteConnection.go.html to see an example of how to use DeleteConnection API. // A default retry strategy applies to this operation DeleteConnection() @@ -1042,7 +1042,7 @@ func (client GoldenGateClient) deleteConnection(ctx context.Context, request com // DeleteConnectionAssignment Deletes a Connection Assignment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/DeleteConnectionAssignment.go.html to see an example of how to use DeleteConnectionAssignment API. // A default retry strategy applies to this operation DeleteConnectionAssignment() @@ -1101,7 +1101,7 @@ func (client GoldenGateClient) deleteConnectionAssignment(ctx context.Context, r // DeleteDatabaseRegistration Note: Deprecated. Use the /connections API instead. // Deletes a DatabaseRegistration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/DeleteDatabaseRegistration.go.html to see an example of how to use DeleteDatabaseRegistration API. // A default retry strategy applies to this operation DeleteDatabaseRegistration() @@ -1159,7 +1159,7 @@ func (client GoldenGateClient) deleteDatabaseRegistration(ctx context.Context, r // DeleteDeployment Deletes the Deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/DeleteDeployment.go.html to see an example of how to use DeleteDeployment API. // A default retry strategy applies to this operation DeleteDeployment() @@ -1217,7 +1217,7 @@ func (client GoldenGateClient) deleteDeployment(ctx context.Context, request com // DeleteDeploymentBackup Deletes a DeploymentBackup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/DeleteDeploymentBackup.go.html to see an example of how to use DeleteDeploymentBackup API. // A default retry strategy applies to this operation DeleteDeploymentBackup() @@ -1275,7 +1275,7 @@ func (client GoldenGateClient) deleteDeploymentBackup(ctx context.Context, reque // DeploymentWalletExists Checks if a wallet is already present in the deployment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/DeploymentWalletExists.go.html to see an example of how to use DeploymentWalletExists API. // A default retry strategy applies to this operation DeploymentWalletExists() @@ -1338,7 +1338,7 @@ func (client GoldenGateClient) deploymentWalletExists(ctx context.Context, reque // ExportDeploymentWallet Export the OGG wallet from the deployment to OCI vault. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ExportDeploymentWallet.go.html to see an example of how to use ExportDeploymentWallet API. // A default retry strategy applies to this operation ExportDeploymentWallet() @@ -1401,7 +1401,7 @@ func (client GoldenGateClient) exportDeploymentWallet(ctx context.Context, reque // GetConnection Retrieves a Connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/GetConnection.go.html to see an example of how to use GetConnection API. // A default retry strategy applies to this operation GetConnection() @@ -1459,7 +1459,7 @@ func (client GoldenGateClient) getConnection(ctx context.Context, request common // GetConnectionAssignment Retrieves a Connection Assignment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/GetConnectionAssignment.go.html to see an example of how to use GetConnectionAssignment API. // A default retry strategy applies to this operation GetConnectionAssignment() @@ -1518,7 +1518,7 @@ func (client GoldenGateClient) getConnectionAssignment(ctx context.Context, requ // GetDatabaseRegistration Note: Deprecated. Use the /connections API instead. // Retrieves a DatabaseRegistration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/GetDatabaseRegistration.go.html to see an example of how to use GetDatabaseRegistration API. // A default retry strategy applies to this operation GetDatabaseRegistration() @@ -1576,7 +1576,7 @@ func (client GoldenGateClient) getDatabaseRegistration(ctx context.Context, requ // GetDeployment Retrieves a deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/GetDeployment.go.html to see an example of how to use GetDeployment API. // A default retry strategy applies to this operation GetDeployment() @@ -1634,7 +1634,7 @@ func (client GoldenGateClient) getDeployment(ctx context.Context, request common // GetDeploymentBackup Retrieves a DeploymentBackup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/GetDeploymentBackup.go.html to see an example of how to use GetDeploymentBackup API. // A default retry strategy applies to this operation GetDeploymentBackup() @@ -1692,7 +1692,7 @@ func (client GoldenGateClient) getDeploymentBackup(ctx context.Context, request // GetDeploymentUpgrade Retrieves a deployment upgrade. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/GetDeploymentUpgrade.go.html to see an example of how to use GetDeploymentUpgrade API. // A default retry strategy applies to this operation GetDeploymentUpgrade() @@ -1750,7 +1750,7 @@ func (client GoldenGateClient) getDeploymentUpgrade(ctx context.Context, request // GetWorkRequest Retrieve the WorkRequest identified by the given OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1808,7 +1808,7 @@ func (client GoldenGateClient) getWorkRequest(ctx context.Context, request commo // ImportDeploymentWallet Imports an OGG wallet from the OCI Vault to the Deployment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ImportDeploymentWallet.go.html to see an example of how to use ImportDeploymentWallet API. // A default retry strategy applies to this operation ImportDeploymentWallet() @@ -1871,7 +1871,7 @@ func (client GoldenGateClient) importDeploymentWallet(ctx context.Context, reque // ListConnectionAssignments Lists the Connection Assignments in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListConnectionAssignments.go.html to see an example of how to use ListConnectionAssignments API. // A default retry strategy applies to this operation ListConnectionAssignments() @@ -1929,7 +1929,7 @@ func (client GoldenGateClient) listConnectionAssignments(ctx context.Context, re // ListConnections Lists the Connections in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListConnections.go.html to see an example of how to use ListConnections API. // A default retry strategy applies to this operation ListConnections() @@ -1988,7 +1988,7 @@ func (client GoldenGateClient) listConnections(ctx context.Context, request comm // ListDatabaseRegistrations Note: Deprecated. Use the /connections API instead. // Lists the DatabaseRegistrations in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListDatabaseRegistrations.go.html to see an example of how to use ListDatabaseRegistrations API. // A default retry strategy applies to this operation ListDatabaseRegistrations() @@ -2046,7 +2046,7 @@ func (client GoldenGateClient) listDatabaseRegistrations(ctx context.Context, re // ListDeploymentBackups Lists the Backups in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListDeploymentBackups.go.html to see an example of how to use ListDeploymentBackups API. // A default retry strategy applies to this operation ListDeploymentBackups() @@ -2104,7 +2104,7 @@ func (client GoldenGateClient) listDeploymentBackups(ctx context.Context, reques // ListDeploymentTypes Returns an array of DeploymentTypeDescriptor // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListDeploymentTypes.go.html to see an example of how to use ListDeploymentTypes API. // A default retry strategy applies to this operation ListDeploymentTypes() @@ -2162,7 +2162,7 @@ func (client GoldenGateClient) listDeploymentTypes(ctx context.Context, request // ListDeploymentUpgrades Lists the Deployment Upgrades in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListDeploymentUpgrades.go.html to see an example of how to use ListDeploymentUpgrades API. // A default retry strategy applies to this operation ListDeploymentUpgrades() @@ -2220,7 +2220,7 @@ func (client GoldenGateClient) listDeploymentUpgrades(ctx context.Context, reque // ListDeploymentVersions Returns the list of available deployment versions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListDeploymentVersions.go.html to see an example of how to use ListDeploymentVersions API. // A default retry strategy applies to this operation ListDeploymentVersions() @@ -2278,7 +2278,7 @@ func (client GoldenGateClient) listDeploymentVersions(ctx context.Context, reque // ListDeploymentWalletsOperations Lists the wallets export/import operations to/from a deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListDeploymentWalletsOperations.go.html to see an example of how to use ListDeploymentWalletsOperations API. // A default retry strategy applies to this operation ListDeploymentWalletsOperations() @@ -2336,7 +2336,7 @@ func (client GoldenGateClient) listDeploymentWalletsOperations(ctx context.Conte // ListDeployments Lists the Deployments in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListDeployments.go.html to see an example of how to use ListDeployments API. // A default retry strategy applies to this operation ListDeployments() @@ -2394,7 +2394,7 @@ func (client GoldenGateClient) listDeployments(ctx context.Context, request comm // ListMessages Lists the DeploymentMessages for a deployment. The sorting order is not important. By default first will be Upgrade message, next Exception message and then Storage Utilization message. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListMessages.go.html to see an example of how to use ListMessages API. // A default retry strategy applies to this operation ListMessages() @@ -2452,7 +2452,7 @@ func (client GoldenGateClient) listMessages(ctx context.Context, request common. // ListTrailFiles Lists the TrailFiles for a deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListTrailFiles.go.html to see an example of how to use ListTrailFiles API. // A default retry strategy applies to this operation ListTrailFiles() @@ -2510,7 +2510,7 @@ func (client GoldenGateClient) listTrailFiles(ctx context.Context, request commo // ListTrailSequences Lists the Trail Sequences for a TrailFile in a given deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListTrailSequences.go.html to see an example of how to use ListTrailSequences API. // A default retry strategy applies to this operation ListTrailSequences() @@ -2568,7 +2568,7 @@ func (client GoldenGateClient) listTrailSequences(ctx context.Context, request c // ListWorkRequestErrors Lists work request errors. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -2626,7 +2626,7 @@ func (client GoldenGateClient) listWorkRequestErrors(ctx context.Context, reques // ListWorkRequestLogs Lists work request logs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -2684,7 +2684,7 @@ func (client GoldenGateClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2742,7 +2742,7 @@ func (client GoldenGateClient) listWorkRequests(ctx context.Context, request com // RescheduleDeploymentUpgrade Reschedules a DeploymentUpgrade, applicable only for DeploymentUpgrade in Waiting state. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/RescheduleDeploymentUpgrade.go.html to see an example of how to use RescheduleDeploymentUpgrade API. // A default retry strategy applies to this operation RescheduleDeploymentUpgrade() @@ -2805,7 +2805,7 @@ func (client GoldenGateClient) rescheduleDeploymentUpgrade(ctx context.Context, // RestoreDeployment Restores a Deployment from a Deployment Backup created from the same Deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/RestoreDeployment.go.html to see an example of how to use RestoreDeployment API. // A default retry strategy applies to this operation RestoreDeployment() @@ -2868,7 +2868,7 @@ func (client GoldenGateClient) restoreDeployment(ctx context.Context, request co // RollbackDeploymentUpgrade Rollback a deployment to it's previous version. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/RollbackDeploymentUpgrade.go.html to see an example of how to use RollbackDeploymentUpgrade API. // A default retry strategy applies to this operation RollbackDeploymentUpgrade() @@ -2931,7 +2931,7 @@ func (client GoldenGateClient) rollbackDeploymentUpgrade(ctx context.Context, re // SnoozeDeploymentUpgrade Snooze a DeploymentUpgrade. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/SnoozeDeploymentUpgrade.go.html to see an example of how to use SnoozeDeploymentUpgrade API. // A default retry strategy applies to this operation SnoozeDeploymentUpgrade() @@ -2994,7 +2994,7 @@ func (client GoldenGateClient) snoozeDeploymentUpgrade(ctx context.Context, requ // StartDeployment Starts a Deployment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/StartDeployment.go.html to see an example of how to use StartDeployment API. // A default retry strategy applies to this operation StartDeployment() @@ -3057,7 +3057,7 @@ func (client GoldenGateClient) startDeployment(ctx context.Context, request comm // StopDeployment Stops a Deployment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/StopDeployment.go.html to see an example of how to use StopDeployment API. // A default retry strategy applies to this operation StopDeployment() @@ -3121,7 +3121,7 @@ func (client GoldenGateClient) stopDeployment(ctx context.Context, request commo // TestConnectionAssignment Tests the connectivity between given GoldenGate deployment and one of the associated database / service. // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/TestConnectionAssignment.go.html to see an example of how to use TestConnectionAssignment API. // A default retry strategy applies to this operation TestConnectionAssignment() @@ -3184,7 +3184,7 @@ func (client GoldenGateClient) testConnectionAssignment(ctx context.Context, req // UpdateConnection Updates the Connection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/UpdateConnection.go.html to see an example of how to use UpdateConnection API. // A default retry strategy applies to this operation UpdateConnection() @@ -3243,7 +3243,7 @@ func (client GoldenGateClient) updateConnection(ctx context.Context, request com // UpdateDatabaseRegistration Note: Deprecated. Use the /connections API instead. // Updates the DatabaseRegistration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/UpdateDatabaseRegistration.go.html to see an example of how to use UpdateDatabaseRegistration API. // A default retry strategy applies to this operation UpdateDatabaseRegistration() @@ -3301,7 +3301,7 @@ func (client GoldenGateClient) updateDatabaseRegistration(ctx context.Context, r // UpdateDeployment Modifies a Deployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/UpdateDeployment.go.html to see an example of how to use UpdateDeployment API. // A default retry strategy applies to this operation UpdateDeployment() @@ -3359,7 +3359,7 @@ func (client GoldenGateClient) updateDeployment(ctx context.Context, request com // UpdateDeploymentBackup Modifies a Deployment Backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/UpdateDeploymentBackup.go.html to see an example of how to use UpdateDeploymentBackup API. // A default retry strategy applies to this operation UpdateDeploymentBackup() @@ -3417,7 +3417,7 @@ func (client GoldenGateClient) updateDeploymentBackup(ctx context.Context, reque // UpgradeDeployment Upgrade a Deployment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/UpgradeDeployment.go.html to see an example of how to use UpgradeDeployment API. // A default retry strategy applies to this operation UpgradeDeployment() @@ -3480,7 +3480,7 @@ func (client GoldenGateClient) upgradeDeployment(ctx context.Context, request co // UpgradeDeploymentUpgrade Upgrade a deployment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/goldengate/UpgradeDeploymentUpgrade.go.html to see an example of how to use UpgradeDeploymentUpgrade API. // A default retry strategy applies to this operation UpgradeDeploymentUpgrade() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/hdfs_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/hdfs_connection.go index 6382f580d11..eab4f5f3a17 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/hdfs_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/hdfs_connection.go @@ -85,82 +85,82 @@ type HdfsConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m HdfsConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m HdfsConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m HdfsConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m HdfsConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m HdfsConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m HdfsConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m HdfsConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m HdfsConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m HdfsConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m HdfsConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m HdfsConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m HdfsConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m HdfsConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m HdfsConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m HdfsConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m HdfsConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/hdfs_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/hdfs_connection_summary.go index 57df27fc272..dce254d669b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/hdfs_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/hdfs_connection_summary.go @@ -85,82 +85,82 @@ type HdfsConnectionSummary struct { TechnologyType HdfsConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetId returns Id +// GetId returns Id func (m HdfsConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m HdfsConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m HdfsConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m HdfsConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m HdfsConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m HdfsConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m HdfsConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m HdfsConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m HdfsConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m HdfsConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m HdfsConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m HdfsConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m HdfsConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m HdfsConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m HdfsConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m HdfsConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/java_message_service_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/java_message_service_connection.go index cc9f1cca656..7be955c86bf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/java_message_service_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/java_message_service_connection.go @@ -125,82 +125,82 @@ type JavaMessageServiceConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m JavaMessageServiceConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m JavaMessageServiceConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m JavaMessageServiceConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m JavaMessageServiceConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m JavaMessageServiceConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m JavaMessageServiceConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m JavaMessageServiceConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m JavaMessageServiceConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m JavaMessageServiceConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m JavaMessageServiceConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m JavaMessageServiceConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m JavaMessageServiceConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m JavaMessageServiceConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m JavaMessageServiceConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m JavaMessageServiceConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m JavaMessageServiceConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/java_message_service_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/java_message_service_connection_summary.go index fb32e5ed21b..b93e671dea6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/java_message_service_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/java_message_service_connection_summary.go @@ -125,82 +125,82 @@ type JavaMessageServiceConnectionSummary struct { TechnologyType JavaMessageServiceConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetId returns Id +// GetId returns Id func (m JavaMessageServiceConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m JavaMessageServiceConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m JavaMessageServiceConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m JavaMessageServiceConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m JavaMessageServiceConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m JavaMessageServiceConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m JavaMessageServiceConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m JavaMessageServiceConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m JavaMessageServiceConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m JavaMessageServiceConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m JavaMessageServiceConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m JavaMessageServiceConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m JavaMessageServiceConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m JavaMessageServiceConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m JavaMessageServiceConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m JavaMessageServiceConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_connection.go index 0e99c4be569..71050797cf9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_connection.go @@ -102,82 +102,82 @@ type KafkaConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m KafkaConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m KafkaConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m KafkaConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m KafkaConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m KafkaConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m KafkaConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m KafkaConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m KafkaConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m KafkaConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m KafkaConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m KafkaConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m KafkaConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m KafkaConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m KafkaConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m KafkaConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m KafkaConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_connection_summary.go index ac3db2f15e5..28da8ed2612 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_connection_summary.go @@ -102,82 +102,82 @@ type KafkaConnectionSummary struct { SecurityProtocol KafkaConnectionSecurityProtocolEnum `mandatory:"false" json:"securityProtocol,omitempty"` } -//GetId returns Id +// GetId returns Id func (m KafkaConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m KafkaConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m KafkaConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m KafkaConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m KafkaConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m KafkaConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m KafkaConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m KafkaConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m KafkaConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m KafkaConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m KafkaConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m KafkaConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m KafkaConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m KafkaConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m KafkaConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m KafkaConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_schema_registry_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_schema_registry_connection.go index 2697968a734..27f59eeddc4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_schema_registry_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_schema_registry_connection.go @@ -103,82 +103,82 @@ type KafkaSchemaRegistryConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m KafkaSchemaRegistryConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m KafkaSchemaRegistryConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m KafkaSchemaRegistryConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m KafkaSchemaRegistryConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m KafkaSchemaRegistryConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m KafkaSchemaRegistryConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m KafkaSchemaRegistryConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m KafkaSchemaRegistryConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m KafkaSchemaRegistryConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m KafkaSchemaRegistryConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m KafkaSchemaRegistryConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m KafkaSchemaRegistryConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m KafkaSchemaRegistryConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m KafkaSchemaRegistryConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m KafkaSchemaRegistryConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m KafkaSchemaRegistryConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_schema_registry_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_schema_registry_connection_summary.go index b6129a76cc1..606083bc2ef 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_schema_registry_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/kafka_schema_registry_connection_summary.go @@ -103,82 +103,82 @@ type KafkaSchemaRegistryConnectionSummary struct { AuthenticationType KafkaSchemaRegistryConnectionAuthenticationTypeEnum `mandatory:"true" json:"authenticationType"` } -//GetId returns Id +// GetId returns Id func (m KafkaSchemaRegistryConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m KafkaSchemaRegistryConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m KafkaSchemaRegistryConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m KafkaSchemaRegistryConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m KafkaSchemaRegistryConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m KafkaSchemaRegistryConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m KafkaSchemaRegistryConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m KafkaSchemaRegistryConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m KafkaSchemaRegistryConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m KafkaSchemaRegistryConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m KafkaSchemaRegistryConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m KafkaSchemaRegistryConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m KafkaSchemaRegistryConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m KafkaSchemaRegistryConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m KafkaSchemaRegistryConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m KafkaSchemaRegistryConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/microsoft_sqlserver_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/microsoft_sqlserver_connection.go index e763db7a2f5..26fa1ed0ec9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/microsoft_sqlserver_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/microsoft_sqlserver_connection.go @@ -119,82 +119,82 @@ type MicrosoftSqlserverConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m MicrosoftSqlserverConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m MicrosoftSqlserverConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m MicrosoftSqlserverConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MicrosoftSqlserverConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MicrosoftSqlserverConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MicrosoftSqlserverConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MicrosoftSqlserverConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MicrosoftSqlserverConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MicrosoftSqlserverConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MicrosoftSqlserverConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MicrosoftSqlserverConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m MicrosoftSqlserverConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m MicrosoftSqlserverConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m MicrosoftSqlserverConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m MicrosoftSqlserverConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m MicrosoftSqlserverConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/microsoft_sqlserver_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/microsoft_sqlserver_connection_summary.go index 774061f6c1b..b2b0825572b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/microsoft_sqlserver_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/microsoft_sqlserver_connection_summary.go @@ -119,82 +119,82 @@ type MicrosoftSqlserverConnectionSummary struct { SecurityProtocol MicrosoftSqlserverConnectionSecurityProtocolEnum `mandatory:"true" json:"securityProtocol"` } -//GetId returns Id +// GetId returns Id func (m MicrosoftSqlserverConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m MicrosoftSqlserverConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m MicrosoftSqlserverConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MicrosoftSqlserverConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MicrosoftSqlserverConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MicrosoftSqlserverConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MicrosoftSqlserverConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MicrosoftSqlserverConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MicrosoftSqlserverConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MicrosoftSqlserverConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MicrosoftSqlserverConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m MicrosoftSqlserverConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m MicrosoftSqlserverConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m MicrosoftSqlserverConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m MicrosoftSqlserverConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m MicrosoftSqlserverConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mongo_db_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mongo_db_connection.go index ec335026823..ea88aff5ec5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mongo_db_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mongo_db_connection.go @@ -96,82 +96,82 @@ type MongoDbConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m MongoDbConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m MongoDbConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m MongoDbConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MongoDbConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MongoDbConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MongoDbConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MongoDbConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MongoDbConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MongoDbConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MongoDbConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MongoDbConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m MongoDbConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m MongoDbConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m MongoDbConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m MongoDbConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m MongoDbConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mongo_db_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mongo_db_connection_summary.go index e5a00b5b725..13bcd9636e6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mongo_db_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mongo_db_connection_summary.go @@ -96,82 +96,82 @@ type MongoDbConnectionSummary struct { TechnologyType MongoDbConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetId returns Id +// GetId returns Id func (m MongoDbConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m MongoDbConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m MongoDbConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MongoDbConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MongoDbConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MongoDbConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MongoDbConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MongoDbConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MongoDbConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MongoDbConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MongoDbConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m MongoDbConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m MongoDbConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m MongoDbConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m MongoDbConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m MongoDbConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mysql_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mysql_connection.go index 1bfdc5ea1b6..e2bb967f331 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mysql_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mysql_connection.go @@ -119,82 +119,82 @@ type MysqlConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m MysqlConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m MysqlConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m MysqlConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MysqlConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MysqlConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MysqlConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MysqlConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MysqlConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MysqlConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MysqlConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MysqlConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m MysqlConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m MysqlConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m MysqlConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m MysqlConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m MysqlConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mysql_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mysql_connection_summary.go index f8a3473872f..fd2b5ee9216 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mysql_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/mysql_connection_summary.go @@ -119,82 +119,82 @@ type MysqlConnectionSummary struct { SslMode MysqlConnectionSslModeEnum `mandatory:"false" json:"sslMode,omitempty"` } -//GetId returns Id +// GetId returns Id func (m MysqlConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m MysqlConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m MysqlConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MysqlConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MysqlConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MysqlConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MysqlConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MysqlConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MysqlConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MysqlConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MysqlConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m MysqlConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m MysqlConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m MysqlConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m MysqlConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m MysqlConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oci_object_storage_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oci_object_storage_connection.go index abca8cf64b5..28b3afb7768 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oci_object_storage_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oci_object_storage_connection.go @@ -95,82 +95,82 @@ type OciObjectStorageConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m OciObjectStorageConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OciObjectStorageConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m OciObjectStorageConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OciObjectStorageConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OciObjectStorageConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OciObjectStorageConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OciObjectStorageConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OciObjectStorageConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OciObjectStorageConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OciObjectStorageConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OciObjectStorageConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m OciObjectStorageConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m OciObjectStorageConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m OciObjectStorageConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m OciObjectStorageConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m OciObjectStorageConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oci_object_storage_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oci_object_storage_connection_summary.go index a4926d1be3a..31606700173 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oci_object_storage_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oci_object_storage_connection_summary.go @@ -95,82 +95,82 @@ type OciObjectStorageConnectionSummary struct { TechnologyType OciObjectStorageConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetId returns Id +// GetId returns Id func (m OciObjectStorageConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OciObjectStorageConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m OciObjectStorageConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OciObjectStorageConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OciObjectStorageConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OciObjectStorageConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OciObjectStorageConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OciObjectStorageConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OciObjectStorageConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OciObjectStorageConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OciObjectStorageConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m OciObjectStorageConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m OciObjectStorageConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m OciObjectStorageConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m OciObjectStorageConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m OciObjectStorageConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_connection.go index b8bd7828d58..c7d753d30ed 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_connection.go @@ -109,82 +109,82 @@ type OracleConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m OracleConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OracleConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m OracleConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OracleConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OracleConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OracleConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OracleConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OracleConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OracleConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OracleConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OracleConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m OracleConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m OracleConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m OracleConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m OracleConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m OracleConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_connection_summary.go index 52d90527bb2..0832d5c2283 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_connection_summary.go @@ -109,82 +109,82 @@ type OracleConnectionSummary struct { SessionMode OracleConnectionSessionModeEnum `mandatory:"false" json:"sessionMode,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OracleConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OracleConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m OracleConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OracleConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OracleConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OracleConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OracleConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OracleConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OracleConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OracleConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OracleConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m OracleConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m OracleConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m OracleConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m OracleConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m OracleConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_nosql_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_nosql_connection.go index b7ae2f11139..ece92fb6420 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_nosql_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_nosql_connection.go @@ -95,82 +95,82 @@ type OracleNosqlConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m OracleNosqlConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OracleNosqlConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m OracleNosqlConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OracleNosqlConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OracleNosqlConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OracleNosqlConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OracleNosqlConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OracleNosqlConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OracleNosqlConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OracleNosqlConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OracleNosqlConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m OracleNosqlConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m OracleNosqlConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m OracleNosqlConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m OracleNosqlConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m OracleNosqlConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_nosql_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_nosql_connection_summary.go index bf96e1b6818..c74382ce669 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_nosql_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/oracle_nosql_connection_summary.go @@ -95,82 +95,82 @@ type OracleNosqlConnectionSummary struct { TechnologyType OracleNosqlConnectionTechnologyTypeEnum `mandatory:"true" json:"technologyType"` } -//GetId returns Id +// GetId returns Id func (m OracleNosqlConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OracleNosqlConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m OracleNosqlConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OracleNosqlConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OracleNosqlConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OracleNosqlConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OracleNosqlConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OracleNosqlConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OracleNosqlConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OracleNosqlConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OracleNosqlConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m OracleNosqlConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m OracleNosqlConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m OracleNosqlConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m OracleNosqlConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m OracleNosqlConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/postgresql_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/postgresql_connection.go index 58ea73d278b..222e62d3e46 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/postgresql_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/postgresql_connection.go @@ -116,82 +116,82 @@ type PostgresqlConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m PostgresqlConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m PostgresqlConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m PostgresqlConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PostgresqlConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PostgresqlConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PostgresqlConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m PostgresqlConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PostgresqlConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PostgresqlConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PostgresqlConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m PostgresqlConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m PostgresqlConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m PostgresqlConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m PostgresqlConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m PostgresqlConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m PostgresqlConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/postgresql_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/postgresql_connection_summary.go index 1a25f5bc421..af52711b78c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/postgresql_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/postgresql_connection_summary.go @@ -116,82 +116,82 @@ type PostgresqlConnectionSummary struct { SslMode PostgresqlConnectionSslModeEnum `mandatory:"false" json:"sslMode,omitempty"` } -//GetId returns Id +// GetId returns Id func (m PostgresqlConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m PostgresqlConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m PostgresqlConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PostgresqlConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PostgresqlConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PostgresqlConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m PostgresqlConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PostgresqlConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PostgresqlConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PostgresqlConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m PostgresqlConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m PostgresqlConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m PostgresqlConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m PostgresqlConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m PostgresqlConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m PostgresqlConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/snowflake_connection.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/snowflake_connection.go index d9636cd27e4..9725be3806f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/snowflake_connection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/snowflake_connection.go @@ -96,82 +96,82 @@ type SnowflakeConnection struct { LifecycleState ConnectionLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m SnowflakeConnection) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m SnowflakeConnection) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m SnowflakeConnection) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m SnowflakeConnection) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SnowflakeConnection) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SnowflakeConnection) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m SnowflakeConnection) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SnowflakeConnection) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m SnowflakeConnection) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SnowflakeConnection) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SnowflakeConnection) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m SnowflakeConnection) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m SnowflakeConnection) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m SnowflakeConnection) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m SnowflakeConnection) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m SnowflakeConnection) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/snowflake_connection_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/snowflake_connection_summary.go index 87bfa82c060..1bf4db18d50 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/snowflake_connection_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/snowflake_connection_summary.go @@ -96,82 +96,82 @@ type SnowflakeConnectionSummary struct { AuthenticationType SnowflakeConnectionAuthenticationTypeEnum `mandatory:"true" json:"authenticationType"` } -//GetId returns Id +// GetId returns Id func (m SnowflakeConnectionSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m SnowflakeConnectionSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m SnowflakeConnectionSummary) GetDescription() *string { return m.Description } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m SnowflakeConnectionSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SnowflakeConnectionSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SnowflakeConnectionSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m SnowflakeConnectionSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SnowflakeConnectionSummary) GetLifecycleState() ConnectionLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m SnowflakeConnectionSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SnowflakeConnectionSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SnowflakeConnectionSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m SnowflakeConnectionSummary) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m SnowflakeConnectionSummary) GetKeyId() *string { return m.KeyId } -//GetSubnetId returns SubnetId +// GetSubnetId returns SubnetId func (m SnowflakeConnectionSummary) GetSubnetId() *string { return m.SubnetId } -//GetIngressIps returns IngressIps +// GetIngressIps returns IngressIps func (m SnowflakeConnectionSummary) GetIngressIps() []IngressIpDetails { return m.IngressIps } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m SnowflakeConnectionSummary) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_amazon_s3_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_amazon_s3_connection_details.go index 86aab6cbb08..fa1833bf648 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_amazon_s3_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_amazon_s3_connection_details.go @@ -55,37 +55,37 @@ type UpdateAmazonS3ConnectionDetails struct { SecretAccessKey *string `mandatory:"false" json:"secretAccessKey"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateAmazonS3ConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateAmazonS3ConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateAmazonS3ConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateAmazonS3ConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateAmazonS3ConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateAmazonS3ConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateAmazonS3ConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_azure_data_lake_storage_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_azure_data_lake_storage_connection_details.go index ae02d70be04..8377bdeb085 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_azure_data_lake_storage_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_azure_data_lake_storage_connection_details.go @@ -78,37 +78,37 @@ type UpdateAzureDataLakeStorageConnectionDetails struct { AuthenticationType AzureDataLakeStorageConnectionAuthenticationTypeEnum `mandatory:"false" json:"authenticationType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateAzureDataLakeStorageConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateAzureDataLakeStorageConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateAzureDataLakeStorageConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateAzureDataLakeStorageConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateAzureDataLakeStorageConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateAzureDataLakeStorageConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateAzureDataLakeStorageConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_azure_synapse_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_azure_synapse_connection_details.go index 2796a08bd5d..e01db841134 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_azure_synapse_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_azure_synapse_connection_details.go @@ -60,37 +60,37 @@ type UpdateAzureSynapseConnectionDetails struct { Password *string `mandatory:"false" json:"password"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateAzureSynapseConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateAzureSynapseConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateAzureSynapseConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateAzureSynapseConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateAzureSynapseConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateAzureSynapseConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateAzureSynapseConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_golden_gate_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_golden_gate_connection_details.go index 38f62f8b3f7..4f89dd322ec 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_golden_gate_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_golden_gate_connection_details.go @@ -69,37 +69,37 @@ type UpdateGoldenGateConnectionDetails struct { PrivateIp *string `mandatory:"false" json:"privateIp"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGoldenGateConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGoldenGateConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGoldenGateConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGoldenGateConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateGoldenGateConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateGoldenGateConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateGoldenGateConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_hdfs_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_hdfs_connection_details.go index cb45ce56cf7..366ef1708a6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_hdfs_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_hdfs_connection_details.go @@ -50,37 +50,37 @@ type UpdateHdfsConnectionDetails struct { CoreSiteXml *string `mandatory:"false" json:"coreSiteXml"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateHdfsConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateHdfsConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateHdfsConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateHdfsConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateHdfsConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateHdfsConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateHdfsConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_java_message_service_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_java_message_service_connection_details.go index ba9cd3fe1a9..fc998b395a6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_java_message_service_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_java_message_service_connection_details.go @@ -93,37 +93,37 @@ type UpdateJavaMessageServiceConnectionDetails struct { PrivateIp *string `mandatory:"false" json:"privateIp"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateJavaMessageServiceConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateJavaMessageServiceConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateJavaMessageServiceConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateJavaMessageServiceConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateJavaMessageServiceConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateJavaMessageServiceConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateJavaMessageServiceConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_kafka_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_kafka_connection_details.go index 8f90f712c7a..62d6684bffa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_kafka_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_kafka_connection_details.go @@ -90,37 +90,37 @@ type UpdateKafkaConnectionDetails struct { SecurityProtocol KafkaConnectionSecurityProtocolEnum `mandatory:"false" json:"securityProtocol,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateKafkaConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateKafkaConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateKafkaConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateKafkaConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateKafkaConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateKafkaConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateKafkaConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_kafka_schema_registry_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_kafka_schema_registry_connection_details.go index db962ddb448..59a2bcef0a6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_kafka_schema_registry_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_kafka_schema_registry_connection_details.go @@ -85,37 +85,37 @@ type UpdateKafkaSchemaRegistryConnectionDetails struct { AuthenticationType KafkaSchemaRegistryConnectionAuthenticationTypeEnum `mandatory:"false" json:"authenticationType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateKafkaSchemaRegistryConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateKafkaSchemaRegistryConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateKafkaSchemaRegistryConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateKafkaSchemaRegistryConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateKafkaSchemaRegistryConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateKafkaSchemaRegistryConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateKafkaSchemaRegistryConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_microsoft_sqlserver_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_microsoft_sqlserver_connection_details.go index 810d41e9e78..40fdcee9092 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_microsoft_sqlserver_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_microsoft_sqlserver_connection_details.go @@ -84,37 +84,37 @@ type UpdateMicrosoftSqlserverConnectionDetails struct { SecurityProtocol MicrosoftSqlserverConnectionSecurityProtocolEnum `mandatory:"false" json:"securityProtocol,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateMicrosoftSqlserverConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateMicrosoftSqlserverConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateMicrosoftSqlserverConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateMicrosoftSqlserverConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateMicrosoftSqlserverConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateMicrosoftSqlserverConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateMicrosoftSqlserverConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_mongo_db_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_mongo_db_connection_details.go index f1f24a842c5..cb092a08ea5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_mongo_db_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_mongo_db_connection_details.go @@ -61,37 +61,37 @@ type UpdateMongoDbConnectionDetails struct { DatabaseId *string `mandatory:"false" json:"databaseId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateMongoDbConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateMongoDbConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateMongoDbConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateMongoDbConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateMongoDbConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateMongoDbConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateMongoDbConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_mysql_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_mysql_connection_details.go index 7a097d6e68d..4488ccb5651 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_mysql_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_mysql_connection_details.go @@ -101,37 +101,37 @@ type UpdateMysqlConnectionDetails struct { SslMode MysqlConnectionSslModeEnum `mandatory:"false" json:"sslMode,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateMysqlConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateMysqlConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateMysqlConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateMysqlConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateMysqlConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateMysqlConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateMysqlConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oci_object_storage_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oci_object_storage_connection_details.go index 41050f7b107..ebcde75848b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oci_object_storage_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oci_object_storage_connection_details.go @@ -68,37 +68,37 @@ type UpdateOciObjectStorageConnectionDetails struct { PublicKeyFingerprint *string `mandatory:"false" json:"publicKeyFingerprint"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOciObjectStorageConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOciObjectStorageConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOciObjectStorageConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOciObjectStorageConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateOciObjectStorageConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateOciObjectStorageConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateOciObjectStorageConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oracle_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oracle_connection_details.go index 23884bdba59..77b0b2103cd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oracle_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oracle_connection_details.go @@ -79,37 +79,37 @@ type UpdateOracleConnectionDetails struct { SessionMode OracleConnectionSessionModeEnum `mandatory:"false" json:"sessionMode,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOracleConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOracleConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOracleConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOracleConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateOracleConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateOracleConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateOracleConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oracle_nosql_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oracle_nosql_connection_details.go index cb985cdcc9a..7d72453503f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oracle_nosql_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_oracle_nosql_connection_details.go @@ -68,37 +68,37 @@ type UpdateOracleNosqlConnectionDetails struct { PublicKeyFingerprint *string `mandatory:"false" json:"publicKeyFingerprint"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOracleNosqlConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOracleNosqlConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOracleNosqlConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOracleNosqlConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateOracleNosqlConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateOracleNosqlConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateOracleNosqlConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_postgresql_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_postgresql_connection_details.go index 3ffd9ad3beb..9af85862d52 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_postgresql_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_postgresql_connection_details.go @@ -94,37 +94,37 @@ type UpdatePostgresqlConnectionDetails struct { SslMode PostgresqlConnectionSslModeEnum `mandatory:"false" json:"sslMode,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdatePostgresqlConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdatePostgresqlConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdatePostgresqlConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdatePostgresqlConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdatePostgresqlConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdatePostgresqlConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdatePostgresqlConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_snowflake_connection_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_snowflake_connection_details.go index 50ced7bd42c..dbe72108758 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_snowflake_connection_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/goldengate/update_snowflake_connection_details.go @@ -67,37 +67,37 @@ type UpdateSnowflakeConnectionDetails struct { AuthenticationType SnowflakeConnectionAuthenticationTypeEnum `mandatory:"false" json:"authenticationType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateSnowflakeConnectionDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateSnowflakeConnectionDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateSnowflakeConnectionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateSnowflakeConnectionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetVaultId returns VaultId +// GetVaultId returns VaultId func (m UpdateSnowflakeConnectionDetails) GetVaultId() *string { return m.VaultId } -//GetKeyId returns KeyId +// GetKeyId returns KeyId func (m UpdateSnowflakeConnectionDetails) GetKeyId() *string { return m.KeyId } -//GetNsgIds returns NsgIds +// GetNsgIds returns NsgIds func (m UpdateSnowflakeConnectionDetails) GetNsgIds() []string { return m.NsgIds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/healthchecks/healthchecks_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/healthchecks/healthchecks_client.go index b43c2ebe1e1..44113f0a51b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/healthchecks/healthchecks_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/healthchecks/healthchecks_client.go @@ -96,7 +96,7 @@ func (client *HealthChecksClient) ConfigurationProvider() *common.ConfigurationP // ChangeHttpMonitorCompartment Moves a monitor into a different compartment. When provided, `If-Match` is checked // against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/ChangeHttpMonitorCompartment.go.html to see an example of how to use ChangeHttpMonitorCompartment API. func (client HealthChecksClient) ChangeHttpMonitorCompartment(ctx context.Context, request ChangeHttpMonitorCompartmentRequest) (response ChangeHttpMonitorCompartmentResponse, err error) { @@ -159,7 +159,7 @@ func (client HealthChecksClient) changeHttpMonitorCompartment(ctx context.Contex // ChangePingMonitorCompartment Moves a monitor into a different compartment. When provided, `If-Match` is checked // against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/ChangePingMonitorCompartment.go.html to see an example of how to use ChangePingMonitorCompartment API. func (client HealthChecksClient) ChangePingMonitorCompartment(ctx context.Context, request ChangePingMonitorCompartmentRequest) (response ChangePingMonitorCompartmentResponse, err error) { @@ -223,7 +223,7 @@ func (client HealthChecksClient) changePingMonitorCompartment(ctx context.Contex // and probes will be initiated from each vantage point to each of the targets at the frequency // specified by `intervalInSeconds`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/CreateHttpMonitor.go.html to see an example of how to use CreateHttpMonitor API. func (client HealthChecksClient) CreateHttpMonitor(ctx context.Context, request CreateHttpMonitorRequest) (response CreateHttpMonitorResponse, err error) { @@ -287,7 +287,7 @@ func (client HealthChecksClient) createHttpMonitor(ctx context.Context, request // fetching the probe results. // *Note:* On-demand probe configurations are not saved. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/CreateOnDemandHttpProbe.go.html to see an example of how to use CreateOnDemandHttpProbe API. func (client HealthChecksClient) CreateOnDemandHttpProbe(ctx context.Context, request CreateOnDemandHttpProbeRequest) (response CreateOnDemandHttpProbeResponse, err error) { @@ -346,7 +346,7 @@ func (client HealthChecksClient) createOnDemandHttpProbe(ctx context.Context, re // fetching probe results. // *Note:* The on-demand probe configuration is not saved. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/CreateOnDemandPingProbe.go.html to see an example of how to use CreateOnDemandPingProbe API. func (client HealthChecksClient) CreateOnDemandPingProbe(ctx context.Context, request CreateOnDemandPingProbeRequest) (response CreateOnDemandPingProbeResponse, err error) { @@ -405,7 +405,7 @@ func (client HealthChecksClient) createOnDemandPingProbe(ctx context.Context, re // and probes will be initiated from each vantage point to each of the targets at the frequency // specified by `intervalInSeconds`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/CreatePingMonitor.go.html to see an example of how to use CreatePingMonitor API. func (client HealthChecksClient) CreatePingMonitor(ctx context.Context, request CreatePingMonitorRequest) (response CreatePingMonitorResponse, err error) { @@ -468,7 +468,7 @@ func (client HealthChecksClient) createPingMonitor(ctx context.Context, request // DeleteHttpMonitor Deletes the HTTP monitor and its configuration. All future probes of this // monitor are stopped. Results associated with the monitor are not deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/DeleteHttpMonitor.go.html to see an example of how to use DeleteHttpMonitor API. func (client HealthChecksClient) DeleteHttpMonitor(ctx context.Context, request DeleteHttpMonitorRequest) (response DeleteHttpMonitorResponse, err error) { @@ -526,7 +526,7 @@ func (client HealthChecksClient) deleteHttpMonitor(ctx context.Context, request // DeletePingMonitor Deletes the ping monitor and its configuration. All future probes of this // monitor are stopped. Results associated with the monitor are not deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/DeletePingMonitor.go.html to see an example of how to use DeletePingMonitor API. func (client HealthChecksClient) DeletePingMonitor(ctx context.Context, request DeletePingMonitorRequest) (response DeletePingMonitorResponse, err error) { @@ -583,7 +583,7 @@ func (client HealthChecksClient) deletePingMonitor(ctx context.Context, request // GetHttpMonitor Gets the configuration for the specified monitor. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/GetHttpMonitor.go.html to see an example of how to use GetHttpMonitor API. func (client HealthChecksClient) GetHttpMonitor(ctx context.Context, request GetHttpMonitorRequest) (response GetHttpMonitorResponse, err error) { @@ -640,7 +640,7 @@ func (client HealthChecksClient) getHttpMonitor(ctx context.Context, request com // GetPingMonitor Gets the configuration for the specified ping monitor. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/GetPingMonitor.go.html to see an example of how to use GetPingMonitor API. func (client HealthChecksClient) GetPingMonitor(ctx context.Context, request GetPingMonitorRequest) (response GetPingMonitorResponse, err error) { @@ -697,7 +697,7 @@ func (client HealthChecksClient) getPingMonitor(ctx context.Context, request com // ListHealthChecksVantagePoints Gets information about all vantage points available to the user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/ListHealthChecksVantagePoints.go.html to see an example of how to use ListHealthChecksVantagePoints API. func (client HealthChecksClient) ListHealthChecksVantagePoints(ctx context.Context, request ListHealthChecksVantagePointsRequest) (response ListHealthChecksVantagePointsResponse, err error) { @@ -754,7 +754,7 @@ func (client HealthChecksClient) listHealthChecksVantagePoints(ctx context.Conte // ListHttpMonitors Gets a list of HTTP monitors. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/ListHttpMonitors.go.html to see an example of how to use ListHttpMonitors API. func (client HealthChecksClient) ListHttpMonitors(ctx context.Context, request ListHttpMonitorsRequest) (response ListHttpMonitorsResponse, err error) { @@ -813,7 +813,7 @@ func (client HealthChecksClient) listHttpMonitors(ctx context.Context, request c // the `probeConfigurationId` is the OCID of either a monitor or an // on-demand probe. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/ListHttpProbeResults.go.html to see an example of how to use ListHttpProbeResults API. func (client HealthChecksClient) ListHttpProbeResults(ctx context.Context, request ListHttpProbeResultsRequest) (response ListHttpProbeResultsResponse, err error) { @@ -872,7 +872,7 @@ func (client HealthChecksClient) listHttpProbeResults(ctx context.Context, reque // Results are paginated based on `page` and `limit`. The `opc-next-page` header provides // a URL for fetching the next page. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/ListPingMonitors.go.html to see an example of how to use ListPingMonitors API. func (client HealthChecksClient) ListPingMonitors(ctx context.Context, request ListPingMonitorsRequest) (response ListPingMonitorsResponse, err error) { @@ -934,7 +934,7 @@ func (client HealthChecksClient) listPingMonitors(ctx context.Context, request c // results. If `sortOrder` is unspecified, results are sorted in ascending order by // `startTime`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/ListPingProbeResults.go.html to see an example of how to use ListPingProbeResults API. func (client HealthChecksClient) ListPingProbeResults(ctx context.Context, request ListPingProbeResultsRequest) (response ListPingProbeResultsResponse, err error) { @@ -993,7 +993,7 @@ func (client HealthChecksClient) listPingProbeResults(ctx context.Context, reque // specified in the request body will be updated; all other configuration // properties will remain unchanged. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/UpdateHttpMonitor.go.html to see an example of how to use UpdateHttpMonitor API. func (client HealthChecksClient) UpdateHttpMonitor(ctx context.Context, request UpdateHttpMonitorRequest) (response UpdateHttpMonitorResponse, err error) { @@ -1052,7 +1052,7 @@ func (client HealthChecksClient) updateHttpMonitor(ctx context.Context, request // specified in the request body will be updated; all other configuration properties // will remain unchanged. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/healthchecks/UpdatePingMonitor.go.html to see an example of how to use UpdatePingMonitor API. func (client HealthChecksClient) UpdatePingMonitor(ctx context.Context, request UpdatePingMonitorRequest) (response UpdatePingMonitorResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identity/create_saml2_identity_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/identity/create_saml2_identity_provider_details.go index f0777103b13..98abf7dc9eb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identity/create_saml2_identity_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identity/create_saml2_identity_provider_details.go @@ -59,32 +59,32 @@ type CreateSaml2IdentityProviderDetails struct { ProductType CreateIdentityProviderDetailsProductTypeEnum `mandatory:"true" json:"productType"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateSaml2IdentityProviderDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetName returns Name +// GetName returns Name func (m CreateSaml2IdentityProviderDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateSaml2IdentityProviderDetails) GetDescription() *string { return m.Description } -//GetProductType returns ProductType +// GetProductType returns ProductType func (m CreateSaml2IdentityProviderDetails) GetProductType() CreateIdentityProviderDetailsProductTypeEnum { return m.ProductType } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSaml2IdentityProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSaml2IdentityProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identity/identity_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/identity/identity_client.go index 22b2418bcea..bd3e8b3b26f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identity/identity_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identity/identity_client.go @@ -98,7 +98,7 @@ func (client *IdentityClient) ConfigurationProvider() *common.ConfigurationProvi // To track the progress of the request, submitting an HTTP GET on the /iamWorkRequests/{iamWorkRequestsId} endpoint retrieves // the operation's status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ActivateDomain.go.html to see an example of how to use ActivateDomain API. // A default retry strategy applies to this operation ActivateDomain() @@ -162,7 +162,7 @@ func (client IdentityClient) activateDomain(ctx context.Context, request common. // ActivateMfaTotpDevice Activates the specified MFA TOTP device for the user. Activation requires manual interaction with the Console. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ActivateMfaTotpDevice.go.html to see an example of how to use ActivateMfaTotpDevice API. // A default retry strategy applies to this operation ActivateMfaTotpDevice() @@ -226,7 +226,7 @@ func (client IdentityClient) activateMfaTotpDevice(ctx context.Context, request // AddTagDefaultLock Add a resource lock to a tag default. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/AddTagDefaultLock.go.html to see an example of how to use AddTagDefaultLock API. // A default retry strategy applies to this operation AddTagDefaultLock() @@ -290,7 +290,7 @@ func (client IdentityClient) addTagDefaultLock(ctx context.Context, request comm // AddTagNamespaceLock Add a resource lock to a tag namespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/AddTagNamespaceLock.go.html to see an example of how to use AddTagNamespaceLock API. // A default retry strategy applies to this operation AddTagNamespaceLock() @@ -356,7 +356,7 @@ func (client IdentityClient) addTagNamespaceLock(ctx context.Context, request co // After you send your request, the new object's `lifecycleState` will temporarily be CREATING. Before using the // object, first make sure its `lifecycleState` has changed to ACTIVE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/AddUserToGroup.go.html to see an example of how to use AddUserToGroup API. // A default retry strategy applies to this operation AddUserToGroup() @@ -423,7 +423,7 @@ func (client IdentityClient) addUserToGroup(ctx context.Context, request common. // referencing the same tag in a compartment lower down the hierarchy. This set of tag defaults // includes all tag defaults from the current compartment back to the root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/AssembleEffectiveTagSet.go.html to see an example of how to use AssembleEffectiveTagSet API. // A default retry strategy applies to this operation AssembleEffectiveTagSet() @@ -485,7 +485,7 @@ func (client IdentityClient) assembleEffectiveTagSet(ctx context.Context, reques // WorkRequest. Use the GetWorkRequest // API to monitor the status of the bulk action. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/BulkDeleteResources.go.html to see an example of how to use BulkDeleteResources API. // A default retry strategy applies to this operation BulkDeleteResources() @@ -550,10 +550,11 @@ func (client IdentityClient) bulkDeleteResources(ctx context.Context, request co // BulkDeleteTags Deletes the specified tag key definitions. This operation triggers a process that removes the // tags from all resources in your tenancy. The tag key definitions must be within the same tag namespace. // The following actions happen immediately: -// * If the tag is a cost-tracking tag, the tag no longer counts against your -// 10 cost-tracking tags limit, even if you do not disable the tag before running this operation. -// * If the tag is used with dynamic groups, the rules that contain the tag are no longer -// evaluated against the tag. +// - If the tag is a cost-tracking tag, the tag no longer counts against your +// 10 cost-tracking tags limit, even if you do not disable the tag before running this operation. +// - If the tag is used with dynamic groups, the rules that contain the tag are no longer +// evaluated against the tag. +// // After you start this operation, the state of the tag changes to DELETING, and tag removal // from resources begins. This process can take up to 48 hours depending on the number of resources that // are tagged and the regions in which those resources reside. @@ -563,7 +564,7 @@ func (client IdentityClient) bulkDeleteResources(ctx context.Context, request co // In order to delete tags, you must first retire the tags. Use UpdateTag // to retire a tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/BulkDeleteTags.go.html to see an example of how to use BulkDeleteTags API. // A default retry strategy applies to this operation BulkDeleteTags() @@ -627,17 +628,18 @@ func (client IdentityClient) bulkDeleteTags(ctx context.Context, request common. // BulkEditTags Edits the specified list of tag key definitions for the selected resources. // This operation triggers a process that edits the tags on all selected resources. The possible actions are: -// * Add a defined tag when the tag does not already exist on the resource. -// * Update the value for a defined tag when the tag is present on the resource. -// * Add a defined tag when it does not already exist on the resource or update the value for a defined tag when the tag is present on the resource. -// * Remove a defined tag from a resource. The tag is removed from the resource regardless of the tag value. +// - Add a defined tag when the tag does not already exist on the resource. +// - Update the value for a defined tag when the tag is present on the resource. +// - Add a defined tag when it does not already exist on the resource or update the value for a defined tag when the tag is present on the resource. +// - Remove a defined tag from a resource. The tag is removed from the resource regardless of the tag value. +// // See BulkEditOperationDetails for more information. // The edits can include a combination of operations and tag sets. // However, multiple operations cannot apply to one key definition in the same request. // For example, if one request adds `tag set-1` to a resource and sets a tag value to `tag set-2`, // `tag set-1` and `tag set-2` cannot have any common tag definitions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/BulkEditTags.go.html to see an example of how to use BulkEditTags API. // A default retry strategy applies to this operation BulkEditTags() @@ -705,7 +707,7 @@ func (client IdentityClient) bulkEditTags(ctx context.Context, request common.OC // compartments. This operation creates a WorkRequest. // Use the GetWorkRequest API to monitor the status of the bulk action. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/BulkMoveResources.go.html to see an example of how to use BulkMoveResources API. // A default retry strategy applies to this operation BulkMoveResources() @@ -770,9 +772,10 @@ func (client IdentityClient) bulkMoveResources(ctx context.Context, request comm // CascadeDeleteTagNamespace Deletes the specified tag namespace. This operation triggers a process that removes all of the tags // defined in the specified tag namespace from all resources in your tenancy and then deletes the tag namespace. // After you start the delete operation: -// * New tag key definitions cannot be created under the namespace. -// * The state of the tag namespace changes to DELETING. -// * Tag removal from the resources begins. +// - New tag key definitions cannot be created under the namespace. +// - The state of the tag namespace changes to DELETING. +// - Tag removal from the resources begins. +// // This process can take up to 48 hours depending on the number of tag definitions in the namespace, the number of resources // that are tagged, and the locations of the regions in which those resources reside. // After all tags are removed, the state changes to DELETED. You cannot restore a deleted tag namespace. After the deleted tag namespace @@ -781,7 +784,7 @@ func (client IdentityClient) bulkMoveResources(ctx context.Context, request comm // To delete a tag namespace, you must first retire it. Use UpdateTagNamespace // to retire a tag namespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CascadeDeleteTagNamespace.go.html to see an example of how to use CascadeDeleteTagNamespace API. // A default retry strategy applies to this operation CascadeDeleteTagNamespace() @@ -847,7 +850,7 @@ func (client IdentityClient) cascadeDeleteTagNamespace(ctx context.Context, requ // To track the progress of the request, submitting an HTTP GET on the /iamWorkRequests/{iamWorkRequestsId} endpoint retrieves // the operation's status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ChangeDomainCompartment.go.html to see an example of how to use ChangeDomainCompartment API. // A default retry strategy applies to this operation ChangeDomainCompartment() @@ -917,7 +920,7 @@ func (client IdentityClient) changeDomainCompartment(ctx context.Context, reques // To track the progress of the request, submitting an HTTP GET on the /iamWorkRequests/{iamWorkRequestsId} endpoint retrieves // the operation's status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ChangeDomainLicenseType.go.html to see an example of how to use ChangeDomainLicenseType API. // A default retry strategy applies to this operation ChangeDomainLicenseType() @@ -984,7 +987,7 @@ func (client IdentityClient) changeDomainLicenseType(ctx context.Context, reques // For more information about IAM policies, see Details for IAM (https://docs.cloud.oracle.com/Content/Identity/policyreference/iampolicyreference.htm). // Moving a tag namespace moves all the tag key definitions contained in the tag namespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ChangeTagNamespaceCompartment.go.html to see an example of how to use ChangeTagNamespaceCompartment API. // A default retry strategy applies to this operation ChangeTagNamespaceCompartment() @@ -1055,7 +1058,7 @@ func (client IdentityClient) changeTagNamespaceCompartment(ctx context.Context, // does not need to write a policy to give users this ability. To compare, administrators who have permission to the // tenancy can use this operation to create an auth token for any user, including themselves. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateAuthToken.go.html to see an example of how to use CreateAuthToken API. // A default retry strategy applies to this operation CreateAuthToken() @@ -1131,7 +1134,7 @@ func (client IdentityClient) createAuthToken(ctx context.Context, request common // After you send your request, the new object's `lifecycleState` will temporarily be CREATING. Before using the // object, first make sure its `lifecycleState` has changed to ACTIVE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateCompartment.go.html to see an example of how to use CreateCompartment API. // A default retry strategy applies to this operation CreateCompartment() @@ -1203,7 +1206,7 @@ func (client IdentityClient) createCompartment(ctx context.Context, request comm // does not need to write a policy to give users this ability. To compare, administrators who have permission to the // tenancy can use this operation to create a secret key for any user, including themselves. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateCustomerSecretKey.go.html to see an example of how to use CreateCustomerSecretKey API. // A default retry strategy applies to this operation CreateCustomerSecretKey() @@ -1267,7 +1270,7 @@ func (client IdentityClient) createCustomerSecretKey(ctx context.Context, reques // CreateDbCredential Creates a new DB credential for the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateDbCredential.go.html to see an example of how to use CreateDbCredential API. // A default retry strategy applies to this operation CreateDbCredential() @@ -1336,7 +1339,7 @@ func (client IdentityClient) createDbCredential(ctx context.Context, request com // the operation's status. // After creating an `identity domain`, first make sure its `lifecycleState` changes from CREATING to ACTIVE before you use it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateDomain.go.html to see an example of how to use CreateDomain API. // A default retry strategy applies to this operation CreateDomain() @@ -1413,7 +1416,7 @@ func (client IdentityClient) createDomain(ctx context.Context, request common.OC // After you send your request, the new object's `lifecycleState` will temporarily be CREATING. Before using the // object, first make sure its `lifecycleState` has changed to ACTIVE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateDynamicGroup.go.html to see an example of how to use CreateDynamicGroup API. // A default retry strategy applies to this operation CreateDynamicGroup() @@ -1492,7 +1495,7 @@ func (client IdentityClient) createDynamicGroup(ctx context.Context, request com // See AddUserToGroup and // CreatePolicy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateGroup.go.html to see an example of how to use CreateGroup API. // A default retry strategy applies to this operation CreateGroup() @@ -1570,7 +1573,7 @@ func (client IdentityClient) createGroup(ctx context.Context, request common.OCI // be CREATING. Before using the object, first make sure its `lifecycleState` has // changed to ACTIVE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateIdentityProvider.go.html to see an example of how to use CreateIdentityProvider API. // A default retry strategy applies to this operation CreateIdentityProvider() @@ -1636,7 +1639,7 @@ func (client IdentityClient) createIdentityProvider(ctx context.Context, request // Creates a single mapping between an IdP group and an IAM Service // Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateIdpGroupMapping.go.html to see an example of how to use CreateIdpGroupMapping API. // A default retry strategy applies to this operation CreateIdpGroupMapping() @@ -1700,7 +1703,7 @@ func (client IdentityClient) createIdpGroupMapping(ctx context.Context, request // CreateMfaTotpDevice Creates a new MFA TOTP device for the user. A user can have one MFA TOTP device. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateMfaTotpDevice.go.html to see an example of how to use CreateMfaTotpDevice API. // A default retry strategy applies to this operation CreateMfaTotpDevice() @@ -1779,7 +1782,7 @@ func (client IdentityClient) createMfaTotpDevice(ctx context.Context, request co // After your network resource is created, you can use it in policy to restrict access to only requests made from an allowed // IP address specified in your network source. For more information, see Managing Network Sources (https://docs.cloud.oracle.com/Content/Identity/Tasks/managingnetworksources.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateNetworkSource.go.html to see an example of how to use CreateNetworkSource API. // A default retry strategy applies to this operation CreateNetworkSource() @@ -1843,7 +1846,7 @@ func (client IdentityClient) createNetworkSource(ctx context.Context, request co // CreateOAuthClientCredential Creates Oauth token for the user // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateOAuthClientCredential.go.html to see an example of how to use CreateOAuthClientCredential API. // A default retry strategy applies to this operation CreateOAuthClientCredential() @@ -1918,7 +1921,7 @@ func (client IdentityClient) createOAuthClientCredential(ctx context.Context, re // **Note:** The user's Console login is the unique name you specified when you created the user // (see CreateUser). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateOrResetUIPassword.go.html to see an example of how to use CreateOrResetUIPassword API. // A default retry strategy applies to this operation CreateOrResetUIPassword() @@ -1993,7 +1996,7 @@ func (client IdentityClient) createOrResetUIPassword(ctx context.Context, reques // object, first make sure its `lifecycleState` has changed to ACTIVE. // New policies take effect typically within 10 seconds. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreatePolicy.go.html to see an example of how to use CreatePolicy API. // A default retry strategy applies to this operation CreatePolicy() @@ -2057,7 +2060,7 @@ func (client IdentityClient) createPolicy(ctx context.Context, request common.OC // CreateRegionSubscription Creates a subscription to a region for a tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateRegionSubscription.go.html to see an example of how to use CreateRegionSubscription API. // A default retry strategy applies to this operation CreateRegionSubscription() @@ -2124,7 +2127,7 @@ func (client IdentityClient) createRegionSubscription(ctx context.Context, reque // have to be unique, and you can change it anytime with // UpdateSmtpCredential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateSmtpCredential.go.html to see an example of how to use CreateSmtpCredential API. // A default retry strategy applies to this operation CreateSmtpCredential() @@ -2196,7 +2199,7 @@ func (client IdentityClient) createSmtpCredential(ctx context.Context, request c // does not need to write a policy to give users this ability. To compare, administrators who have permission to the // tenancy can use this operation to create a Swift password for any user, including themselves. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateSwiftPassword.go.html to see an example of how to use CreateSwiftPassword API. // A default retry strategy applies to this operation CreateSwiftPassword() @@ -2276,7 +2279,7 @@ func (client IdentityClient) createSwiftPassword(ctx context.Context, request co // * If a `validator` is set, the user applying the tag to a resource must select from a list // of values that you supply with EnumTagDefinitionValidator. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateTag.go.html to see an example of how to use CreateTag API. // A default retry strategy applies to this operation CreateTag() @@ -2345,7 +2348,7 @@ func (client IdentityClient) createTag(ctx context.Context, request common.OCIRe // * If the `isRequired` flag is set to "true", the value is set during resource creation. // * If the `isRequired` flag is set to "false", the value you enter is set during resource creation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateTagDefault.go.html to see an example of how to use CreateTagDefault API. // A default retry strategy applies to this operation CreateTagDefault() @@ -2419,7 +2422,7 @@ func (client IdentityClient) createTagDefault(ctx context.Context, request commo // It does not have to be unique, and you can change it with // UpdateTagNamespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateTagNamespace.go.html to see an example of how to use CreateTagNamespace API. // A default retry strategy applies to this operation CreateTagNamespace() @@ -2511,7 +2514,7 @@ func (client IdentityClient) createTagNamespace(ctx context.Context, request com // UploadApiKey). // **Important:** Make sure to inform the new user which compartment(s) they have access to. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/CreateUser.go.html to see an example of how to use CreateUser API. // A default retry strategy applies to this operation CreateUser() @@ -2581,7 +2584,7 @@ func (client IdentityClient) createUser(ctx context.Context, request common.OCIR // To track the progress of the request, submitting an HTTP GET on the /iamWorkRequests/{iamWorkRequestsId} endpoint retrieves // the operation's status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeactivateDomain.go.html to see an example of how to use DeactivateDomain API. // A default retry strategy applies to this operation DeactivateDomain() @@ -2649,7 +2652,7 @@ func (client IdentityClient) deactivateDomain(ctx context.Context, request commo // To compare, administrators who have permission to the tenancy can use this operation to delete // a key for any user, including themselves. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteApiKey.go.html to see an example of how to use DeleteApiKey API. // A default retry strategy applies to this operation DeleteApiKey() @@ -2707,7 +2710,7 @@ func (client IdentityClient) deleteApiKey(ctx context.Context, request common.OC // DeleteAuthToken Deletes the specified auth token for the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteAuthToken.go.html to see an example of how to use DeleteAuthToken API. // A default retry strategy applies to this operation DeleteAuthToken() @@ -2765,7 +2768,7 @@ func (client IdentityClient) deleteAuthToken(ctx context.Context, request common // DeleteCompartment Deletes the specified compartment. The compartment must be empty. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteCompartment.go.html to see an example of how to use DeleteCompartment API. // A default retry strategy applies to this operation DeleteCompartment() @@ -2823,7 +2826,7 @@ func (client IdentityClient) deleteCompartment(ctx context.Context, request comm // DeleteCustomerSecretKey Deletes the specified secret key for the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteCustomerSecretKey.go.html to see an example of how to use DeleteCustomerSecretKey API. // A default retry strategy applies to this operation DeleteCustomerSecretKey() @@ -2881,7 +2884,7 @@ func (client IdentityClient) deleteCustomerSecretKey(ctx context.Context, reques // DeleteDbCredential Deletes the specified DB credential for the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteDbCredential.go.html to see an example of how to use DeleteDbCredential API. // A default retry strategy applies to this operation DeleteDbCredential() @@ -2945,7 +2948,7 @@ func (client IdentityClient) deleteDbCredential(ctx context.Context, request com // To track the progress of the request, submitting an HTTP GET on the /iamWorkRequests/{iamWorkRequestsId} endpoint retrieves // the operation's status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteDomain.go.html to see an example of how to use DeleteDomain API. // A default retry strategy applies to this operation DeleteDomain() @@ -3003,7 +3006,7 @@ func (client IdentityClient) deleteDomain(ctx context.Context, request common.OC // DeleteDynamicGroup Deletes the specified dynamic group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteDynamicGroup.go.html to see an example of how to use DeleteDynamicGroup API. // A default retry strategy applies to this operation DeleteDynamicGroup() @@ -3061,7 +3064,7 @@ func (client IdentityClient) deleteDynamicGroup(ctx context.Context, request com // DeleteGroup Deletes the specified group. The group must be empty. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteGroup.go.html to see an example of how to use DeleteGroup API. // A default retry strategy applies to this operation DeleteGroup() @@ -3121,7 +3124,7 @@ func (client IdentityClient) deleteGroup(ctx context.Context, request common.OCI // Deletes the specified identity provider. The identity provider must not have // any group mappings (see IdpGroupMapping). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteIdentityProvider.go.html to see an example of how to use DeleteIdentityProvider API. // A default retry strategy applies to this operation DeleteIdentityProvider() @@ -3180,7 +3183,7 @@ func (client IdentityClient) deleteIdentityProvider(ctx context.Context, request // DeleteIdpGroupMapping **Deprecated.** For more information, see Deprecated IAM Service APIs (https://docs.cloud.oracle.com/Content/Identity/Reference/deprecatediamapis.htm). // Deletes the specified group mapping. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteIdpGroupMapping.go.html to see an example of how to use DeleteIdpGroupMapping API. // A default retry strategy applies to this operation DeleteIdpGroupMapping() @@ -3238,7 +3241,7 @@ func (client IdentityClient) deleteIdpGroupMapping(ctx context.Context, request // DeleteMfaTotpDevice Deletes the specified MFA TOTP device for the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteMfaTotpDevice.go.html to see an example of how to use DeleteMfaTotpDevice API. // A default retry strategy applies to this operation DeleteMfaTotpDevice() @@ -3296,7 +3299,7 @@ func (client IdentityClient) deleteMfaTotpDevice(ctx context.Context, request co // DeleteNetworkSource Deletes the specified network source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteNetworkSource.go.html to see an example of how to use DeleteNetworkSource API. // A default retry strategy applies to this operation DeleteNetworkSource() @@ -3354,7 +3357,7 @@ func (client IdentityClient) deleteNetworkSource(ctx context.Context, request co // DeleteOAuthClientCredential Delete Oauth token for the user // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteOAuthClientCredential.go.html to see an example of how to use DeleteOAuthClientCredential API. // A default retry strategy applies to this operation DeleteOAuthClientCredential() @@ -3412,7 +3415,7 @@ func (client IdentityClient) deleteOAuthClientCredential(ctx context.Context, re // DeletePolicy Deletes the specified policy. The deletion takes effect typically within 10 seconds. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeletePolicy.go.html to see an example of how to use DeletePolicy API. // A default retry strategy applies to this operation DeletePolicy() @@ -3470,7 +3473,7 @@ func (client IdentityClient) deletePolicy(ctx context.Context, request common.OC // DeleteSmtpCredential Deletes the specified SMTP credential for the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteSmtpCredential.go.html to see an example of how to use DeleteSmtpCredential API. // A default retry strategy applies to this operation DeleteSmtpCredential() @@ -3529,7 +3532,7 @@ func (client IdentityClient) deleteSmtpCredential(ctx context.Context, request c // DeleteSwiftPassword **Deprecated. Use DeleteAuthToken instead.** // Deletes the specified Swift password for the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteSwiftPassword.go.html to see an example of how to use DeleteSwiftPassword API. // A default retry strategy applies to this operation DeleteSwiftPassword() @@ -3588,10 +3591,11 @@ func (client IdentityClient) deleteSwiftPassword(ctx context.Context, request co // DeleteTag Deletes the specified tag definition. This operation triggers a process that removes the // tag from all resources in your tenancy. // These things happen immediately: -// * If the tag was a cost-tracking tag, it no longer counts against your 10 cost-tracking -// tags limit, whether you first disabled it or not. -// * If the tag was used with dynamic groups, none of the rules that contain the tag will -// be evaluated against the tag. +// - If the tag was a cost-tracking tag, it no longer counts against your 10 cost-tracking +// tags limit, whether you first disabled it or not. +// - If the tag was used with dynamic groups, none of the rules that contain the tag will +// be evaluated against the tag. +// // When you start the delete operation, the state of the tag changes to DELETING and tag removal // from resources begins. This can take up to 48 hours depending on the number of resources that // were tagged as well as the regions in which those resources reside. @@ -3601,7 +3605,7 @@ func (client IdentityClient) deleteSwiftPassword(ctx context.Context, request co // To delete a tag, you must first retire it. Use UpdateTag // to retire a tag. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteTag.go.html to see an example of how to use DeleteTag API. // A default retry strategy applies to this operation DeleteTag() @@ -3659,7 +3663,7 @@ func (client IdentityClient) deleteTag(ctx context.Context, request common.OCIRe // DeleteTagDefault Deletes the the specified tag default. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteTagDefault.go.html to see an example of how to use DeleteTagDefault API. // A default retry strategy applies to this operation DeleteTagDefault() @@ -3721,7 +3725,7 @@ func (client IdentityClient) deleteTagDefault(ctx context.Context, request commo // the tag definitions contained within that namespace. // Use DeleteTag to delete a tag definition. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteTagNamespace.go.html to see an example of how to use DeleteTagNamespace API. // A default retry strategy applies to this operation DeleteTagNamespace() @@ -3779,7 +3783,7 @@ func (client IdentityClient) deleteTagNamespace(ctx context.Context, request com // DeleteUser Deletes the specified user. The user must not be in any groups. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/DeleteUser.go.html to see an example of how to use DeleteUser API. // A default retry strategy applies to this operation DeleteUser() @@ -3844,7 +3848,7 @@ func (client IdentityClient) deleteUser(ctx context.Context, request common.OCIR // To track the progress of the request, submitting an HTTP GET on the /iamWorkRequests/{iamWorkRequestsId} endpoint retrieves // the operation's status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/EnableReplicationToRegion.go.html to see an example of how to use EnableReplicationToRegion API. // A default retry strategy applies to this operation EnableReplicationToRegion() @@ -3908,7 +3912,7 @@ func (client IdentityClient) enableReplicationToRegion(ctx context.Context, requ // GenerateTotpSeed Generate seed for the MFA TOTP device. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GenerateTotpSeed.go.html to see an example of how to use GenerateTotpSeed API. // A default retry strategy applies to this operation GenerateTotpSeed() @@ -3968,7 +3972,7 @@ func (client IdentityClient) generateTotpSeed(ctx context.Context, request commo // GetAuthenticationPolicy Gets the authentication policy for the given tenancy. You must specify your tenant's OCID as the value for // the compartment ID (remember that the tenancy is simply the root compartment). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetAuthenticationPolicy.go.html to see an example of how to use GetAuthenticationPolicy API. // A default retry strategy applies to this operation GetAuthenticationPolicy() @@ -4032,7 +4036,7 @@ func (client IdentityClient) getAuthenticationPolicy(ctx context.Context, reques // call the ListInstances operation in the Cloud Compute // Service or the ListVolumes operation in Cloud Block Storage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetCompartment.go.html to see an example of how to use GetCompartment API. // A default retry strategy applies to this operation GetCompartment() @@ -4090,7 +4094,7 @@ func (client IdentityClient) getCompartment(ctx context.Context, request common. // GetDomain (For tenancies that support identity domains) Gets the specified identity domain's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetDomain.go.html to see an example of how to use GetDomain API. // A default retry strategy applies to this operation GetDomain() @@ -4148,7 +4152,7 @@ func (client IdentityClient) getDomain(ctx context.Context, request common.OCIRe // GetDynamicGroup Gets the specified dynamic group's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetDynamicGroup.go.html to see an example of how to use GetDynamicGroup API. // A default retry strategy applies to this operation GetDynamicGroup() @@ -4209,7 +4213,7 @@ func (client IdentityClient) getDynamicGroup(ctx context.Context, request common // ListUserGroupMemberships and // provide the group's OCID as a query parameter in the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetGroup.go.html to see an example of how to use GetGroup API. // A default retry strategy applies to this operation GetGroup() @@ -4267,7 +4271,7 @@ func (client IdentityClient) getGroup(ctx context.Context, request common.OCIReq // GetIamWorkRequest Gets the details of a specified IAM work request. The workRequestID is returned in the opc-workrequest-id header for any asynchronous operation in the Identity and Access Management service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetIamWorkRequest.go.html to see an example of how to use GetIamWorkRequest API. // A default retry strategy applies to this operation GetIamWorkRequest() @@ -4326,7 +4330,7 @@ func (client IdentityClient) getIamWorkRequest(ctx context.Context, request comm // GetIdentityProvider **Deprecated.** For more information, see Deprecated IAM Service APIs (https://docs.cloud.oracle.com/Content/Identity/Reference/deprecatediamapis.htm). // Gets the specified identity provider's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetIdentityProvider.go.html to see an example of how to use GetIdentityProvider API. // A default retry strategy applies to this operation GetIdentityProvider() @@ -4385,7 +4389,7 @@ func (client IdentityClient) getIdentityProvider(ctx context.Context, request co // GetIdpGroupMapping **Deprecated.** For more information, see Deprecated IAM Service APIs (https://docs.cloud.oracle.com/Content/Identity/Reference/deprecatediamapis.htm). // Gets the specified group mapping. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetIdpGroupMapping.go.html to see an example of how to use GetIdpGroupMapping API. // A default retry strategy applies to this operation GetIdpGroupMapping() @@ -4443,7 +4447,7 @@ func (client IdentityClient) getIdpGroupMapping(ctx context.Context, request com // GetMfaTotpDevice Get the specified MFA TOTP device for the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetMfaTotpDevice.go.html to see an example of how to use GetMfaTotpDevice API. // A default retry strategy applies to this operation GetMfaTotpDevice() @@ -4501,7 +4505,7 @@ func (client IdentityClient) getMfaTotpDevice(ctx context.Context, request commo // GetNetworkSource Gets the specified network source's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetNetworkSource.go.html to see an example of how to use GetNetworkSource API. // A default retry strategy applies to this operation GetNetworkSource() @@ -4559,7 +4563,7 @@ func (client IdentityClient) getNetworkSource(ctx context.Context, request commo // GetPolicy Gets the specified policy's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetPolicy.go.html to see an example of how to use GetPolicy API. // A default retry strategy applies to this operation GetPolicy() @@ -4617,7 +4621,7 @@ func (client IdentityClient) getPolicy(ctx context.Context, request common.OCIRe // GetStandardTagTemplate Retrieve the standard tag namespace template given the standard tag namespace name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetStandardTagTemplate.go.html to see an example of how to use GetStandardTagTemplate API. // A default retry strategy applies to this operation GetStandardTagTemplate() @@ -4675,7 +4679,7 @@ func (client IdentityClient) getStandardTagTemplate(ctx context.Context, request // GetTag Gets the specified tag's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetTag.go.html to see an example of how to use GetTag API. // A default retry strategy applies to this operation GetTag() @@ -4733,7 +4737,7 @@ func (client IdentityClient) getTag(ctx context.Context, request common.OCIReque // GetTagDefault Retrieves the specified tag default. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetTagDefault.go.html to see an example of how to use GetTagDefault API. // A default retry strategy applies to this operation GetTagDefault() @@ -4791,7 +4795,7 @@ func (client IdentityClient) getTagDefault(ctx context.Context, request common.O // GetTagNamespace Gets the specified tag namespace's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetTagNamespace.go.html to see an example of how to use GetTagNamespace API. // A default retry strategy applies to this operation GetTagNamespace() @@ -4850,7 +4854,7 @@ func (client IdentityClient) getTagNamespace(ctx context.Context, request common // GetTaggingWorkRequest Gets details on a specified work request. The workRequestID is returned in the opc-workrequest-id header // for any asynchronous operation in tagging service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetTaggingWorkRequest.go.html to see an example of how to use GetTaggingWorkRequest API. // A default retry strategy applies to this operation GetTaggingWorkRequest() @@ -4908,7 +4912,7 @@ func (client IdentityClient) getTaggingWorkRequest(ctx context.Context, request // GetTenancy Get the specified tenancy's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetTenancy.go.html to see an example of how to use GetTenancy API. // A default retry strategy applies to this operation GetTenancy() @@ -4966,7 +4970,7 @@ func (client IdentityClient) getTenancy(ctx context.Context, request common.OCIR // GetUser Gets the specified user's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetUser.go.html to see an example of how to use GetUser API. // A default retry strategy applies to this operation GetUser() @@ -5024,7 +5028,7 @@ func (client IdentityClient) getUser(ctx context.Context, request common.OCIRequ // GetUserGroupMembership Gets the specified UserGroupMembership's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetUserGroupMembership.go.html to see an example of how to use GetUserGroupMembership API. // A default retry strategy applies to this operation GetUserGroupMembership() @@ -5083,7 +5087,7 @@ func (client IdentityClient) getUserGroupMembership(ctx context.Context, request // GetUserUIPasswordInformation Gets the specified user's console password information. The returned object contains the user's OCID, // but not the password itself. The actual password is returned only when created or reset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetUserUIPasswordInformation.go.html to see an example of how to use GetUserUIPasswordInformation API. // A default retry strategy applies to this operation GetUserUIPasswordInformation() @@ -5142,7 +5146,7 @@ func (client IdentityClient) getUserUIPasswordInformation(ctx context.Context, r // GetWorkRequest Gets details on a specified work request. The workRequestID is returned in the opc-workrequest-id header // for any asynchronous operation in the compartment service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -5201,7 +5205,7 @@ func (client IdentityClient) getWorkRequest(ctx context.Context, request common. // ImportStandardTags OCI will release Tag Namespaces that our customers can import. // These Tag Namespaces will provide Tags for our customers and Partners to provide consistency and enable data reporting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ImportStandardTags.go.html to see an example of how to use ImportStandardTags API. // A default retry strategy applies to this operation ImportStandardTags() @@ -5268,7 +5272,7 @@ func (client IdentityClient) importStandardTags(ctx context.Context, request com // If `currentLicenseTypeName` is provided, then the request returns license types that the identity domain with the specified license // type name can change to. Otherwise, the request returns all valid license types currently supported. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListAllowedDomainLicenseTypes.go.html to see an example of how to use ListAllowedDomainLicenseTypes API. // A default retry strategy applies to this operation ListAllowedDomainLicenseTypes() @@ -5328,7 +5332,7 @@ func (client IdentityClient) listAllowedDomainLicenseTypes(ctx context.Context, // Every user has permission to use this API call for *their own user ID*. An administrator in your // organization does not need to write a policy to give users this ability. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListApiKeys.go.html to see an example of how to use ListApiKeys API. // A default retry strategy applies to this operation ListApiKeys() @@ -5387,7 +5391,7 @@ func (client IdentityClient) listApiKeys(ctx context.Context, request common.OCI // ListAuthTokens Lists the auth tokens for the specified user. The returned object contains the token's OCID, but not // the token itself. The actual token is returned only upon creation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListAuthTokens.go.html to see an example of how to use ListAuthTokens API. // A default retry strategy applies to this operation ListAuthTokens() @@ -5449,7 +5453,7 @@ func (client IdentityClient) listAuthTokens(ctx context.Context, request common. // Note that the order of the results returned can change if availability domains are added or removed; therefore, do not // create a dependency on the list order. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListAvailabilityDomains.go.html to see an example of how to use ListAvailabilityDomains API. // A default retry strategy applies to this operation ListAvailabilityDomains() @@ -5513,7 +5517,7 @@ func (client IdentityClient) listAvailabilityDomains(ctx context.Context, reques // require an OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) to identify a specific resource, but some resource-types, // such as buckets, require you to provide other identifying information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListBulkActionResourceTypes.go.html to see an example of how to use ListBulkActionResourceTypes API. // A default retry strategy applies to this operation ListBulkActionResourceTypes() @@ -5571,7 +5575,7 @@ func (client IdentityClient) listBulkActionResourceTypes(ctx context.Context, re // ListBulkEditTagsResourceTypes Lists the resource types that support bulk tag editing. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListBulkEditTagsResourceTypes.go.html to see an example of how to use ListBulkEditTagsResourceTypes API. // A default retry strategy applies to this operation ListBulkEditTagsResourceTypes() @@ -5642,7 +5646,7 @@ func (client IdentityClient) listBulkEditTagsResourceTypes(ctx context.Context, // set the parameter `compartmentIdInSubtree` to true and `accessLevel` to ANY. // See Where to Get the Tenancy's OCID and User's OCID (https://docs.cloud.oracle.com/Content/API/Concepts/apisigningkey.htm#five). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListCompartments.go.html to see an example of how to use ListCompartments API. // A default retry strategy applies to this operation ListCompartments() @@ -5701,7 +5705,7 @@ func (client IdentityClient) listCompartments(ctx context.Context, request commo // ListCostTrackingTags Lists all the tags enabled for cost-tracking in the specified tenancy. For information about // cost-tracking tags, see Using Cost-tracking Tags (https://docs.cloud.oracle.com/Content/Tagging/Tasks/usingcosttrackingtags.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListCostTrackingTags.go.html to see an example of how to use ListCostTrackingTags API. // A default retry strategy applies to this operation ListCostTrackingTags() @@ -5760,7 +5764,7 @@ func (client IdentityClient) listCostTrackingTags(ctx context.Context, request c // ListCustomerSecretKeys Lists the secret keys for the specified user. The returned object contains the secret key's OCID, but not // the secret key itself. The actual secret key is returned only upon creation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListCustomerSecretKeys.go.html to see an example of how to use ListCustomerSecretKeys API. // A default retry strategy applies to this operation ListCustomerSecretKeys() @@ -5818,7 +5822,7 @@ func (client IdentityClient) listCustomerSecretKeys(ctx context.Context, request // ListDbCredentials Lists the DB credentials for the specified user. The returned object contains the credential's OCID // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListDbCredentials.go.html to see an example of how to use ListDbCredentials API. // A default retry strategy applies to this operation ListDbCredentials() @@ -5876,7 +5880,7 @@ func (client IdentityClient) listDbCredentials(ctx context.Context, request comm // ListDomains (For tenancies that support identity domains) Lists all identity domains within a tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListDomains.go.html to see an example of how to use ListDomains API. // A default retry strategy applies to this operation ListDomains() @@ -5936,7 +5940,7 @@ func (client IdentityClient) listDomains(ctx context.Context, request common.OCI // the compartment ID (remember that the tenancy is simply the root compartment). // See Where to Get the Tenancy's OCID and User's OCID (https://docs.cloud.oracle.com/Content/API/Concepts/apisigningkey.htm#five). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListDynamicGroups.go.html to see an example of how to use ListDynamicGroups API. // A default retry strategy applies to this operation ListDynamicGroups() @@ -5996,7 +6000,7 @@ func (client IdentityClient) listDynamicGroups(ctx context.Context, request comm // of your compartments as the value for the compartment ID (remember that the tenancy is simply the root compartment). // See Where to Get the Tenancy's OCID and User's OCID (https://docs.cloud.oracle.com/Content/API/Concepts/apisigningkey.htm#five). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListFaultDomains.go.html to see an example of how to use ListFaultDomains API. // A default retry strategy applies to this operation ListFaultDomains() @@ -6056,7 +6060,7 @@ func (client IdentityClient) listFaultDomains(ctx context.Context, request commo // the compartment ID (remember that the tenancy is simply the root compartment). // See Where to Get the Tenancy's OCID and User's OCID (https://docs.cloud.oracle.com/Content/API/Concepts/apisigningkey.htm#five). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListGroups.go.html to see an example of how to use ListGroups API. // A default retry strategy applies to this operation ListGroups() @@ -6114,7 +6118,7 @@ func (client IdentityClient) listGroups(ctx context.Context, request common.OCIR // ListIamWorkRequestErrors Gets error details for a specified IAM work request. The workRequestID is returned in the opc-workrequest-id header for any asynchronous operation in the Identity and Access Management service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListIamWorkRequestErrors.go.html to see an example of how to use ListIamWorkRequestErrors API. // A default retry strategy applies to this operation ListIamWorkRequestErrors() @@ -6172,7 +6176,7 @@ func (client IdentityClient) listIamWorkRequestErrors(ctx context.Context, reque // ListIamWorkRequestLogs Gets logs for a specified IAM work request. The workRequestID is returned in the opc-workrequest-id header for any asynchronous operation in the Identity and Access Management service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListIamWorkRequestLogs.go.html to see an example of how to use ListIamWorkRequestLogs API. // A default retry strategy applies to this operation ListIamWorkRequestLogs() @@ -6230,7 +6234,7 @@ func (client IdentityClient) listIamWorkRequestLogs(ctx context.Context, request // ListIamWorkRequests Lists the IAM work requests in compartment. The workRequestID is returned in the opc-workrequest-id header for any asynchronous operation in the Identity and Access Management service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListIamWorkRequests.go.html to see an example of how to use ListIamWorkRequests API. // A default retry strategy applies to this operation ListIamWorkRequests() @@ -6289,7 +6293,7 @@ func (client IdentityClient) listIamWorkRequests(ctx context.Context, request co // ListIdentityProviderGroups **Deprecated.** For more information, see Deprecated IAM Service APIs (https://docs.cloud.oracle.com/Content/Identity/Reference/deprecatediamapis.htm). // Lists the identity provider groups. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListIdentityProviderGroups.go.html to see an example of how to use ListIdentityProviderGroups API. // A default retry strategy applies to this operation ListIdentityProviderGroups() @@ -6367,7 +6371,7 @@ func (m *listidentityprovider) UnmarshalPolymorphicJSON(data []byte) (interface{ // compartment ID (remember that the tenancy is simply the root compartment). // See Where to Get the Tenancy's OCID and User's OCID (https://docs.cloud.oracle.com/Content/API/Concepts/apisigningkey.htm#five). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListIdentityProviders.go.html to see an example of how to use ListIdentityProviders API. // A default retry strategy applies to this operation ListIdentityProviders() @@ -6426,7 +6430,7 @@ func (client IdentityClient) listIdentityProviders(ctx context.Context, request // ListIdpGroupMappings **Deprecated.** For more information, see Deprecated IAM Service APIs (https://docs.cloud.oracle.com/Content/Identity/Reference/deprecatediamapis.htm). // Lists the group mappings for the specified identity provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListIdpGroupMappings.go.html to see an example of how to use ListIdpGroupMappings API. // A default retry strategy applies to this operation ListIdpGroupMappings() @@ -6485,7 +6489,7 @@ func (client IdentityClient) listIdpGroupMappings(ctx context.Context, request c // ListMfaTotpDevices Lists the MFA TOTP devices for the specified user. The returned object contains the device's OCID, but not // the seed. The seed is returned only upon creation or when the IAM service regenerates the MFA seed for the device. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListMfaTotpDevices.go.html to see an example of how to use ListMfaTotpDevices API. // A default retry strategy applies to this operation ListMfaTotpDevices() @@ -6545,7 +6549,7 @@ func (client IdentityClient) listMfaTotpDevices(ctx context.Context, request com // the compartment ID (remember that the tenancy is simply the root compartment). // See Where to Get the Tenancy's OCID and User's OCID (https://docs.cloud.oracle.com/Content/API/Concepts/apisigningkey.htm#five). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListNetworkSources.go.html to see an example of how to use ListNetworkSources API. // A default retry strategy applies to this operation ListNetworkSources() @@ -6603,7 +6607,7 @@ func (client IdentityClient) listNetworkSources(ctx context.Context, request com // ListOAuthClientCredentials List of Oauth tokens for the user // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListOAuthClientCredentials.go.html to see an example of how to use ListOAuthClientCredentials API. // A default retry strategy applies to this operation ListOAuthClientCredentials() @@ -6664,7 +6668,7 @@ func (client IdentityClient) listOAuthClientCredentials(ctx context.Context, req // To determine which policies apply to a particular group or compartment, you must view the individual // statements inside all your policies. There isn't a way to automatically obtain that information via the API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListPolicies.go.html to see an example of how to use ListPolicies API. // A default retry strategy applies to this operation ListPolicies() @@ -6722,7 +6726,7 @@ func (client IdentityClient) listPolicies(ctx context.Context, request common.OC // ListRegionSubscriptions Lists the region subscriptions for the specified tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListRegionSubscriptions.go.html to see an example of how to use ListRegionSubscriptions API. // A default retry strategy applies to this operation ListRegionSubscriptions() @@ -6780,7 +6784,7 @@ func (client IdentityClient) listRegionSubscriptions(ctx context.Context, reques // ListRegions Lists all the regions offered by Oracle Cloud Infrastructure. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListRegions.go.html to see an example of how to use ListRegions API. // A default retry strategy applies to this operation ListRegions() @@ -6829,7 +6833,7 @@ func (client IdentityClient) listRegions(ctx context.Context) (common.OCIRespons // ListSmtpCredentials Lists the SMTP credentials for the specified user. The returned object contains the credential's OCID, // the SMTP user name but not the SMTP password. The SMTP password is returned only upon creation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListSmtpCredentials.go.html to see an example of how to use ListSmtpCredentials API. // A default retry strategy applies to this operation ListSmtpCredentials() @@ -6887,7 +6891,7 @@ func (client IdentityClient) listSmtpCredentials(ctx context.Context, request co // ListStandardTagNamespaces Lists available standard tag namespaces that users can create. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListStandardTagNamespaces.go.html to see an example of how to use ListStandardTagNamespaces API. // A default retry strategy applies to this operation ListStandardTagNamespaces() @@ -6947,7 +6951,7 @@ func (client IdentityClient) listStandardTagNamespaces(ctx context.Context, requ // Lists the Swift passwords for the specified user. The returned object contains the password's OCID, but not // the password itself. The actual password is returned only upon creation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListSwiftPasswords.go.html to see an example of how to use ListSwiftPasswords API. // A default retry strategy applies to this operation ListSwiftPasswords() @@ -7005,7 +7009,7 @@ func (client IdentityClient) listSwiftPasswords(ctx context.Context, request com // ListTagDefaults Lists the tag defaults for tag definitions in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListTagDefaults.go.html to see an example of how to use ListTagDefaults API. // A default retry strategy applies to this operation ListTagDefaults() @@ -7063,7 +7067,7 @@ func (client IdentityClient) listTagDefaults(ctx context.Context, request common // ListTagNamespaces Lists the tag namespaces in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListTagNamespaces.go.html to see an example of how to use ListTagNamespaces API. // A default retry strategy applies to this operation ListTagNamespaces() @@ -7121,7 +7125,7 @@ func (client IdentityClient) listTagNamespaces(ctx context.Context, request comm // ListTaggingWorkRequestErrors Gets the errors for a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListTaggingWorkRequestErrors.go.html to see an example of how to use ListTaggingWorkRequestErrors API. // A default retry strategy applies to this operation ListTaggingWorkRequestErrors() @@ -7179,7 +7183,7 @@ func (client IdentityClient) listTaggingWorkRequestErrors(ctx context.Context, r // ListTaggingWorkRequestLogs Gets the logs for a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListTaggingWorkRequestLogs.go.html to see an example of how to use ListTaggingWorkRequestLogs API. // A default retry strategy applies to this operation ListTaggingWorkRequestLogs() @@ -7237,7 +7241,7 @@ func (client IdentityClient) listTaggingWorkRequestLogs(ctx context.Context, req // ListTaggingWorkRequests Lists the tagging work requests in compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListTaggingWorkRequests.go.html to see an example of how to use ListTaggingWorkRequests API. // A default retry strategy applies to this operation ListTaggingWorkRequests() @@ -7295,7 +7299,7 @@ func (client IdentityClient) listTaggingWorkRequests(ctx context.Context, reques // ListTags Lists the tag definitions in the specified tag namespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListTags.go.html to see an example of how to use ListTags API. // A default retry strategy applies to this operation ListTags() @@ -7361,7 +7365,7 @@ func (client IdentityClient) listTags(ctx context.Context, request common.OCIReq // If the answer is no, the response is an empty list. // - Although`userId` and `groupId` are not individually required, you must set one of them. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListUserGroupMemberships.go.html to see an example of how to use ListUserGroupMemberships API. // A default retry strategy applies to this operation ListUserGroupMemberships() @@ -7421,7 +7425,7 @@ func (client IdentityClient) listUserGroupMemberships(ctx context.Context, reque // compartment ID (remember that the tenancy is simply the root compartment). // See Where to Get the Tenancy's OCID and User's OCID (https://docs.cloud.oracle.com/Content/API/Concepts/apisigningkey.htm#five). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListUsers.go.html to see an example of how to use ListUsers API. // A default retry strategy applies to this operation ListUsers() @@ -7479,7 +7483,7 @@ func (client IdentityClient) listUsers(ctx context.Context, request common.OCIRe // ListWorkRequests Lists the work requests in compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -7543,7 +7547,7 @@ func (client IdentityClient) listWorkRequests(ctx context.Context, request commo // are aware of the implications for the compartment contents before you move it. For more // information, see Moving a Compartment (https://docs.cloud.oracle.com/Content/Identity/compartments/managingcompartments.htm#MoveCompartment). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/MoveCompartment.go.html to see an example of how to use MoveCompartment API. // A default retry strategy applies to this operation MoveCompartment() @@ -7607,7 +7611,7 @@ func (client IdentityClient) moveCompartment(ctx context.Context, request common // RecoverCompartment Recover the compartment from DELETED state to ACTIVE state. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/RecoverCompartment.go.html to see an example of how to use RecoverCompartment API. // A default retry strategy applies to this operation RecoverCompartment() @@ -7666,7 +7670,7 @@ func (client IdentityClient) recoverCompartment(ctx context.Context, request com // RemoveTagDefaultLock Remove a resource lock from a tag default. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/RemoveTagDefaultLock.go.html to see an example of how to use RemoveTagDefaultLock API. // A default retry strategy applies to this operation RemoveTagDefaultLock() @@ -7730,7 +7734,7 @@ func (client IdentityClient) removeTagDefaultLock(ctx context.Context, request c // RemoveTagNamespaceLock Remove a resource lock from a tag namespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/RemoveTagNamespaceLock.go.html to see an example of how to use RemoveTagNamespaceLock API. // A default retry strategy applies to this operation RemoveTagNamespaceLock() @@ -7794,7 +7798,7 @@ func (client IdentityClient) removeTagNamespaceLock(ctx context.Context, request // RemoveUserFromGroup Removes a user from a group by deleting the corresponding `UserGroupMembership`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/RemoveUserFromGroup.go.html to see an example of how to use RemoveUserFromGroup API. // A default retry strategy applies to this operation RemoveUserFromGroup() @@ -7852,7 +7856,7 @@ func (client IdentityClient) removeUserFromGroup(ctx context.Context, request co // ResetIdpScimClient Resets the OAuth2 client credentials for the SCIM client associated with this identity provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/ResetIdpScimClient.go.html to see an example of how to use ResetIdpScimClient API. // A default retry strategy applies to this operation ResetIdpScimClient() @@ -7911,7 +7915,7 @@ func (client IdentityClient) resetIdpScimClient(ctx context.Context, request com // UpdateAuthToken Updates the specified auth token's description. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateAuthToken.go.html to see an example of how to use UpdateAuthToken API. // A default retry strategy applies to this operation UpdateAuthToken() @@ -7970,7 +7974,7 @@ func (client IdentityClient) updateAuthToken(ctx context.Context, request common // UpdateAuthenticationPolicy Updates authentication policy for the specified tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateAuthenticationPolicy.go.html to see an example of how to use UpdateAuthenticationPolicy API. // A default retry strategy applies to this operation UpdateAuthenticationPolicy() @@ -8029,7 +8033,7 @@ func (client IdentityClient) updateAuthenticationPolicy(ctx context.Context, req // UpdateCompartment Updates the specified compartment's description or name. You can't update the root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateCompartment.go.html to see an example of how to use UpdateCompartment API. // A default retry strategy applies to this operation UpdateCompartment() @@ -8088,7 +8092,7 @@ func (client IdentityClient) updateCompartment(ctx context.Context, request comm // UpdateCustomerSecretKey Updates the specified secret key's description. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateCustomerSecretKey.go.html to see an example of how to use UpdateCustomerSecretKey API. // A default retry strategy applies to this operation UpdateCustomerSecretKey() @@ -8149,7 +8153,7 @@ func (client IdentityClient) updateCustomerSecretKey(ctx context.Context, reques // To track the progress of the request, submitting an HTTP GET on the /iamWorkRequests/{iamWorkRequestsId} endpoint retrieves // the operation's status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateDomain.go.html to see an example of how to use UpdateDomain API. // A default retry strategy applies to this operation UpdateDomain() @@ -8208,7 +8212,7 @@ func (client IdentityClient) updateDomain(ctx context.Context, request common.OC // UpdateDynamicGroup Updates the specified dynamic group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateDynamicGroup.go.html to see an example of how to use UpdateDynamicGroup API. // A default retry strategy applies to this operation UpdateDynamicGroup() @@ -8267,7 +8271,7 @@ func (client IdentityClient) updateDynamicGroup(ctx context.Context, request com // UpdateGroup Updates the specified group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateGroup.go.html to see an example of how to use UpdateGroup API. // A default retry strategy applies to this operation UpdateGroup() @@ -8327,7 +8331,7 @@ func (client IdentityClient) updateGroup(ctx context.Context, request common.OCI // UpdateIdentityProvider **Deprecated.** For more information, see Deprecated IAM Service APIs (https://docs.cloud.oracle.com/Content/Identity/Reference/deprecatediamapis.htm). // Updates the specified identity provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateIdentityProvider.go.html to see an example of how to use UpdateIdentityProvider API. // A default retry strategy applies to this operation UpdateIdentityProvider() @@ -8387,7 +8391,7 @@ func (client IdentityClient) updateIdentityProvider(ctx context.Context, request // UpdateIdpGroupMapping **Deprecated.** For more information, see Deprecated IAM Service APIs (https://docs.cloud.oracle.com/Content/Identity/Reference/deprecatediamapis.htm). // Updates the specified group mapping. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateIdpGroupMapping.go.html to see an example of how to use UpdateIdpGroupMapping API. // A default retry strategy applies to this operation UpdateIdpGroupMapping() @@ -8446,7 +8450,7 @@ func (client IdentityClient) updateIdpGroupMapping(ctx context.Context, request // UpdateNetworkSource Updates the specified network source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateNetworkSource.go.html to see an example of how to use UpdateNetworkSource API. // A default retry strategy applies to this operation UpdateNetworkSource() @@ -8505,7 +8509,7 @@ func (client IdentityClient) updateNetworkSource(ctx context.Context, request co // UpdateOAuthClientCredential Updates Oauth token for the user // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateOAuthClientCredential.go.html to see an example of how to use UpdateOAuthClientCredential API. // A default retry strategy applies to this operation UpdateOAuthClientCredential() @@ -8565,7 +8569,7 @@ func (client IdentityClient) updateOAuthClientCredential(ctx context.Context, re // UpdatePolicy Updates the specified policy. You can update the description or the policy statements themselves. // Policy changes take effect typically within 10 seconds. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdatePolicy.go.html to see an example of how to use UpdatePolicy API. // A default retry strategy applies to this operation UpdatePolicy() @@ -8624,7 +8628,7 @@ func (client IdentityClient) updatePolicy(ctx context.Context, request common.OC // UpdateSmtpCredential Updates the specified SMTP credential's description. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateSmtpCredential.go.html to see an example of how to use UpdateSmtpCredential API. // A default retry strategy applies to this operation UpdateSmtpCredential() @@ -8684,7 +8688,7 @@ func (client IdentityClient) updateSmtpCredential(ctx context.Context, request c // UpdateSwiftPassword **Deprecated. Use UpdateAuthToken instead.** // Updates the specified Swift password's description. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateSwiftPassword.go.html to see an example of how to use UpdateSwiftPassword API. // A default retry strategy applies to this operation UpdateSwiftPassword() @@ -8750,7 +8754,7 @@ func (client IdentityClient) updateSwiftPassword(ctx context.Context, request co // You cannot remove list values that appear in a TagDefault. To remove a list value that // appears in a TagDefault, first update the TagDefault to use a different value. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateTag.go.html to see an example of how to use UpdateTag API. // A default retry strategy applies to this operation UpdateTag() @@ -8813,7 +8817,7 @@ func (client IdentityClient) updateTag(ctx context.Context, request common.OCIRe // * If the `isRequired` flag is set to "true", the value is set during resource creation. // * If the `isRequired` flag is set to "false", the value you enter is set during resource creation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateTagDefault.go.html to see an example of how to use UpdateTagDefault API. // A default retry strategy applies to this operation UpdateTagDefault() @@ -8878,7 +8882,7 @@ func (client IdentityClient) updateTagDefault(ctx context.Context, request commo // Retiring Key Definitions and Namespace Definitions (https://docs.cloud.oracle.com/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm#retiringkeys). // You can't add a namespace with the same name as a retired namespace in the same tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateTagNamespace.go.html to see an example of how to use UpdateTagNamespace API. // A default retry strategy applies to this operation UpdateTagNamespace() @@ -8937,7 +8941,7 @@ func (client IdentityClient) updateTagNamespace(ctx context.Context, request com // UpdateUser Updates the description of the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateUser.go.html to see an example of how to use UpdateUser API. // A default retry strategy applies to this operation UpdateUser() @@ -8996,7 +9000,7 @@ func (client IdentityClient) updateUser(ctx context.Context, request common.OCIR // UpdateUserCapabilities Updates the capabilities of the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateUserCapabilities.go.html to see an example of how to use UpdateUserCapabilities API. // A default retry strategy applies to this operation UpdateUserCapabilities() @@ -9055,7 +9059,7 @@ func (client IdentityClient) updateUserCapabilities(ctx context.Context, request // UpdateUserState Updates the state of the specified user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UpdateUserState.go.html to see an example of how to use UpdateUserState API. // A default retry strategy applies to this operation UpdateUserState() @@ -9125,7 +9129,7 @@ func (client IdentityClient) updateUserState(ctx context.Context, request common // After you send your request, the new object's `lifecycleState` will temporarily be CREATING. Before using // the object, first make sure its `lifecycleState` has changed to ACTIVE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identity/UploadApiKey.go.html to see an example of how to use UploadApiKey API. // A default retry strategy applies to this operation UploadApiKey() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identity/policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identity/policy.go index cc4b8c73571..c286ea619fb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identity/policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identity/policy.go @@ -20,9 +20,10 @@ import ( // Overview of IAM (https://docs.cloud.oracle.com/Content/Identity/getstarted/identity-domains.htm). If you're new to policies, see // Get Started with Policies (https://docs.cloud.oracle.com/Content/Identity/policiesgs/get-started-with-policies.htm). // The word "policy" is used by people in different ways: -// * An individual statement written in the policy language -// * A collection of statements in a single, named "policy" document (which has an Oracle Cloud ID (OCID) assigned to it) -// * The overall body of policies your organization uses to control access to resources +// - An individual statement written in the policy language +// - A collection of statements in a single, named "policy" document (which has an Oracle Cloud ID (OCID) assigned to it) +// - The overall body of policies your organization uses to control access to resources +// // To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, // talk to an administrator. // **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identity/saml2_identity_provider.go b/vendor/github.com/oracle/oci-go-sdk/v65/identity/saml2_identity_provider.go index 782793c899b..66eb4de6f98 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identity/saml2_identity_provider.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identity/saml2_identity_provider.go @@ -88,52 +88,52 @@ type Saml2IdentityProvider struct { LifecycleState IdentityProviderLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m Saml2IdentityProvider) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m Saml2IdentityProvider) GetCompartmentId() *string { return m.CompartmentId } -//GetName returns Name +// GetName returns Name func (m Saml2IdentityProvider) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m Saml2IdentityProvider) GetDescription() *string { return m.Description } -//GetProductType returns ProductType +// GetProductType returns ProductType func (m Saml2IdentityProvider) GetProductType() *string { return m.ProductType } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m Saml2IdentityProvider) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m Saml2IdentityProvider) GetLifecycleState() IdentityProviderLifecycleStateEnum { return m.LifecycleState } -//GetInactiveStatus returns InactiveStatus +// GetInactiveStatus returns InactiveStatus func (m Saml2IdentityProvider) GetInactiveStatus() *int64 { return m.InactiveStatus } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m Saml2IdentityProvider) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m Saml2IdentityProvider) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identity/update_saml2_identity_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/identity/update_saml2_identity_provider_details.go index 388d5947843..8ad3155632a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identity/update_saml2_identity_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identity/update_saml2_identity_provider_details.go @@ -45,17 +45,17 @@ type UpdateSaml2IdentityProviderDetails struct { FreeformAttributes map[string]string `mandatory:"false" json:"freeformAttributes"` } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateSaml2IdentityProviderDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateSaml2IdentityProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateSaml2IdentityProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydataplane/identitydataplane_dataplane_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydataplane/identitydataplane_dataplane_client.go index 4afb3ed44da..4eaddee34df 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydataplane/identitydataplane_dataplane_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydataplane/identitydataplane_dataplane_client.go @@ -93,7 +93,7 @@ func (client *DataplaneClient) ConfigurationProvider() *common.ConfigurationProv // GenerateScopedAccessToken Based on the calling Principal and the input payload, derive the claims, and generate a scoped-access token for specific resources. For example, set scope to urn:oracle:db::id:: for access to a database in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydataplane/GenerateScopedAccessToken.go.html to see an example of how to use GenerateScopedAccessToken API. func (client DataplaneClient) GenerateScopedAccessToken(ctx context.Context, request GenerateScopedAccessTokenRequest) (response GenerateScopedAccessTokenResponse, err error) { @@ -152,7 +152,7 @@ func (client DataplaneClient) generateScopedAccessToken(ctx context.Context, req // user principal. When not specified, the user session duration is set to a default of 60 minutes in all realms. Resulting UPSTs // are refreshable while the user session has not expired. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydataplane/GenerateUserSecurityToken.go.html to see an example of how to use GenerateUserSecurityToken API. func (client DataplaneClient) GenerateUserSecurityToken(ctx context.Context, request GenerateUserSecurityTokenRequest) (response GenerateUserSecurityTokenResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_app.go index be42b1fc784..cbbe31294ba 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_app.go @@ -18,13 +18,13 @@ import ( // AccountMgmtInfoApp Application on which the account is based // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type AccountMgmtInfoApp struct { // Application identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_object_class.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_object_class.go index 7155ba996f3..412eb61c489 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_object_class.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_object_class.go @@ -18,13 +18,13 @@ import ( // AccountMgmtInfoObjectClass Object-class of the Account // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AccountMgmtInfoObjectClass struct { // Object-class Identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_owner.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_owner.go index 2038908b8d8..17952eef436 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_owner.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_owner.go @@ -18,13 +18,13 @@ import ( // AccountMgmtInfoOwner Owning user of the account // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AccountMgmtInfoOwner struct { // User Identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_resource_type.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_resource_type.go index e29d956e9d5..7d8147d1b01 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_resource_type.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_resource_type.go @@ -18,13 +18,13 @@ import ( // AccountMgmtInfoResourceType Resource Type of the Account // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AccountMgmtInfoResourceType struct { // Resource Type Identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_user_wallet_artifact.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_user_wallet_artifact.go index f5f1777c25a..7579036fc99 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_user_wallet_artifact.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/account_mgmt_info_user_wallet_artifact.go @@ -18,13 +18,13 @@ import ( // AccountMgmtInfoUserWalletArtifact The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AccountMgmtInfoUserWalletArtifact struct { // UserWalletArtifact identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/api_key_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/api_key_user.go index db4d470a2f4..fafeb133410 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/api_key_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/api_key_user.go @@ -18,14 +18,14 @@ import ( // ApiKeyUser The user linked to the API key. // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type ApiKeyUser struct { // The user's ID. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_allow_authz_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_allow_authz_policy.go index 747d09acd68..705225c2abe 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_allow_authz_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_allow_authz_policy.go @@ -19,12 +19,12 @@ import ( // AppAllowAuthzPolicy Allow Authz Policy. // **Added In:** 19.2.1 // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppAllowAuthzPolicy struct { // Identifier of the Policy. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_app_resources.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_app_resources.go index fc71b3d526d..98a9c6692e6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_app_resources.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_app_resources.go @@ -19,14 +19,14 @@ import ( // AppAppResources A list of AppResources of this App. // **Added In:** 19.2.1 // **SCIM++ Properties:** -// - caseExact: true -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - caseExact: true +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppAppResources struct { // The id of an AppResource of this App. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_app_signon_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_app_signon_policy.go index 2440c94305d..468302a1a1d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_app_signon_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_app_signon_policy.go @@ -18,12 +18,12 @@ import ( // AppAppSignonPolicy App Sign-on Policy. // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppAppSignonPolicy struct { // Identifier of the Policy. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_as_opc_service.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_as_opc_service.go index 62e5e2be139..c0a068d3241 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_as_opc_service.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_as_opc_service.go @@ -19,12 +19,12 @@ import ( // AppAsOpcService OPCService facet of the application. // **Deprecated Since: 17.3.4** // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppAsOpcService struct { // Identifier of the OPCService facet. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_based_on_template.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_based_on_template.go index 84acf1e3853..e42cfedbb3d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_based_on_template.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_based_on_template.go @@ -18,12 +18,12 @@ import ( // AppBasedOnTemplate Application template on which the application is based. // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: true -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: true +// - returned: default +// - type: complex type AppBasedOnTemplate struct { // Identifier of the application template. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_bundle_configuration_properties.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_bundle_configuration_properties.go index 69f78db1a4f..2299498066a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_bundle_configuration_properties.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_bundle_configuration_properties.go @@ -18,14 +18,14 @@ import ( // AppBundleConfigurationProperties ConnectorBundle configuration properties // **SCIM++ Properties:** -// - idcsCompositeKey: [name] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [name] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppBundleConfigurationProperties struct { // Name of the bundle configuration property. This attribute maps to \"name\" attribute in \"ConfigurationProperty\" in ICF. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_bundle_pool_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_bundle_pool_configuration.go index cb0c2c1e649..2f7e330f29c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_bundle_pool_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_bundle_pool_configuration.go @@ -18,13 +18,13 @@ import ( // AppBundlePoolConfiguration Configurable options maintaining a pool of ICF connector instances. Values for sub attributes can be set only if the ConnectorBundle referenced in the App has connectorPoolingSupported set to true // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppBundlePoolConfiguration struct { // Maximum number of connector instances in the pool that are idle and active. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_connector_bundle.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_connector_bundle.go index 47ec6026b5b..9b45f366e2c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_connector_bundle.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_connector_bundle.go @@ -18,13 +18,13 @@ import ( // AppConnectorBundle ConnectorBundle // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppConnectorBundle struct { // ConnectorBundle identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_deny_authz_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_deny_authz_policy.go index f3c3282cf6b..9652547726d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_deny_authz_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_deny_authz_policy.go @@ -19,12 +19,12 @@ import ( // AppDenyAuthzPolicy Deny Authz Policy. // **Added In:** 19.2.1 // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppDenyAuthzPolicy struct { // Identifier of the Policy. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_domain_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_domain_app.go index 948e8cb6e68..8c4c4d37886 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_domain_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_domain_app.go @@ -19,13 +19,13 @@ import ( // AppDomainApp Description: // **Added In:** 18.2.2 // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppDomainApp struct { // DB Domain App identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_flat_file_bundle_configuration_properties.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_flat_file_bundle_configuration_properties.go index fbe6bc0dc0d..80ac98edb25 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_flat_file_bundle_configuration_properties.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_flat_file_bundle_configuration_properties.go @@ -18,14 +18,14 @@ import ( // AppFlatFileBundleConfigurationProperties Flat file connector bundle configuration properties // **SCIM++ Properties:** -// - idcsCompositeKey: [name] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [name] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppFlatFileBundleConfigurationProperties struct { // Name of the flatfile bundle configuration property. This attribute maps to \"name\" attribute in \"ConfigurationProperty\" in ICF. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_flat_file_connector_bundle.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_flat_file_connector_bundle.go index 7054fdd1e73..5ab125733e9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_flat_file_connector_bundle.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_flat_file_connector_bundle.go @@ -18,13 +18,13 @@ import ( // AppFlatFileConnectorBundle Flat file connector bundle to sync from a flat file. // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppFlatFileConnectorBundle struct { // ConnectorBundle identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_form_fill_url_match.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_form_fill_url_match.go index bce75bd4881..509fac51112 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_form_fill_url_match.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_form_fill_url_match.go @@ -18,13 +18,13 @@ import ( // AppFormFillUrlMatch A list of application-formURLs that FormFill should match against any formUrl that the user-specifies when signing in to the target service. Each item in the list also indicates how FormFill should interpret that formUrl. // **SCIM++ Properties:** -// - idcsCompositeKey: [formUrl] -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [formUrl] +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppFormFillUrlMatch struct { // An application formUrl that FormFill will match against any formUrl that a User enters in trying to access the target-service which this App represents. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_group_assertion_attributes.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_group_assertion_attributes.go index c229cb6433b..8306f2827f7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_group_assertion_attributes.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_group_assertion_attributes.go @@ -19,16 +19,16 @@ import ( // AppGroupAssertionAttributes Each value of this attribute describes an attribute of Group that will be sent in a Security Assertion Markup Language (SAML) assertion. // **Deprecated Since: 18.2.2** // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [name] -// - idcsSearchable: false -// - idcsValuePersistedInOtherAttribute: true -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [name] +// - idcsSearchable: false +// - idcsValuePersistedInOtherAttribute: true +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppGroupAssertionAttributes struct { // The attribute represents the name of the attribute that will be used in the Security Assertion Markup Language (SAML) assertion diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_group_membership_to_return.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_group_membership_to_return.go index 280cc1c1da2..cecc2733d98 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_group_membership_to_return.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_group_membership_to_return.go @@ -19,14 +19,14 @@ import ( // AppGroupMembershipToReturn In a successful authentication response, Oracle Identity Cloud Service will pass user's group information restricted to groups persisted in this attribute, in the specified RADIUS attribute. // **Added In:** 20.1.3 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type AppGroupMembershipToReturn struct { // The identifier of the User's group. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_identity_bridges.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_identity_bridges.go index 087c916d9ac..78fc7f8ab86 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_identity_bridges.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_identity_bridges.go @@ -19,13 +19,13 @@ import ( // AppIdentityBridges IdentityBridges associated with this App // **Added In:** 19.1.4 // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type AppIdentityBridges struct { // The Id of the IdentityBridge associated with the App. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_idp_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_idp_policy.go index fc4241d3f9e..96b7f203ec8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_idp_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_idp_policy.go @@ -19,12 +19,12 @@ import ( // AppIdpPolicy IDP Policy. // **Added In:** 18.1.2 // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppIdpPolicy struct { // Identifier of the Policy. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_object_classes.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_object_classes.go index dfa7075dd2c..ce398c3d128 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_object_classes.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_object_classes.go @@ -18,14 +18,14 @@ import ( // AppObjectClasses Object classes // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppObjectClasses struct { // Object class template identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_outbound_assertion_attributes.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_outbound_assertion_attributes.go index 49b2f787e32..b73e25332d0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_outbound_assertion_attributes.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_outbound_assertion_attributes.go @@ -19,15 +19,15 @@ import ( // AppOutboundAssertionAttributes Use to construct the outgoing SAML attributes // **Added In:** 18.2.6 // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppOutboundAssertionAttributes struct { // Mapped Attribute identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_radius_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_radius_policy.go index 0d20aed0783..2e0ed35318a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_radius_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_radius_policy.go @@ -19,12 +19,12 @@ import ( // AppRadiusPolicy RADIUS Policy assigned to this application. // **Added In:** 2209070044 // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppRadiusPolicy struct { // Identifier of the Policy. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_role_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_role_app.go index e3fd38ad30d..4027467edfb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_role_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_role_app.go @@ -18,14 +18,14 @@ import ( // AppRoleApp A unique identifier for the application that references this role. // **SCIM++ Properties:** -// - idcsSearchable: true -// - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, mapsTo:app.display]] -// - multiValued: false -// - mutability: immutable -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, mapsTo:app.display]] +// - multiValued: false +// - mutability: immutable +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type AppRoleApp struct { // App identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_saml_service_provider.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_saml_service_provider.go index 6235580d2d7..35ba94810bf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_saml_service_provider.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_saml_service_provider.go @@ -18,13 +18,13 @@ import ( // AppSamlServiceProvider An attribute that refers to the SAML Service Provider that runtime services will use to log an end user in to this App automatically. Note that this will be used only if the loginMechanism is 'SAML'. // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppSamlServiceProvider struct { // The id of the App that acts as a Service Provider. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_signon_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_signon_policy.go index e9964affc9b..7b57de08769 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_signon_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_signon_policy.go @@ -19,12 +19,12 @@ import ( // AppSignonPolicy Sign-on Policy. // **Deprecated Since: 17.3.4** // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppSignonPolicy struct { // Identifier of the Policy. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_terms_of_use.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_terms_of_use.go index d4c95b13dfa..86ec6905a7b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_terms_of_use.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_terms_of_use.go @@ -19,12 +19,12 @@ import ( // AppTermsOfUse Terms Of Use. // **Added In:** 18.2.6 // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppTermsOfUse struct { // Identifier of the TermsOfUse diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_three_legged_o_auth_credential.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_three_legged_o_auth_credential.go index af8bb61d65c..b8f33f55179 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_three_legged_o_auth_credential.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_three_legged_o_auth_credential.go @@ -18,12 +18,12 @@ import ( // AppThreeLeggedOAuthCredential The value of this attribute persists any OAuth access token that the system uses to connect to this ManagedApp. The system obtains this access token using an OAuth protocol flow that could be two-legged or three-legged. A two-legged flow involves only the requester and the server. A three-legged flow also requires the consent of a user -- in this case the consent of an administrator. // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex type AppThreeLeggedOAuthCredential struct { // Access Token diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_user_assertion_attributes.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_user_assertion_attributes.go index 3a78561d39b..14dcccbb46f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_user_assertion_attributes.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/app_user_assertion_attributes.go @@ -19,16 +19,16 @@ import ( // AppUserAssertionAttributes Each value of this attribute describes an attribute of User that will be sent in a Security Assertion Markup Language (SAML) assertion. // **Deprecated Since: 18.2.2** // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [name] -// - idcsSearchable: false -// - idcsValuePersistedInOtherAttribute: true -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [name] +// - idcsSearchable: false +// - idcsValuePersistedInOtherAttribute: true +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AppUserAssertionAttributes struct { // The attribute represents the name of the attribute that will be used in the Security Assertion Markup Language (SAML) assertion diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/auth_token_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/auth_token_user.go index 846c830d106..d9aeaa5499f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/auth_token_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/auth_token_user.go @@ -18,14 +18,14 @@ import ( // AuthTokenUser The user linked to the Auth token. // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AuthTokenUser struct { // The user's ID. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_bypass_code_settings.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_bypass_code_settings.go index 7b7ab5d3c0f..b1307ac20c6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_bypass_code_settings.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_bypass_code_settings.go @@ -18,13 +18,13 @@ import ( // AuthenticationFactorSettingsBypassCodeSettings Settings related to the bypass code, such as bypass code length, bypass code expiry, max active bypass codes, and so on // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorSettingsBypassCodeSettings struct { // If true, indicates that self-service bypass code generation is enabled diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_client_app_settings.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_client_app_settings.go index 096512a6d60..30df52d524b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_client_app_settings.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_client_app_settings.go @@ -18,13 +18,13 @@ import ( // AuthenticationFactorSettingsClientAppSettings Settings related to compliance, Personal Identification Number (PIN) policy, and so on // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorSettingsClientAppSettings struct { // Minimum length of the Personal Identification Number (PIN) diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_duo_security_settings.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_duo_security_settings.go index 55191f7bf3f..1ff7e041069 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_duo_security_settings.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_duo_security_settings.go @@ -19,13 +19,13 @@ import ( // AuthenticationFactorSettingsDuoSecuritySettings Settings related to Duo Security // **Added In:** 19.2.1 // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorSettingsDuoSecuritySettings struct { // Integration key from Duo Security authenticator diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_email_settings.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_email_settings.go index 421db326b63..b0ac62f7834 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_email_settings.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_email_settings.go @@ -19,13 +19,13 @@ import ( // AuthenticationFactorSettingsEmailSettings Settings related to Email Factor, such as enabled email magic link factor, custom url for Email Link // **Added In:** 20.1.3 // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorSettingsEmailSettings struct { // Specifies whether Email link is enabled or not. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_endpoint_restrictions.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_endpoint_restrictions.go index 00bd41c4d36..b316b888357 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_endpoint_restrictions.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_endpoint_restrictions.go @@ -18,13 +18,13 @@ import ( // AuthenticationFactorSettingsEndpointRestrictions Settings that describe the set of restrictions that the system should apply to devices and trusted endpoints of a user // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorSettingsEndpointRestrictions struct { // Maximum number of enrolled devices per user diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_identity_store_settings.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_identity_store_settings.go index 0abb5e81731..5fca5e7022d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_identity_store_settings.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_identity_store_settings.go @@ -18,13 +18,13 @@ import ( // AuthenticationFactorSettingsIdentityStoreSettings Settings related to the use of a user's profile details from the identity store // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorSettingsIdentityStoreSettings struct { // If true, indicates that Multi-Factor Authentication should use the mobile number in the identity store diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_notification_settings.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_notification_settings.go index 661bb06f731..04be17500c4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_notification_settings.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_notification_settings.go @@ -19,13 +19,13 @@ import ( // AuthenticationFactorSettingsNotificationSettings Settings related to the Mobile App Notification channel, such as pull // **Added In:** 17.4.2 // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorSettingsNotificationSettings struct { // If true, indicates that the Mobile App Pull Notification channel is enabled for authentication diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_third_party_factor.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_third_party_factor.go index 87919a2a9ff..3fd93459806 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_third_party_factor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_third_party_factor.go @@ -19,13 +19,13 @@ import ( // AuthenticationFactorSettingsThirdPartyFactor Settings related to third-party factor // **Added In:** 19.2.1 // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorSettingsThirdPartyFactor struct { // To enable Duo Security factor diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_totp_settings.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_totp_settings.go index 2f2f2b1ca41..f162de510d0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_totp_settings.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factor_settings_totp_settings.go @@ -18,13 +18,13 @@ import ( // AuthenticationFactorSettingsTotpSettings Settings related to Time-Based One-Time Passcodes (TOTP), such as hashing algo, totp time step, passcode length, and so on // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorSettingsTotpSettings struct { // The hashing algorithm to be used to calculate a One-Time Passcode. By default, the system uses SHA1. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factors_remover_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factors_remover_user.go index a387f41889d..5f872d29732 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factors_remover_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/authentication_factors_remover_user.go @@ -18,14 +18,14 @@ import ( // AuthenticationFactorsRemoverUser User for whom the authentication factors need to be deleted // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type AuthenticationFactorsRemoverUser struct { // The identifier of the user diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/customer_secret_key_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/customer_secret_key_user.go index 4a6f79d0aae..50a08621392 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/customer_secret_key_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/customer_secret_key_user.go @@ -18,14 +18,14 @@ import ( // CustomerSecretKeyUser User linked to customer secret key // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type CustomerSecretKeyUser struct { // The user's ID. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/defined_tags.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/defined_tags.go index 5d0cda472eb..55a8d86615c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/defined_tags.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/defined_tags.go @@ -19,13 +19,13 @@ import ( // DefinedTags OCI Defined Tags // **Added In:** 2011192329 // **SCIM++ Properties:** -// - idcsCompositeKey: [namespace, key, value] -// - type: complex -// - idcsSearchable: true -// - required: false -// - mutability: readWrite -// - multiValued: true -// - returned: default +// - idcsCompositeKey: [namespace, key, value] +// - type: complex +// - idcsSearchable: true +// - required: false +// - mutability: readWrite +// - multiValued: true +// - returned: default type DefinedTags struct { // OCI Tag namespace diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/freeform_tags.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/freeform_tags.go index 0fa3385a5e2..cb867ed02e2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/freeform_tags.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/freeform_tags.go @@ -19,13 +19,13 @@ import ( // FreeformTags OCI Freeform Tags // **Added In:** 2011192329 // **SCIM++ Properties:** -// - idcsCompositeKey: [key, value] -// - idcsSearchable: true -// - type: complex -// - required: false -// - mutability: readWrite -// - returned: default -// - multiValued: true +// - idcsCompositeKey: [key, value] +// - idcsSearchable: true +// - type: complex +// - required: false +// - mutability: readWrite +// - returned: default +// - multiValued: true type FreeformTags struct { // OCI Tag key diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_app.go index cc97892253d..d82d0ee28f5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_app.go @@ -18,14 +18,14 @@ import ( // GrantApp Application that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. // **SCIM++ Properties:** -// - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]] -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCsvAttributeNameMappings: [[columnHeaderName:App Name, defaultValue:jobParam:appDisplayName, mapsTo:app.value]] +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type GrantApp struct { // Application identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_app_entitlement_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_app_entitlement_collection.go index 62bc1af3774..a980629a050 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_app_entitlement_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_app_entitlement_collection.go @@ -19,13 +19,13 @@ import ( // GrantAppEntitlementCollection Application-Entitlement-Collection that is being granted. Each Grant must grant either an App or an App-Entitlement-Collection. // **Added In:** 18.2.4 // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type GrantAppEntitlementCollection struct { // Application Entitlement Collection identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_entitlement.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_entitlement.go index 5d7f2f7c34b..9ebda03aee3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_entitlement.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_entitlement.go @@ -18,13 +18,13 @@ import ( // GrantEntitlement The entitlement or privilege that is being granted // **SCIM++ Properties:** -// - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]] -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex +// - idcsCsvAttributeNameMappings: [[columnHeaderName:Entitlement Value, csvColumnForResolvingResourceType:Entitlement Name, mapsTo:entitlement.attributeValue, referencedResourceTypeUniqueAttributeNameMappings:[[mapsFromColumnName:Entitlement Value, resourceTypeAttributeName:displayName], [mapsFromColumnName:App Name, resourceTypeAttributeName:app.display]], resolveValueUsingResourceType:[[resolveBy:AppRole, valueToBeResolved:appRoles]]], [columnHeaderName:Entitlement Name, defaultValue:appRoles, mapsTo:entitlement.attributeName]] +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex type GrantEntitlement struct { // The name of the attribute whose value (specified by attributeValue) confers privilege within the service-instance (specified by app). diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_grantee.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_grantee.go index e0a0abd9893..d3db2d65cb3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_grantee.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_grantee.go @@ -18,14 +18,14 @@ import ( // GrantGrantee Grantee beneficiary. The grantee may be a User, Group, App or DynamicResourceGroup. // **SCIM++ Properties:** -// - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]] -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCsvAttributeNameMappings: [[columnHeaderName:Grantee Name, csvColumnForResolvingResourceType:Grantee Type, mapsTo:grantee.value], [columnHeaderName:Grantee Type, mapsTo:grantee.type]] +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type GrantGrantee struct { // Grantee identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_grantor.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_grantor.go index 837d0de0649..c6ad9d7d0c6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_grantor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/grant_grantor.go @@ -18,13 +18,13 @@ import ( // GrantGrantor User conferring the grant to the beneficiary // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - idcsIgnoreReadOnlyAndImmutableRefAttrsDuringForceDelete: true +// - required: false +// - returned: default +// - type: complex type GrantGrantor struct { // Resource type of the grantor. Allowed values are User and App. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_app_roles.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_app_roles.go index e705af66add..e554bc37faf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_app_roles.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_app_roles.go @@ -18,15 +18,15 @@ import ( // GroupExtAppRoles A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type GroupExtAppRoles struct { // The identifier of the appRole diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_domain_level_schema_names.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_domain_level_schema_names.go index 494f6a535ec..670a2b85e41 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_domain_level_schema_names.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_domain_level_schema_names.go @@ -19,13 +19,13 @@ import ( // GroupExtDomainLevelSchemaNames DBCS Domain-level schema-names. Each value is specific to a DB Domain. // **Added In:** 18.2.4 // **SCIM++ Properties:** -// - idcsCompositeKey: [domainName, schemaName] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex +// - idcsCompositeKey: [domainName, schemaName] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex type GroupExtDomainLevelSchemaNames struct { // DBCS Domain Name diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_grants.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_grants.go index d2ae23f9e38..2f65c5aca00 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_grants.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_grants.go @@ -18,13 +18,13 @@ import ( // GroupExtGrants Grants assigned to group // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type GroupExtGrants struct { // Grant identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_instance_level_schema_names.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_instance_level_schema_names.go index 1cc09c4a6d0..94cd9a52d34 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_instance_level_schema_names.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_instance_level_schema_names.go @@ -19,13 +19,13 @@ import ( // GroupExtInstanceLevelSchemaNames DBCS instance-level schema-names. Each schema-name is specific to a DB Instance. // **Added In:** 18.2.4 // **SCIM++ Properties:** -// - idcsCompositeKey: [dbInstanceId, schemaName] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex +// - idcsCompositeKey: [dbInstanceId, schemaName] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex type GroupExtInstanceLevelSchemaNames struct { // App Id of DBCS App instance diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_owners.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_owners.go index 64bee9be761..2ea54ae166b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_owners.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_owners.go @@ -18,15 +18,15 @@ import ( // GroupExtOwners Group owners // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [value, type] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [value, type] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type GroupExtOwners struct { // ID of the owner of this Group diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_password_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_password_policy.go index b22ee1fae75..3467918c70f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_password_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_password_policy.go @@ -19,15 +19,15 @@ import ( // GroupExtPasswordPolicy Password Policy associated with this Group. // **Added In:** 20.1.3 // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type GroupExtPasswordPolicy struct { // The ID of the PasswordPolicy. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_synced_from_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_synced_from_app.go index 7e8805ff509..2fa60d250c5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_synced_from_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/group_ext_synced_from_app.go @@ -19,14 +19,14 @@ import ( // GroupExtSyncedFromApp The entity that created this Group. // **Added In:** 18.4.2 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type GroupExtSyncedFromApp struct { // The ID of the App. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/idcs_created_by.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/idcs_created_by.go index 72701866501..42ebfdc6e09 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/idcs_created_by.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/idcs_created_by.go @@ -18,12 +18,12 @@ import ( // IdcsCreatedBy The User or App who created the Resource // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: true -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: true +// - returned: default +// - type: complex type IdcsCreatedBy struct { // The ID of the SCIM resource that represents the User or App who created this Resource diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/idcs_last_modified_by.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/idcs_last_modified_by.go index 4e36a04e1db..1f97afbfcca 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/idcs_last_modified_by.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/idcs_last_modified_by.go @@ -18,12 +18,12 @@ import ( // IdcsLastModifiedBy The User or App who modified the Resource // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex type IdcsLastModifiedBy struct { // The ID of the SCIM resource that represents the User or App who modified this Resource diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_provider_correlation_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_provider_correlation_policy.go index 2149bb78bb9..49b89e1abb9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_provider_correlation_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_provider_correlation_policy.go @@ -19,14 +19,14 @@ import ( // IdentityProviderCorrelationPolicy Correlation policy // **Added In:** 20.1.3 // **SCIM++ Properties:** -// - caseExact: true -// - idcsSearchable: false -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: true +// - idcsSearchable: false +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type IdentityProviderCorrelationPolicy struct { // A label that indicates the type that this references. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_provider_jit_user_prov_attributes.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_provider_jit_user_prov_attributes.go index 68cf27713bf..c2f233a549b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_provider_jit_user_prov_attributes.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_provider_jit_user_prov_attributes.go @@ -19,14 +19,14 @@ import ( // IdentityProviderJitUserProvAttributes Assertion To User Mapping // **Added In:** 20.1.3 // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [value] -// - idcsSearchable: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [value] +// - idcsSearchable: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type IdentityProviderJitUserProvAttributes struct { // Mapped Attribute identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_my_profile.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_my_profile.go index a9d067c5318..89e87dcb2bb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_my_profile.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_my_profile.go @@ -19,11 +19,11 @@ import ( // IdentitySettingsMyProfile Whether to allow users to update their own profile. // **Added In:** 2207040824 // **SCIM++ Properties:** -// - caseExact: false -// - multiValued: false -// - required: false -// - type: complex -// - uniqueness: none +// - caseExact: false +// - multiValued: false +// - required: false +// - type: complex +// - uniqueness: none type IdentitySettingsMyProfile struct { // Whether to allow users to change their own password. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_posix_gid.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_posix_gid.go index 24f6a6199e5..6f9729ddeee 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_posix_gid.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_posix_gid.go @@ -19,11 +19,11 @@ import ( // IdentitySettingsPosixGid A list of Posix Gid settings. // **Added In:** 17.4.6 // **SCIM++ Properties:** -// - caseExact: false -// - multiValued: false -// - required: false -// - type: complex -// - uniqueness: none +// - caseExact: false +// - multiValued: false +// - required: false +// - type: complex +// - uniqueness: none type IdentitySettingsPosixGid struct { // The number from which the Posix Gid Manual assignment starts. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_posix_uid.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_posix_uid.go index be9c2b45875..08db155de0c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_posix_uid.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identity_settings_posix_uid.go @@ -19,11 +19,11 @@ import ( // IdentitySettingsPosixUid A list of Posix Uid settings. // **Added In:** 17.4.6 // **SCIM++ Properties:** -// - caseExact: false -// - multiValued: false -// - required: false -// - type: complex -// - uniqueness: none +// - caseExact: false +// - multiValued: false +// - required: false +// - type: complex +// - uniqueness: none type IdentitySettingsPosixUid struct { // The number from which the Posix Uid Manual assignment starts. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identitydomains_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identitydomains_client.go index ceffcc5ebd5..5d7f55b19ad 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identitydomains_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/identitydomains_client.go @@ -82,7 +82,7 @@ func (client *IdentityDomainsClient) ConfigurationProvider() *common.Configurati // CreateApiKey Create a user's API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateApiKey.go.html to see an example of how to use CreateApiKey API. func (client IdentityDomainsClient) CreateApiKey(ctx context.Context, request CreateApiKeyRequest) (response CreateApiKeyResponse, err error) { @@ -144,7 +144,7 @@ func (client IdentityDomainsClient) createApiKey(ctx context.Context, request co // CreateApp Create an App // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateApp.go.html to see an example of how to use CreateApp API. func (client IdentityDomainsClient) CreateApp(ctx context.Context, request CreateAppRequest) (response CreateAppResponse, err error) { @@ -206,7 +206,7 @@ func (client IdentityDomainsClient) createApp(ctx context.Context, request commo // CreateAppRole Create an AppRole // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateAppRole.go.html to see an example of how to use CreateAppRole API. func (client IdentityDomainsClient) CreateAppRole(ctx context.Context, request CreateAppRoleRequest) (response CreateAppRoleResponse, err error) { @@ -268,7 +268,7 @@ func (client IdentityDomainsClient) createAppRole(ctx context.Context, request c // CreateAuthToken Create a user's Auth token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateAuthToken.go.html to see an example of how to use CreateAuthToken API. func (client IdentityDomainsClient) CreateAuthToken(ctx context.Context, request CreateAuthTokenRequest) (response CreateAuthTokenResponse, err error) { @@ -330,7 +330,7 @@ func (client IdentityDomainsClient) createAuthToken(ctx context.Context, request // CreateAuthenticationFactorsRemover Remove All Authentication Factor Channels for a User // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateAuthenticationFactorsRemover.go.html to see an example of how to use CreateAuthenticationFactorsRemover API. func (client IdentityDomainsClient) CreateAuthenticationFactorsRemover(ctx context.Context, request CreateAuthenticationFactorsRemoverRequest) (response CreateAuthenticationFactorsRemoverResponse, err error) { @@ -392,7 +392,7 @@ func (client IdentityDomainsClient) createAuthenticationFactorsRemover(ctx conte // CreateCustomerSecretKey Create a user's customer secret key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateCustomerSecretKey.go.html to see an example of how to use CreateCustomerSecretKey API. func (client IdentityDomainsClient) CreateCustomerSecretKey(ctx context.Context, request CreateCustomerSecretKeyRequest) (response CreateCustomerSecretKeyResponse, err error) { @@ -454,7 +454,7 @@ func (client IdentityDomainsClient) createCustomerSecretKey(ctx context.Context, // CreateDynamicResourceGroup Create a Dynamic Resource Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateDynamicResourceGroup.go.html to see an example of how to use CreateDynamicResourceGroup API. func (client IdentityDomainsClient) CreateDynamicResourceGroup(ctx context.Context, request CreateDynamicResourceGroupRequest) (response CreateDynamicResourceGroupResponse, err error) { @@ -516,7 +516,7 @@ func (client IdentityDomainsClient) createDynamicResourceGroup(ctx context.Conte // CreateGrant Add a Grantee to an AppRole // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateGrant.go.html to see an example of how to use CreateGrant API. func (client IdentityDomainsClient) CreateGrant(ctx context.Context, request CreateGrantRequest) (response CreateGrantResponse, err error) { @@ -578,7 +578,7 @@ func (client IdentityDomainsClient) createGrant(ctx context.Context, request com // CreateGroup Create a group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateGroup.go.html to see an example of how to use CreateGroup API. func (client IdentityDomainsClient) CreateGroup(ctx context.Context, request CreateGroupRequest) (response CreateGroupResponse, err error) { @@ -640,7 +640,7 @@ func (client IdentityDomainsClient) createGroup(ctx context.Context, request com // CreateIdentityProvider Create an Identity Provider // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateIdentityProvider.go.html to see an example of how to use CreateIdentityProvider API. func (client IdentityDomainsClient) CreateIdentityProvider(ctx context.Context, request CreateIdentityProviderRequest) (response CreateIdentityProviderResponse, err error) { @@ -702,7 +702,7 @@ func (client IdentityDomainsClient) createIdentityProvider(ctx context.Context, // CreateMe Self register a user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMe.go.html to see an example of how to use CreateMe API. func (client IdentityDomainsClient) CreateMe(ctx context.Context, request CreateMeRequest) (response CreateMeResponse, err error) { @@ -764,7 +764,7 @@ func (client IdentityDomainsClient) createMe(ctx context.Context, request common // CreateMyApiKey Add a user's own API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMyApiKey.go.html to see an example of how to use CreateMyApiKey API. func (client IdentityDomainsClient) CreateMyApiKey(ctx context.Context, request CreateMyApiKeyRequest) (response CreateMyApiKeyResponse, err error) { @@ -826,7 +826,7 @@ func (client IdentityDomainsClient) createMyApiKey(ctx context.Context, request // CreateMyAuthToken Create a user's own Auth token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMyAuthToken.go.html to see an example of how to use CreateMyAuthToken API. func (client IdentityDomainsClient) CreateMyAuthToken(ctx context.Context, request CreateMyAuthTokenRequest) (response CreateMyAuthTokenResponse, err error) { @@ -888,7 +888,7 @@ func (client IdentityDomainsClient) createMyAuthToken(ctx context.Context, reque // CreateMyAuthenticationFactorInitiator Initiate Self Service Enrollment using the Requested MFA Factor // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMyAuthenticationFactorInitiator.go.html to see an example of how to use CreateMyAuthenticationFactorInitiator API. func (client IdentityDomainsClient) CreateMyAuthenticationFactorInitiator(ctx context.Context, request CreateMyAuthenticationFactorInitiatorRequest) (response CreateMyAuthenticationFactorInitiatorResponse, err error) { @@ -950,7 +950,7 @@ func (client IdentityDomainsClient) createMyAuthenticationFactorInitiator(ctx co // CreateMyAuthenticationFactorValidator Validate Self Service Enrollment using the Requested MFA Factor // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMyAuthenticationFactorValidator.go.html to see an example of how to use CreateMyAuthenticationFactorValidator API. func (client IdentityDomainsClient) CreateMyAuthenticationFactorValidator(ctx context.Context, request CreateMyAuthenticationFactorValidatorRequest) (response CreateMyAuthenticationFactorValidatorResponse, err error) { @@ -1012,7 +1012,7 @@ func (client IdentityDomainsClient) createMyAuthenticationFactorValidator(ctx co // CreateMyAuthenticationFactorsRemover Remove All Authentication Factor Channels for a User // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMyAuthenticationFactorsRemover.go.html to see an example of how to use CreateMyAuthenticationFactorsRemover API. func (client IdentityDomainsClient) CreateMyAuthenticationFactorsRemover(ctx context.Context, request CreateMyAuthenticationFactorsRemoverRequest) (response CreateMyAuthenticationFactorsRemoverResponse, err error) { @@ -1074,7 +1074,7 @@ func (client IdentityDomainsClient) createMyAuthenticationFactorsRemover(ctx con // CreateMyCustomerSecretKey Add a user's own customer secret key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMyCustomerSecretKey.go.html to see an example of how to use CreateMyCustomerSecretKey API. func (client IdentityDomainsClient) CreateMyCustomerSecretKey(ctx context.Context, request CreateMyCustomerSecretKeyRequest) (response CreateMyCustomerSecretKeyResponse, err error) { @@ -1136,7 +1136,7 @@ func (client IdentityDomainsClient) createMyCustomerSecretKey(ctx context.Contex // CreateMyOAuth2ClientCredential Create a user's own OAuth2 client credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMyOAuth2ClientCredential.go.html to see an example of how to use CreateMyOAuth2ClientCredential API. func (client IdentityDomainsClient) CreateMyOAuth2ClientCredential(ctx context.Context, request CreateMyOAuth2ClientCredentialRequest) (response CreateMyOAuth2ClientCredentialResponse, err error) { @@ -1198,7 +1198,7 @@ func (client IdentityDomainsClient) createMyOAuth2ClientCredential(ctx context.C // CreateMyRequest Create a Request // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMyRequest.go.html to see an example of how to use CreateMyRequest API. func (client IdentityDomainsClient) CreateMyRequest(ctx context.Context, request CreateMyRequestRequest) (response CreateMyRequestResponse, err error) { @@ -1260,7 +1260,7 @@ func (client IdentityDomainsClient) createMyRequest(ctx context.Context, request // CreateMySmtpCredential Create a user's own SMTP credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMySmtpCredential.go.html to see an example of how to use CreateMySmtpCredential API. func (client IdentityDomainsClient) CreateMySmtpCredential(ctx context.Context, request CreateMySmtpCredentialRequest) (response CreateMySmtpCredentialResponse, err error) { @@ -1322,7 +1322,7 @@ func (client IdentityDomainsClient) createMySmtpCredential(ctx context.Context, // CreateMySupportAccount Create a user's own support account. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMySupportAccount.go.html to see an example of how to use CreateMySupportAccount API. func (client IdentityDomainsClient) CreateMySupportAccount(ctx context.Context, request CreateMySupportAccountRequest) (response CreateMySupportAccountResponse, err error) { @@ -1384,7 +1384,7 @@ func (client IdentityDomainsClient) createMySupportAccount(ctx context.Context, // CreateMyUserDbCredential Create a user's own database (DB) credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateMyUserDbCredential.go.html to see an example of how to use CreateMyUserDbCredential API. func (client IdentityDomainsClient) CreateMyUserDbCredential(ctx context.Context, request CreateMyUserDbCredentialRequest) (response CreateMyUserDbCredentialResponse, err error) { @@ -1446,7 +1446,7 @@ func (client IdentityDomainsClient) createMyUserDbCredential(ctx context.Context // CreateOAuth2ClientCredential Add a user's OAuth2 client credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateOAuth2ClientCredential.go.html to see an example of how to use CreateOAuth2ClientCredential API. func (client IdentityDomainsClient) CreateOAuth2ClientCredential(ctx context.Context, request CreateOAuth2ClientCredentialRequest) (response CreateOAuth2ClientCredentialResponse, err error) { @@ -1508,7 +1508,7 @@ func (client IdentityDomainsClient) createOAuth2ClientCredential(ctx context.Con // CreatePasswordPolicy Create a password policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreatePasswordPolicy.go.html to see an example of how to use CreatePasswordPolicy API. func (client IdentityDomainsClient) CreatePasswordPolicy(ctx context.Context, request CreatePasswordPolicyRequest) (response CreatePasswordPolicyResponse, err error) { @@ -1570,7 +1570,7 @@ func (client IdentityDomainsClient) createPasswordPolicy(ctx context.Context, re // CreateSecurityQuestion Create a security question. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateSecurityQuestion.go.html to see an example of how to use CreateSecurityQuestion API. func (client IdentityDomainsClient) CreateSecurityQuestion(ctx context.Context, request CreateSecurityQuestionRequest) (response CreateSecurityQuestionResponse, err error) { @@ -1632,7 +1632,7 @@ func (client IdentityDomainsClient) createSecurityQuestion(ctx context.Context, // CreateSmtpCredential Create a user's SMTP credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateSmtpCredential.go.html to see an example of how to use CreateSmtpCredential API. func (client IdentityDomainsClient) CreateSmtpCredential(ctx context.Context, request CreateSmtpCredentialRequest) (response CreateSmtpCredentialResponse, err error) { @@ -1694,7 +1694,7 @@ func (client IdentityDomainsClient) createSmtpCredential(ctx context.Context, re // CreateUser Create a user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateUser.go.html to see an example of how to use CreateUser API. func (client IdentityDomainsClient) CreateUser(ctx context.Context, request CreateUserRequest) (response CreateUserResponse, err error) { @@ -1756,7 +1756,7 @@ func (client IdentityDomainsClient) createUser(ctx context.Context, request comm // CreateUserDbCredential Create a user's database (DB) credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/CreateUserDbCredential.go.html to see an example of how to use CreateUserDbCredential API. func (client IdentityDomainsClient) CreateUserDbCredential(ctx context.Context, request CreateUserDbCredentialRequest) (response CreateUserDbCredentialResponse, err error) { @@ -1818,7 +1818,7 @@ func (client IdentityDomainsClient) createUserDbCredential(ctx context.Context, // DeleteApiKey Delete a user's API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteApiKey.go.html to see an example of how to use DeleteApiKey API. func (client IdentityDomainsClient) DeleteApiKey(ctx context.Context, request DeleteApiKeyRequest) (response DeleteApiKeyResponse, err error) { @@ -1880,7 +1880,7 @@ func (client IdentityDomainsClient) deleteApiKey(ctx context.Context, request co // DeleteApp Delete an App // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteApp.go.html to see an example of how to use DeleteApp API. func (client IdentityDomainsClient) DeleteApp(ctx context.Context, request DeleteAppRequest) (response DeleteAppResponse, err error) { @@ -1942,7 +1942,7 @@ func (client IdentityDomainsClient) deleteApp(ctx context.Context, request commo // DeleteAppRole Delete an AppRole // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteAppRole.go.html to see an example of how to use DeleteAppRole API. func (client IdentityDomainsClient) DeleteAppRole(ctx context.Context, request DeleteAppRoleRequest) (response DeleteAppRoleResponse, err error) { @@ -2004,7 +2004,7 @@ func (client IdentityDomainsClient) deleteAppRole(ctx context.Context, request c // DeleteAuthToken Delete a user's Auth token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteAuthToken.go.html to see an example of how to use DeleteAuthToken API. func (client IdentityDomainsClient) DeleteAuthToken(ctx context.Context, request DeleteAuthTokenRequest) (response DeleteAuthTokenResponse, err error) { @@ -2066,7 +2066,7 @@ func (client IdentityDomainsClient) deleteAuthToken(ctx context.Context, request // DeleteCustomerSecretKey Delete a user's customer secret key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteCustomerSecretKey.go.html to see an example of how to use DeleteCustomerSecretKey API. func (client IdentityDomainsClient) DeleteCustomerSecretKey(ctx context.Context, request DeleteCustomerSecretKeyRequest) (response DeleteCustomerSecretKeyResponse, err error) { @@ -2128,7 +2128,7 @@ func (client IdentityDomainsClient) deleteCustomerSecretKey(ctx context.Context, // DeleteDynamicResourceGroup Delete a Dynamic Resource Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteDynamicResourceGroup.go.html to see an example of how to use DeleteDynamicResourceGroup API. func (client IdentityDomainsClient) DeleteDynamicResourceGroup(ctx context.Context, request DeleteDynamicResourceGroupRequest) (response DeleteDynamicResourceGroupResponse, err error) { @@ -2190,7 +2190,7 @@ func (client IdentityDomainsClient) deleteDynamicResourceGroup(ctx context.Conte // DeleteGrant Remove a Grantee from an AppRole // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteGrant.go.html to see an example of how to use DeleteGrant API. func (client IdentityDomainsClient) DeleteGrant(ctx context.Context, request DeleteGrantRequest) (response DeleteGrantResponse, err error) { @@ -2252,7 +2252,7 @@ func (client IdentityDomainsClient) deleteGrant(ctx context.Context, request com // DeleteGroup Delete a group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteGroup.go.html to see an example of how to use DeleteGroup API. func (client IdentityDomainsClient) DeleteGroup(ctx context.Context, request DeleteGroupRequest) (response DeleteGroupResponse, err error) { @@ -2314,7 +2314,7 @@ func (client IdentityDomainsClient) deleteGroup(ctx context.Context, request com // DeleteIdentityProvider Delete an Identity Provider // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteIdentityProvider.go.html to see an example of how to use DeleteIdentityProvider API. func (client IdentityDomainsClient) DeleteIdentityProvider(ctx context.Context, request DeleteIdentityProviderRequest) (response DeleteIdentityProviderResponse, err error) { @@ -2376,7 +2376,7 @@ func (client IdentityDomainsClient) deleteIdentityProvider(ctx context.Context, // DeleteMyApiKey Delete a user's own API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteMyApiKey.go.html to see an example of how to use DeleteMyApiKey API. func (client IdentityDomainsClient) DeleteMyApiKey(ctx context.Context, request DeleteMyApiKeyRequest) (response DeleteMyApiKeyResponse, err error) { @@ -2438,7 +2438,7 @@ func (client IdentityDomainsClient) deleteMyApiKey(ctx context.Context, request // DeleteMyAuthToken Delete a user's own Auth token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteMyAuthToken.go.html to see an example of how to use DeleteMyAuthToken API. func (client IdentityDomainsClient) DeleteMyAuthToken(ctx context.Context, request DeleteMyAuthTokenRequest) (response DeleteMyAuthTokenResponse, err error) { @@ -2500,7 +2500,7 @@ func (client IdentityDomainsClient) deleteMyAuthToken(ctx context.Context, reque // DeleteMyCustomerSecretKey Delete a user's own customer secret key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteMyCustomerSecretKey.go.html to see an example of how to use DeleteMyCustomerSecretKey API. func (client IdentityDomainsClient) DeleteMyCustomerSecretKey(ctx context.Context, request DeleteMyCustomerSecretKeyRequest) (response DeleteMyCustomerSecretKeyResponse, err error) { @@ -2562,7 +2562,7 @@ func (client IdentityDomainsClient) deleteMyCustomerSecretKey(ctx context.Contex // DeleteMyDevice Delete a Device // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteMyDevice.go.html to see an example of how to use DeleteMyDevice API. func (client IdentityDomainsClient) DeleteMyDevice(ctx context.Context, request DeleteMyDeviceRequest) (response DeleteMyDeviceResponse, err error) { @@ -2624,7 +2624,7 @@ func (client IdentityDomainsClient) deleteMyDevice(ctx context.Context, request // DeleteMyOAuth2ClientCredential Delete a user's own OAuth2 client credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteMyOAuth2ClientCredential.go.html to see an example of how to use DeleteMyOAuth2ClientCredential API. func (client IdentityDomainsClient) DeleteMyOAuth2ClientCredential(ctx context.Context, request DeleteMyOAuth2ClientCredentialRequest) (response DeleteMyOAuth2ClientCredentialResponse, err error) { @@ -2686,7 +2686,7 @@ func (client IdentityDomainsClient) deleteMyOAuth2ClientCredential(ctx context.C // DeleteMySmtpCredential Delete a user's own SMTP credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteMySmtpCredential.go.html to see an example of how to use DeleteMySmtpCredential API. func (client IdentityDomainsClient) DeleteMySmtpCredential(ctx context.Context, request DeleteMySmtpCredentialRequest) (response DeleteMySmtpCredentialResponse, err error) { @@ -2748,7 +2748,7 @@ func (client IdentityDomainsClient) deleteMySmtpCredential(ctx context.Context, // DeleteMySupportAccount Delete a user's own support account. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteMySupportAccount.go.html to see an example of how to use DeleteMySupportAccount API. func (client IdentityDomainsClient) DeleteMySupportAccount(ctx context.Context, request DeleteMySupportAccountRequest) (response DeleteMySupportAccountResponse, err error) { @@ -2810,7 +2810,7 @@ func (client IdentityDomainsClient) deleteMySupportAccount(ctx context.Context, // DeleteMyTrustedUserAgent Delete a Trusted User Agent // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteMyTrustedUserAgent.go.html to see an example of how to use DeleteMyTrustedUserAgent API. func (client IdentityDomainsClient) DeleteMyTrustedUserAgent(ctx context.Context, request DeleteMyTrustedUserAgentRequest) (response DeleteMyTrustedUserAgentResponse, err error) { @@ -2872,7 +2872,7 @@ func (client IdentityDomainsClient) deleteMyTrustedUserAgent(ctx context.Context // DeleteMyUserDbCredential Delete a user's own database (DB) credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteMyUserDbCredential.go.html to see an example of how to use DeleteMyUserDbCredential API. func (client IdentityDomainsClient) DeleteMyUserDbCredential(ctx context.Context, request DeleteMyUserDbCredentialRequest) (response DeleteMyUserDbCredentialResponse, err error) { @@ -2934,7 +2934,7 @@ func (client IdentityDomainsClient) deleteMyUserDbCredential(ctx context.Context // DeleteOAuth2ClientCredential Delete a user's OAuth2 client credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteOAuth2ClientCredential.go.html to see an example of how to use DeleteOAuth2ClientCredential API. func (client IdentityDomainsClient) DeleteOAuth2ClientCredential(ctx context.Context, request DeleteOAuth2ClientCredentialRequest) (response DeleteOAuth2ClientCredentialResponse, err error) { @@ -2996,7 +2996,7 @@ func (client IdentityDomainsClient) deleteOAuth2ClientCredential(ctx context.Con // DeletePasswordPolicy Delete a password policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeletePasswordPolicy.go.html to see an example of how to use DeletePasswordPolicy API. func (client IdentityDomainsClient) DeletePasswordPolicy(ctx context.Context, request DeletePasswordPolicyRequest) (response DeletePasswordPolicyResponse, err error) { @@ -3058,7 +3058,7 @@ func (client IdentityDomainsClient) deletePasswordPolicy(ctx context.Context, re // DeleteSecurityQuestion Delete a security question. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteSecurityQuestion.go.html to see an example of how to use DeleteSecurityQuestion API. func (client IdentityDomainsClient) DeleteSecurityQuestion(ctx context.Context, request DeleteSecurityQuestionRequest) (response DeleteSecurityQuestionResponse, err error) { @@ -3120,7 +3120,7 @@ func (client IdentityDomainsClient) deleteSecurityQuestion(ctx context.Context, // DeleteSmtpCredential Delete a user's SMTP credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteSmtpCredential.go.html to see an example of how to use DeleteSmtpCredential API. func (client IdentityDomainsClient) DeleteSmtpCredential(ctx context.Context, request DeleteSmtpCredentialRequest) (response DeleteSmtpCredentialResponse, err error) { @@ -3182,7 +3182,7 @@ func (client IdentityDomainsClient) deleteSmtpCredential(ctx context.Context, re // DeleteUser Delete a user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteUser.go.html to see an example of how to use DeleteUser API. func (client IdentityDomainsClient) DeleteUser(ctx context.Context, request DeleteUserRequest) (response DeleteUserResponse, err error) { @@ -3244,7 +3244,7 @@ func (client IdentityDomainsClient) deleteUser(ctx context.Context, request comm // DeleteUserDbCredential Delete a user's database (DB) credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/DeleteUserDbCredential.go.html to see an example of how to use DeleteUserDbCredential API. func (client IdentityDomainsClient) DeleteUserDbCredential(ctx context.Context, request DeleteUserDbCredentialRequest) (response DeleteUserDbCredentialResponse, err error) { @@ -3306,7 +3306,7 @@ func (client IdentityDomainsClient) deleteUserDbCredential(ctx context.Context, // GetAccountMgmtInfo Get Account Mgmt Info // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetAccountMgmtInfo.go.html to see an example of how to use GetAccountMgmtInfo API. func (client IdentityDomainsClient) GetAccountMgmtInfo(ctx context.Context, request GetAccountMgmtInfoRequest) (response GetAccountMgmtInfoResponse, err error) { @@ -3368,7 +3368,7 @@ func (client IdentityDomainsClient) getAccountMgmtInfo(ctx context.Context, requ // GetAccountRecoverySetting Get an account recovery setting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetAccountRecoverySetting.go.html to see an example of how to use GetAccountRecoverySetting API. func (client IdentityDomainsClient) GetAccountRecoverySetting(ctx context.Context, request GetAccountRecoverySettingRequest) (response GetAccountRecoverySettingResponse, err error) { @@ -3430,7 +3430,7 @@ func (client IdentityDomainsClient) getAccountRecoverySetting(ctx context.Contex // GetApiKey Get a user's API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetApiKey.go.html to see an example of how to use GetApiKey API. func (client IdentityDomainsClient) GetApiKey(ctx context.Context, request GetApiKeyRequest) (response GetApiKeyResponse, err error) { @@ -3492,7 +3492,7 @@ func (client IdentityDomainsClient) getApiKey(ctx context.Context, request commo // GetApp Get an App // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetApp.go.html to see an example of how to use GetApp API. func (client IdentityDomainsClient) GetApp(ctx context.Context, request GetAppRequest) (response GetAppResponse, err error) { @@ -3554,7 +3554,7 @@ func (client IdentityDomainsClient) getApp(ctx context.Context, request common.O // GetAppRole Get an AppRole // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetAppRole.go.html to see an example of how to use GetAppRole API. func (client IdentityDomainsClient) GetAppRole(ctx context.Context, request GetAppRoleRequest) (response GetAppRoleResponse, err error) { @@ -3616,7 +3616,7 @@ func (client IdentityDomainsClient) getAppRole(ctx context.Context, request comm // GetAuthToken Get a user's Auth token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetAuthToken.go.html to see an example of how to use GetAuthToken API. func (client IdentityDomainsClient) GetAuthToken(ctx context.Context, request GetAuthTokenRequest) (response GetAuthTokenResponse, err error) { @@ -3678,7 +3678,7 @@ func (client IdentityDomainsClient) getAuthToken(ctx context.Context, request co // GetAuthenticationFactorSetting Get Authentication Factor Settings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetAuthenticationFactorSetting.go.html to see an example of how to use GetAuthenticationFactorSetting API. func (client IdentityDomainsClient) GetAuthenticationFactorSetting(ctx context.Context, request GetAuthenticationFactorSettingRequest) (response GetAuthenticationFactorSettingResponse, err error) { @@ -3740,7 +3740,7 @@ func (client IdentityDomainsClient) getAuthenticationFactorSetting(ctx context.C // GetCustomerSecretKey Get a user's customer secret key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetCustomerSecretKey.go.html to see an example of how to use GetCustomerSecretKey API. func (client IdentityDomainsClient) GetCustomerSecretKey(ctx context.Context, request GetCustomerSecretKeyRequest) (response GetCustomerSecretKeyResponse, err error) { @@ -3802,7 +3802,7 @@ func (client IdentityDomainsClient) getCustomerSecretKey(ctx context.Context, re // GetDynamicResourceGroup Get a Dynamic Resource Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetDynamicResourceGroup.go.html to see an example of how to use GetDynamicResourceGroup API. func (client IdentityDomainsClient) GetDynamicResourceGroup(ctx context.Context, request GetDynamicResourceGroupRequest) (response GetDynamicResourceGroupResponse, err error) { @@ -3864,7 +3864,7 @@ func (client IdentityDomainsClient) getDynamicResourceGroup(ctx context.Context, // GetGrant Get a Grant // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetGrant.go.html to see an example of how to use GetGrant API. func (client IdentityDomainsClient) GetGrant(ctx context.Context, request GetGrantRequest) (response GetGrantResponse, err error) { @@ -3926,7 +3926,7 @@ func (client IdentityDomainsClient) getGrant(ctx context.Context, request common // GetGroup Get a group. Important: The Group SEARCH and GET operations on users and members will throw an exception if the response has more than 10,000 members. To avoid the exception, use the pagination filter to GET or SEARCH group members. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetGroup.go.html to see an example of how to use GetGroup API. func (client IdentityDomainsClient) GetGroup(ctx context.Context, request GetGroupRequest) (response GetGroupResponse, err error) { @@ -3988,7 +3988,7 @@ func (client IdentityDomainsClient) getGroup(ctx context.Context, request common // GetIdentityProvider Get an Identity Provider // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetIdentityProvider.go.html to see an example of how to use GetIdentityProvider API. func (client IdentityDomainsClient) GetIdentityProvider(ctx context.Context, request GetIdentityProviderRequest) (response GetIdentityProviderResponse, err error) { @@ -4050,7 +4050,7 @@ func (client IdentityDomainsClient) getIdentityProvider(ctx context.Context, req // GetIdentitySetting Get an Identity setting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetIdentitySetting.go.html to see an example of how to use GetIdentitySetting API. func (client IdentityDomainsClient) GetIdentitySetting(ctx context.Context, request GetIdentitySettingRequest) (response GetIdentitySettingResponse, err error) { @@ -4112,7 +4112,7 @@ func (client IdentityDomainsClient) getIdentitySetting(ctx context.Context, requ // GetKmsiSetting Get KmsiSettings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetKmsiSetting.go.html to see an example of how to use GetKmsiSetting API. func (client IdentityDomainsClient) GetKmsiSetting(ctx context.Context, request GetKmsiSettingRequest) (response GetKmsiSettingResponse, err error) { @@ -4174,7 +4174,7 @@ func (client IdentityDomainsClient) getKmsiSetting(ctx context.Context, request // GetMe Get a user's own information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMe.go.html to see an example of how to use GetMe API. func (client IdentityDomainsClient) GetMe(ctx context.Context, request GetMeRequest) (response GetMeResponse, err error) { @@ -4236,7 +4236,7 @@ func (client IdentityDomainsClient) getMe(ctx context.Context, request common.OC // GetMyApiKey Get a user's own API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMyApiKey.go.html to see an example of how to use GetMyApiKey API. func (client IdentityDomainsClient) GetMyApiKey(ctx context.Context, request GetMyApiKeyRequest) (response GetMyApiKeyResponse, err error) { @@ -4298,7 +4298,7 @@ func (client IdentityDomainsClient) getMyApiKey(ctx context.Context, request com // GetMyAuthToken Get a user's own Auth token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMyAuthToken.go.html to see an example of how to use GetMyAuthToken API. func (client IdentityDomainsClient) GetMyAuthToken(ctx context.Context, request GetMyAuthTokenRequest) (response GetMyAuthTokenResponse, err error) { @@ -4360,7 +4360,7 @@ func (client IdentityDomainsClient) getMyAuthToken(ctx context.Context, request // GetMyCustomerSecretKey Get a user's own customer secret key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMyCustomerSecretKey.go.html to see an example of how to use GetMyCustomerSecretKey API. func (client IdentityDomainsClient) GetMyCustomerSecretKey(ctx context.Context, request GetMyCustomerSecretKeyRequest) (response GetMyCustomerSecretKeyResponse, err error) { @@ -4422,7 +4422,7 @@ func (client IdentityDomainsClient) getMyCustomerSecretKey(ctx context.Context, // GetMyDevice Get a Device // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMyDevice.go.html to see an example of how to use GetMyDevice API. func (client IdentityDomainsClient) GetMyDevice(ctx context.Context, request GetMyDeviceRequest) (response GetMyDeviceResponse, err error) { @@ -4484,7 +4484,7 @@ func (client IdentityDomainsClient) getMyDevice(ctx context.Context, request com // GetMyOAuth2ClientCredential Get a user's own OAuth2 client credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMyOAuth2ClientCredential.go.html to see an example of how to use GetMyOAuth2ClientCredential API. func (client IdentityDomainsClient) GetMyOAuth2ClientCredential(ctx context.Context, request GetMyOAuth2ClientCredentialRequest) (response GetMyOAuth2ClientCredentialResponse, err error) { @@ -4546,7 +4546,7 @@ func (client IdentityDomainsClient) getMyOAuth2ClientCredential(ctx context.Cont // GetMySmtpCredential Get a user's own SMTP credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMySmtpCredential.go.html to see an example of how to use GetMySmtpCredential API. func (client IdentityDomainsClient) GetMySmtpCredential(ctx context.Context, request GetMySmtpCredentialRequest) (response GetMySmtpCredentialResponse, err error) { @@ -4608,7 +4608,7 @@ func (client IdentityDomainsClient) getMySmtpCredential(ctx context.Context, req // GetMySupportAccount Get a user's own support account. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMySupportAccount.go.html to see an example of how to use GetMySupportAccount API. func (client IdentityDomainsClient) GetMySupportAccount(ctx context.Context, request GetMySupportAccountRequest) (response GetMySupportAccountResponse, err error) { @@ -4670,7 +4670,7 @@ func (client IdentityDomainsClient) getMySupportAccount(ctx context.Context, req // GetMyTrustedUserAgent Get a Trusted User Agent // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMyTrustedUserAgent.go.html to see an example of how to use GetMyTrustedUserAgent API. func (client IdentityDomainsClient) GetMyTrustedUserAgent(ctx context.Context, request GetMyTrustedUserAgentRequest) (response GetMyTrustedUserAgentResponse, err error) { @@ -4732,7 +4732,7 @@ func (client IdentityDomainsClient) getMyTrustedUserAgent(ctx context.Context, r // GetMyUserDbCredential Get a user's own database (DB) credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetMyUserDbCredential.go.html to see an example of how to use GetMyUserDbCredential API. func (client IdentityDomainsClient) GetMyUserDbCredential(ctx context.Context, request GetMyUserDbCredentialRequest) (response GetMyUserDbCredentialResponse, err error) { @@ -4794,7 +4794,7 @@ func (client IdentityDomainsClient) getMyUserDbCredential(ctx context.Context, r // GetOAuth2ClientCredential Get a user's OAuth2 client credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetOAuth2ClientCredential.go.html to see an example of how to use GetOAuth2ClientCredential API. func (client IdentityDomainsClient) GetOAuth2ClientCredential(ctx context.Context, request GetOAuth2ClientCredentialRequest) (response GetOAuth2ClientCredentialResponse, err error) { @@ -4856,7 +4856,7 @@ func (client IdentityDomainsClient) getOAuth2ClientCredential(ctx context.Contex // GetPasswordPolicy Get a password policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetPasswordPolicy.go.html to see an example of how to use GetPasswordPolicy API. func (client IdentityDomainsClient) GetPasswordPolicy(ctx context.Context, request GetPasswordPolicyRequest) (response GetPasswordPolicyResponse, err error) { @@ -4918,7 +4918,7 @@ func (client IdentityDomainsClient) getPasswordPolicy(ctx context.Context, reque // GetSecurityQuestion Get a security question. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetSecurityQuestion.go.html to see an example of how to use GetSecurityQuestion API. func (client IdentityDomainsClient) GetSecurityQuestion(ctx context.Context, request GetSecurityQuestionRequest) (response GetSecurityQuestionResponse, err error) { @@ -4980,7 +4980,7 @@ func (client IdentityDomainsClient) getSecurityQuestion(ctx context.Context, req // GetSecurityQuestionSetting Get a security question setting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetSecurityQuestionSetting.go.html to see an example of how to use GetSecurityQuestionSetting API. func (client IdentityDomainsClient) GetSecurityQuestionSetting(ctx context.Context, request GetSecurityQuestionSettingRequest) (response GetSecurityQuestionSettingResponse, err error) { @@ -5042,7 +5042,7 @@ func (client IdentityDomainsClient) getSecurityQuestionSetting(ctx context.Conte // GetSmtpCredential Get a user's SMTP credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetSmtpCredential.go.html to see an example of how to use GetSmtpCredential API. func (client IdentityDomainsClient) GetSmtpCredential(ctx context.Context, request GetSmtpCredentialRequest) (response GetSmtpCredentialResponse, err error) { @@ -5104,7 +5104,7 @@ func (client IdentityDomainsClient) getSmtpCredential(ctx context.Context, reque // GetUser Get a user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetUser.go.html to see an example of how to use GetUser API. func (client IdentityDomainsClient) GetUser(ctx context.Context, request GetUserRequest) (response GetUserResponse, err error) { @@ -5166,7 +5166,7 @@ func (client IdentityDomainsClient) getUser(ctx context.Context, request common. // GetUserAttributesSetting Get User Schema Attribute Settings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetUserAttributesSetting.go.html to see an example of how to use GetUserAttributesSetting API. func (client IdentityDomainsClient) GetUserAttributesSetting(ctx context.Context, request GetUserAttributesSettingRequest) (response GetUserAttributesSettingResponse, err error) { @@ -5228,7 +5228,7 @@ func (client IdentityDomainsClient) getUserAttributesSetting(ctx context.Context // GetUserDbCredential Get a user's database (DB) credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/GetUserDbCredential.go.html to see an example of how to use GetUserDbCredential API. func (client IdentityDomainsClient) GetUserDbCredential(ctx context.Context, request GetUserDbCredentialRequest) (response GetUserDbCredentialResponse, err error) { @@ -5290,7 +5290,7 @@ func (client IdentityDomainsClient) getUserDbCredential(ctx context.Context, req // ListAccountMgmtInfos Search Account Mgmt Info // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListAccountMgmtInfos.go.html to see an example of how to use ListAccountMgmtInfos API. func (client IdentityDomainsClient) ListAccountMgmtInfos(ctx context.Context, request ListAccountMgmtInfosRequest) (response ListAccountMgmtInfosResponse, err error) { @@ -5352,7 +5352,7 @@ func (client IdentityDomainsClient) listAccountMgmtInfos(ctx context.Context, re // ListAccountRecoverySettings Search for account recovery settings. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListAccountRecoverySettings.go.html to see an example of how to use ListAccountRecoverySettings API. func (client IdentityDomainsClient) ListAccountRecoverySettings(ctx context.Context, request ListAccountRecoverySettingsRequest) (response ListAccountRecoverySettingsResponse, err error) { @@ -5414,7 +5414,7 @@ func (client IdentityDomainsClient) listAccountRecoverySettings(ctx context.Cont // ListApiKeys Search API keys. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListApiKeys.go.html to see an example of how to use ListApiKeys API. func (client IdentityDomainsClient) ListApiKeys(ctx context.Context, request ListApiKeysRequest) (response ListApiKeysResponse, err error) { @@ -5476,7 +5476,7 @@ func (client IdentityDomainsClient) listApiKeys(ctx context.Context, request com // ListAppRoles Search AppRoles // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListAppRoles.go.html to see an example of how to use ListAppRoles API. func (client IdentityDomainsClient) ListAppRoles(ctx context.Context, request ListAppRolesRequest) (response ListAppRolesResponse, err error) { @@ -5538,7 +5538,7 @@ func (client IdentityDomainsClient) listAppRoles(ctx context.Context, request co // ListApps Search Apps // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListApps.go.html to see an example of how to use ListApps API. func (client IdentityDomainsClient) ListApps(ctx context.Context, request ListAppsRequest) (response ListAppsResponse, err error) { @@ -5600,7 +5600,7 @@ func (client IdentityDomainsClient) listApps(ctx context.Context, request common // ListAuthTokens Search for Auth tokens. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListAuthTokens.go.html to see an example of how to use ListAuthTokens API. func (client IdentityDomainsClient) ListAuthTokens(ctx context.Context, request ListAuthTokensRequest) (response ListAuthTokensResponse, err error) { @@ -5662,7 +5662,7 @@ func (client IdentityDomainsClient) listAuthTokens(ctx context.Context, request // ListAuthenticationFactorSettings Search Authentication Factor Settings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListAuthenticationFactorSettings.go.html to see an example of how to use ListAuthenticationFactorSettings API. func (client IdentityDomainsClient) ListAuthenticationFactorSettings(ctx context.Context, request ListAuthenticationFactorSettingsRequest) (response ListAuthenticationFactorSettingsResponse, err error) { @@ -5724,7 +5724,7 @@ func (client IdentityDomainsClient) listAuthenticationFactorSettings(ctx context // ListCustomerSecretKeys Search for a user's customer secret keys. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListCustomerSecretKeys.go.html to see an example of how to use ListCustomerSecretKeys API. func (client IdentityDomainsClient) ListCustomerSecretKeys(ctx context.Context, request ListCustomerSecretKeysRequest) (response ListCustomerSecretKeysResponse, err error) { @@ -5786,7 +5786,7 @@ func (client IdentityDomainsClient) listCustomerSecretKeys(ctx context.Context, // ListDynamicResourceGroups Search for Dynamic Resource Groups. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListDynamicResourceGroups.go.html to see an example of how to use ListDynamicResourceGroups API. func (client IdentityDomainsClient) ListDynamicResourceGroups(ctx context.Context, request ListDynamicResourceGroupsRequest) (response ListDynamicResourceGroupsResponse, err error) { @@ -5848,7 +5848,7 @@ func (client IdentityDomainsClient) listDynamicResourceGroups(ctx context.Contex // ListGrants Search Grants // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListGrants.go.html to see an example of how to use ListGrants API. func (client IdentityDomainsClient) ListGrants(ctx context.Context, request ListGrantsRequest) (response ListGrantsResponse, err error) { @@ -5910,7 +5910,7 @@ func (client IdentityDomainsClient) listGrants(ctx context.Context, request comm // ListGroups Search for groups. Important: The Group SEARCH and GET operations on users and members will throw an exception if the response has more than 10,000 members. To avoid the exception, use the pagination filter to GET or SEARCH group members. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListGroups.go.html to see an example of how to use ListGroups API. func (client IdentityDomainsClient) ListGroups(ctx context.Context, request ListGroupsRequest) (response ListGroupsResponse, err error) { @@ -5972,7 +5972,7 @@ func (client IdentityDomainsClient) listGroups(ctx context.Context, request comm // ListIdentityProviders Search Identity Providers // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListIdentityProviders.go.html to see an example of how to use ListIdentityProviders API. func (client IdentityDomainsClient) ListIdentityProviders(ctx context.Context, request ListIdentityProvidersRequest) (response ListIdentityProvidersResponse, err error) { @@ -6034,7 +6034,7 @@ func (client IdentityDomainsClient) listIdentityProviders(ctx context.Context, r // ListIdentitySettings Search for Identity settings. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListIdentitySettings.go.html to see an example of how to use ListIdentitySettings API. func (client IdentityDomainsClient) ListIdentitySettings(ctx context.Context, request ListIdentitySettingsRequest) (response ListIdentitySettingsResponse, err error) { @@ -6096,7 +6096,7 @@ func (client IdentityDomainsClient) listIdentitySettings(ctx context.Context, re // ListKmsiSettings Search KmsiSettings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListKmsiSettings.go.html to see an example of how to use ListKmsiSettings API. func (client IdentityDomainsClient) ListKmsiSettings(ctx context.Context, request ListKmsiSettingsRequest) (response ListKmsiSettingsResponse, err error) { @@ -6158,7 +6158,7 @@ func (client IdentityDomainsClient) listKmsiSettings(ctx context.Context, reques // ListMyApiKeys Search for a user's own API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyApiKeys.go.html to see an example of how to use ListMyApiKeys API. func (client IdentityDomainsClient) ListMyApiKeys(ctx context.Context, request ListMyApiKeysRequest) (response ListMyApiKeysResponse, err error) { @@ -6220,7 +6220,7 @@ func (client IdentityDomainsClient) listMyApiKeys(ctx context.Context, request c // ListMyApps Search My Apps // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyApps.go.html to see an example of how to use ListMyApps API. func (client IdentityDomainsClient) ListMyApps(ctx context.Context, request ListMyAppsRequest) (response ListMyAppsResponse, err error) { @@ -6282,7 +6282,7 @@ func (client IdentityDomainsClient) listMyApps(ctx context.Context, request comm // ListMyAuthTokens Search for a user's own Auth token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyAuthTokens.go.html to see an example of how to use ListMyAuthTokens API. func (client IdentityDomainsClient) ListMyAuthTokens(ctx context.Context, request ListMyAuthTokensRequest) (response ListMyAuthTokensResponse, err error) { @@ -6344,7 +6344,7 @@ func (client IdentityDomainsClient) listMyAuthTokens(ctx context.Context, reques // ListMyCustomerSecretKeys Search for a user's own customer secret key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyCustomerSecretKeys.go.html to see an example of how to use ListMyCustomerSecretKeys API. func (client IdentityDomainsClient) ListMyCustomerSecretKeys(ctx context.Context, request ListMyCustomerSecretKeysRequest) (response ListMyCustomerSecretKeysResponse, err error) { @@ -6406,7 +6406,7 @@ func (client IdentityDomainsClient) listMyCustomerSecretKeys(ctx context.Context // ListMyDevices Search Devices // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyDevices.go.html to see an example of how to use ListMyDevices API. func (client IdentityDomainsClient) ListMyDevices(ctx context.Context, request ListMyDevicesRequest) (response ListMyDevicesResponse, err error) { @@ -6468,7 +6468,7 @@ func (client IdentityDomainsClient) listMyDevices(ctx context.Context, request c // ListMyGroups Search for 'My Groups'. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyGroups.go.html to see an example of how to use ListMyGroups API. func (client IdentityDomainsClient) ListMyGroups(ctx context.Context, request ListMyGroupsRequest) (response ListMyGroupsResponse, err error) { @@ -6530,7 +6530,7 @@ func (client IdentityDomainsClient) listMyGroups(ctx context.Context, request co // ListMyOAuth2ClientCredentials Search for a user's own OAuth2 client credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyOAuth2ClientCredentials.go.html to see an example of how to use ListMyOAuth2ClientCredentials API. func (client IdentityDomainsClient) ListMyOAuth2ClientCredentials(ctx context.Context, request ListMyOAuth2ClientCredentialsRequest) (response ListMyOAuth2ClientCredentialsResponse, err error) { @@ -6592,7 +6592,7 @@ func (client IdentityDomainsClient) listMyOAuth2ClientCredentials(ctx context.Co // ListMyRequestableGroups Search My Requestable Groups // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyRequestableGroups.go.html to see an example of how to use ListMyRequestableGroups API. func (client IdentityDomainsClient) ListMyRequestableGroups(ctx context.Context, request ListMyRequestableGroupsRequest) (response ListMyRequestableGroupsResponse, err error) { @@ -6654,7 +6654,7 @@ func (client IdentityDomainsClient) listMyRequestableGroups(ctx context.Context, // ListMyRequests Search My Requests // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyRequests.go.html to see an example of how to use ListMyRequests API. func (client IdentityDomainsClient) ListMyRequests(ctx context.Context, request ListMyRequestsRequest) (response ListMyRequestsResponse, err error) { @@ -6716,7 +6716,7 @@ func (client IdentityDomainsClient) listMyRequests(ctx context.Context, request // ListMySmtpCredentials Search for a user's own SMTP credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMySmtpCredentials.go.html to see an example of how to use ListMySmtpCredentials API. func (client IdentityDomainsClient) ListMySmtpCredentials(ctx context.Context, request ListMySmtpCredentialsRequest) (response ListMySmtpCredentialsResponse, err error) { @@ -6778,7 +6778,7 @@ func (client IdentityDomainsClient) listMySmtpCredentials(ctx context.Context, r // ListMySupportAccounts Search for a user's own support account. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMySupportAccounts.go.html to see an example of how to use ListMySupportAccounts API. func (client IdentityDomainsClient) ListMySupportAccounts(ctx context.Context, request ListMySupportAccountsRequest) (response ListMySupportAccountsResponse, err error) { @@ -6840,7 +6840,7 @@ func (client IdentityDomainsClient) listMySupportAccounts(ctx context.Context, r // ListMyTrustedUserAgents Search Trusted User Agents // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyTrustedUserAgents.go.html to see an example of how to use ListMyTrustedUserAgents API. func (client IdentityDomainsClient) ListMyTrustedUserAgents(ctx context.Context, request ListMyTrustedUserAgentsRequest) (response ListMyTrustedUserAgentsResponse, err error) { @@ -6902,7 +6902,7 @@ func (client IdentityDomainsClient) listMyTrustedUserAgents(ctx context.Context, // ListMyUserDbCredentials Search for a user's own database (DB) credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListMyUserDbCredentials.go.html to see an example of how to use ListMyUserDbCredentials API. func (client IdentityDomainsClient) ListMyUserDbCredentials(ctx context.Context, request ListMyUserDbCredentialsRequest) (response ListMyUserDbCredentialsResponse, err error) { @@ -6964,7 +6964,7 @@ func (client IdentityDomainsClient) listMyUserDbCredentials(ctx context.Context, // ListOAuth2ClientCredentials Search for a user's OAuth2 client credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListOAuth2ClientCredentials.go.html to see an example of how to use ListOAuth2ClientCredentials API. func (client IdentityDomainsClient) ListOAuth2ClientCredentials(ctx context.Context, request ListOAuth2ClientCredentialsRequest) (response ListOAuth2ClientCredentialsResponse, err error) { @@ -7026,7 +7026,7 @@ func (client IdentityDomainsClient) listOAuth2ClientCredentials(ctx context.Cont // ListPasswordPolicies Search for password policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListPasswordPolicies.go.html to see an example of how to use ListPasswordPolicies API. func (client IdentityDomainsClient) ListPasswordPolicies(ctx context.Context, request ListPasswordPoliciesRequest) (response ListPasswordPoliciesResponse, err error) { @@ -7088,7 +7088,7 @@ func (client IdentityDomainsClient) listPasswordPolicies(ctx context.Context, re // ListResourceTypeSchemaAttributes Search Resource Type Schema Attributes // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListResourceTypeSchemaAttributes.go.html to see an example of how to use ListResourceTypeSchemaAttributes API. func (client IdentityDomainsClient) ListResourceTypeSchemaAttributes(ctx context.Context, request ListResourceTypeSchemaAttributesRequest) (response ListResourceTypeSchemaAttributesResponse, err error) { @@ -7150,7 +7150,7 @@ func (client IdentityDomainsClient) listResourceTypeSchemaAttributes(ctx context // ListSecurityQuestionSettings Search for security question settings. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListSecurityQuestionSettings.go.html to see an example of how to use ListSecurityQuestionSettings API. func (client IdentityDomainsClient) ListSecurityQuestionSettings(ctx context.Context, request ListSecurityQuestionSettingsRequest) (response ListSecurityQuestionSettingsResponse, err error) { @@ -7212,7 +7212,7 @@ func (client IdentityDomainsClient) listSecurityQuestionSettings(ctx context.Con // ListSecurityQuestions Search for security questions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListSecurityQuestions.go.html to see an example of how to use ListSecurityQuestions API. func (client IdentityDomainsClient) ListSecurityQuestions(ctx context.Context, request ListSecurityQuestionsRequest) (response ListSecurityQuestionsResponse, err error) { @@ -7274,7 +7274,7 @@ func (client IdentityDomainsClient) listSecurityQuestions(ctx context.Context, r // ListSmtpCredentials Search for SMTP credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListSmtpCredentials.go.html to see an example of how to use ListSmtpCredentials API. func (client IdentityDomainsClient) ListSmtpCredentials(ctx context.Context, request ListSmtpCredentialsRequest) (response ListSmtpCredentialsResponse, err error) { @@ -7336,7 +7336,7 @@ func (client IdentityDomainsClient) listSmtpCredentials(ctx context.Context, req // ListUserAttributesSettings Search User Schema Attribute Settings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListUserAttributesSettings.go.html to see an example of how to use ListUserAttributesSettings API. func (client IdentityDomainsClient) ListUserAttributesSettings(ctx context.Context, request ListUserAttributesSettingsRequest) (response ListUserAttributesSettingsResponse, err error) { @@ -7398,7 +7398,7 @@ func (client IdentityDomainsClient) listUserAttributesSettings(ctx context.Conte // ListUserDbCredentials Search for a user's database (DB) credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListUserDbCredentials.go.html to see an example of how to use ListUserDbCredentials API. func (client IdentityDomainsClient) ListUserDbCredentials(ctx context.Context, request ListUserDbCredentialsRequest) (response ListUserDbCredentialsResponse, err error) { @@ -7460,7 +7460,7 @@ func (client IdentityDomainsClient) listUserDbCredentials(ctx context.Context, r // ListUsers Search for users. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/ListUsers.go.html to see an example of how to use ListUsers API. func (client IdentityDomainsClient) ListUsers(ctx context.Context, request ListUsersRequest) (response ListUsersResponse, err error) { @@ -7522,7 +7522,7 @@ func (client IdentityDomainsClient) listUsers(ctx context.Context, request commo // PatchAccountRecoverySetting Update an account recovery setting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchAccountRecoverySetting.go.html to see an example of how to use PatchAccountRecoverySetting API. func (client IdentityDomainsClient) PatchAccountRecoverySetting(ctx context.Context, request PatchAccountRecoverySettingRequest) (response PatchAccountRecoverySettingResponse, err error) { @@ -7584,7 +7584,7 @@ func (client IdentityDomainsClient) patchAccountRecoverySetting(ctx context.Cont // PatchApiKey Update a user's API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchApiKey.go.html to see an example of how to use PatchApiKey API. func (client IdentityDomainsClient) PatchApiKey(ctx context.Context, request PatchApiKeyRequest) (response PatchApiKeyResponse, err error) { @@ -7646,7 +7646,7 @@ func (client IdentityDomainsClient) patchApiKey(ctx context.Context, request com // PatchApp Update an App // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchApp.go.html to see an example of how to use PatchApp API. func (client IdentityDomainsClient) PatchApp(ctx context.Context, request PatchAppRequest) (response PatchAppResponse, err error) { @@ -7708,7 +7708,7 @@ func (client IdentityDomainsClient) patchApp(ctx context.Context, request common // PatchAppRole Update an AppRole // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchAppRole.go.html to see an example of how to use PatchAppRole API. func (client IdentityDomainsClient) PatchAppRole(ctx context.Context, request PatchAppRoleRequest) (response PatchAppRoleResponse, err error) { @@ -7770,7 +7770,7 @@ func (client IdentityDomainsClient) patchAppRole(ctx context.Context, request co // PatchAuthToken Update a user's Auth token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchAuthToken.go.html to see an example of how to use PatchAuthToken API. func (client IdentityDomainsClient) PatchAuthToken(ctx context.Context, request PatchAuthTokenRequest) (response PatchAuthTokenResponse, err error) { @@ -7832,7 +7832,7 @@ func (client IdentityDomainsClient) patchAuthToken(ctx context.Context, request // PatchCustomerSecretKey Update a user's customer secret key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchCustomerSecretKey.go.html to see an example of how to use PatchCustomerSecretKey API. func (client IdentityDomainsClient) PatchCustomerSecretKey(ctx context.Context, request PatchCustomerSecretKeyRequest) (response PatchCustomerSecretKeyResponse, err error) { @@ -7894,7 +7894,7 @@ func (client IdentityDomainsClient) patchCustomerSecretKey(ctx context.Context, // PatchDynamicResourceGroup Update a Dynamic Resource Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchDynamicResourceGroup.go.html to see an example of how to use PatchDynamicResourceGroup API. func (client IdentityDomainsClient) PatchDynamicResourceGroup(ctx context.Context, request PatchDynamicResourceGroupRequest) (response PatchDynamicResourceGroupResponse, err error) { @@ -7956,7 +7956,7 @@ func (client IdentityDomainsClient) patchDynamicResourceGroup(ctx context.Contex // PatchGrant Update a Grant // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchGrant.go.html to see an example of how to use PatchGrant API. func (client IdentityDomainsClient) PatchGrant(ctx context.Context, request PatchGrantRequest) (response PatchGrantResponse, err error) { @@ -8018,7 +8018,7 @@ func (client IdentityDomainsClient) patchGrant(ctx context.Context, request comm // PatchGroup Update a group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchGroup.go.html to see an example of how to use PatchGroup API. func (client IdentityDomainsClient) PatchGroup(ctx context.Context, request PatchGroupRequest) (response PatchGroupResponse, err error) { @@ -8080,7 +8080,7 @@ func (client IdentityDomainsClient) patchGroup(ctx context.Context, request comm // PatchIdentityProvider Update an Identity Provider // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchIdentityProvider.go.html to see an example of how to use PatchIdentityProvider API. func (client IdentityDomainsClient) PatchIdentityProvider(ctx context.Context, request PatchIdentityProviderRequest) (response PatchIdentityProviderResponse, err error) { @@ -8142,7 +8142,7 @@ func (client IdentityDomainsClient) patchIdentityProvider(ctx context.Context, r // PatchIdentitySetting Update an Identity setting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchIdentitySetting.go.html to see an example of how to use PatchIdentitySetting API. func (client IdentityDomainsClient) PatchIdentitySetting(ctx context.Context, request PatchIdentitySettingRequest) (response PatchIdentitySettingResponse, err error) { @@ -8204,7 +8204,7 @@ func (client IdentityDomainsClient) patchIdentitySetting(ctx context.Context, re // PatchKmsiSetting Update a Setting // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchKmsiSetting.go.html to see an example of how to use PatchKmsiSetting API. func (client IdentityDomainsClient) PatchKmsiSetting(ctx context.Context, request PatchKmsiSettingRequest) (response PatchKmsiSettingResponse, err error) { @@ -8266,7 +8266,7 @@ func (client IdentityDomainsClient) patchKmsiSetting(ctx context.Context, reques // PatchMe Update a user's own information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchMe.go.html to see an example of how to use PatchMe API. func (client IdentityDomainsClient) PatchMe(ctx context.Context, request PatchMeRequest) (response PatchMeResponse, err error) { @@ -8328,7 +8328,7 @@ func (client IdentityDomainsClient) patchMe(ctx context.Context, request common. // PatchMyApiKey Update a user's own API key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchMyApiKey.go.html to see an example of how to use PatchMyApiKey API. func (client IdentityDomainsClient) PatchMyApiKey(ctx context.Context, request PatchMyApiKeyRequest) (response PatchMyApiKeyResponse, err error) { @@ -8390,7 +8390,7 @@ func (client IdentityDomainsClient) patchMyApiKey(ctx context.Context, request c // PatchMyAuthToken Update a user's own Auth token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchMyAuthToken.go.html to see an example of how to use PatchMyAuthToken API. func (client IdentityDomainsClient) PatchMyAuthToken(ctx context.Context, request PatchMyAuthTokenRequest) (response PatchMyAuthTokenResponse, err error) { @@ -8452,7 +8452,7 @@ func (client IdentityDomainsClient) patchMyAuthToken(ctx context.Context, reques // PatchMyCustomerSecretKey Update a user's own customer secret key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchMyCustomerSecretKey.go.html to see an example of how to use PatchMyCustomerSecretKey API. func (client IdentityDomainsClient) PatchMyCustomerSecretKey(ctx context.Context, request PatchMyCustomerSecretKeyRequest) (response PatchMyCustomerSecretKeyResponse, err error) { @@ -8514,7 +8514,7 @@ func (client IdentityDomainsClient) patchMyCustomerSecretKey(ctx context.Context // PatchMyDevice Update a Device // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchMyDevice.go.html to see an example of how to use PatchMyDevice API. func (client IdentityDomainsClient) PatchMyDevice(ctx context.Context, request PatchMyDeviceRequest) (response PatchMyDeviceResponse, err error) { @@ -8576,7 +8576,7 @@ func (client IdentityDomainsClient) patchMyDevice(ctx context.Context, request c // PatchMyOAuth2ClientCredential Update a user's own OAuth2 client credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchMyOAuth2ClientCredential.go.html to see an example of how to use PatchMyOAuth2ClientCredential API. func (client IdentityDomainsClient) PatchMyOAuth2ClientCredential(ctx context.Context, request PatchMyOAuth2ClientCredentialRequest) (response PatchMyOAuth2ClientCredentialResponse, err error) { @@ -8638,7 +8638,7 @@ func (client IdentityDomainsClient) patchMyOAuth2ClientCredential(ctx context.Co // PatchMySmtpCredential Update a user's own SMTP credential. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchMySmtpCredential.go.html to see an example of how to use PatchMySmtpCredential API. func (client IdentityDomainsClient) PatchMySmtpCredential(ctx context.Context, request PatchMySmtpCredentialRequest) (response PatchMySmtpCredentialResponse, err error) { @@ -8700,7 +8700,7 @@ func (client IdentityDomainsClient) patchMySmtpCredential(ctx context.Context, r // PatchOAuth2ClientCredential Update a user's OAuth2 client credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchOAuth2ClientCredential.go.html to see an example of how to use PatchOAuth2ClientCredential API. func (client IdentityDomainsClient) PatchOAuth2ClientCredential(ctx context.Context, request PatchOAuth2ClientCredentialRequest) (response PatchOAuth2ClientCredentialResponse, err error) { @@ -8762,7 +8762,7 @@ func (client IdentityDomainsClient) patchOAuth2ClientCredential(ctx context.Cont // PatchPasswordPolicy Update a password policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchPasswordPolicy.go.html to see an example of how to use PatchPasswordPolicy API. func (client IdentityDomainsClient) PatchPasswordPolicy(ctx context.Context, request PatchPasswordPolicyRequest) (response PatchPasswordPolicyResponse, err error) { @@ -8824,7 +8824,7 @@ func (client IdentityDomainsClient) patchPasswordPolicy(ctx context.Context, req // PatchSecurityQuestion Update a security question. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchSecurityQuestion.go.html to see an example of how to use PatchSecurityQuestion API. func (client IdentityDomainsClient) PatchSecurityQuestion(ctx context.Context, request PatchSecurityQuestionRequest) (response PatchSecurityQuestionResponse, err error) { @@ -8886,7 +8886,7 @@ func (client IdentityDomainsClient) patchSecurityQuestion(ctx context.Context, r // PatchSecurityQuestionSetting Update a security question setting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchSecurityQuestionSetting.go.html to see an example of how to use PatchSecurityQuestionSetting API. func (client IdentityDomainsClient) PatchSecurityQuestionSetting(ctx context.Context, request PatchSecurityQuestionSettingRequest) (response PatchSecurityQuestionSettingResponse, err error) { @@ -8948,7 +8948,7 @@ func (client IdentityDomainsClient) patchSecurityQuestionSetting(ctx context.Con // PatchSmtpCredential Update a user's SMTP credentials. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchSmtpCredential.go.html to see an example of how to use PatchSmtpCredential API. func (client IdentityDomainsClient) PatchSmtpCredential(ctx context.Context, request PatchSmtpCredentialRequest) (response PatchSmtpCredentialResponse, err error) { @@ -9010,7 +9010,7 @@ func (client IdentityDomainsClient) patchSmtpCredential(ctx context.Context, req // PatchUser Update a user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchUser.go.html to see an example of how to use PatchUser API. func (client IdentityDomainsClient) PatchUser(ctx context.Context, request PatchUserRequest) (response PatchUserResponse, err error) { @@ -9072,7 +9072,7 @@ func (client IdentityDomainsClient) patchUser(ctx context.Context, request commo // PatchUserAttributesSetting Update User Schema Attribute Settings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PatchUserAttributesSetting.go.html to see an example of how to use PatchUserAttributesSetting API. func (client IdentityDomainsClient) PatchUserAttributesSetting(ctx context.Context, request PatchUserAttributesSettingRequest) (response PatchUserAttributesSettingResponse, err error) { @@ -9134,7 +9134,7 @@ func (client IdentityDomainsClient) patchUserAttributesSetting(ctx context.Conte // PutAccountRecoverySetting Replace an account recovery setting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutAccountRecoverySetting.go.html to see an example of how to use PutAccountRecoverySetting API. func (client IdentityDomainsClient) PutAccountRecoverySetting(ctx context.Context, request PutAccountRecoverySettingRequest) (response PutAccountRecoverySettingResponse, err error) { @@ -9196,7 +9196,7 @@ func (client IdentityDomainsClient) putAccountRecoverySetting(ctx context.Contex // PutApp Replace an App // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutApp.go.html to see an example of how to use PutApp API. func (client IdentityDomainsClient) PutApp(ctx context.Context, request PutAppRequest) (response PutAppResponse, err error) { @@ -9258,7 +9258,7 @@ func (client IdentityDomainsClient) putApp(ctx context.Context, request common.O // PutAppStatusChanger Activate/Deactivate an App // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutAppStatusChanger.go.html to see an example of how to use PutAppStatusChanger API. func (client IdentityDomainsClient) PutAppStatusChanger(ctx context.Context, request PutAppStatusChangerRequest) (response PutAppStatusChangerResponse, err error) { @@ -9320,7 +9320,7 @@ func (client IdentityDomainsClient) putAppStatusChanger(ctx context.Context, req // PutAuthenticationFactorSetting Replace Authentication Factor Settings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutAuthenticationFactorSetting.go.html to see an example of how to use PutAuthenticationFactorSetting API. func (client IdentityDomainsClient) PutAuthenticationFactorSetting(ctx context.Context, request PutAuthenticationFactorSettingRequest) (response PutAuthenticationFactorSettingResponse, err error) { @@ -9382,7 +9382,7 @@ func (client IdentityDomainsClient) putAuthenticationFactorSetting(ctx context.C // PutDynamicResourceGroup Replace a Dynamic Resource Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutDynamicResourceGroup.go.html to see an example of how to use PutDynamicResourceGroup API. func (client IdentityDomainsClient) PutDynamicResourceGroup(ctx context.Context, request PutDynamicResourceGroupRequest) (response PutDynamicResourceGroupResponse, err error) { @@ -9444,7 +9444,7 @@ func (client IdentityDomainsClient) putDynamicResourceGroup(ctx context.Context, // PutGroup Replace a group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutGroup.go.html to see an example of how to use PutGroup API. func (client IdentityDomainsClient) PutGroup(ctx context.Context, request PutGroupRequest) (response PutGroupResponse, err error) { @@ -9506,7 +9506,7 @@ func (client IdentityDomainsClient) putGroup(ctx context.Context, request common // PutIdentityProvider Replace an Identity Provider // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutIdentityProvider.go.html to see an example of how to use PutIdentityProvider API. func (client IdentityDomainsClient) PutIdentityProvider(ctx context.Context, request PutIdentityProviderRequest) (response PutIdentityProviderResponse, err error) { @@ -9568,7 +9568,7 @@ func (client IdentityDomainsClient) putIdentityProvider(ctx context.Context, req // PutIdentitySetting Replace an Identity setting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutIdentitySetting.go.html to see an example of how to use PutIdentitySetting API. func (client IdentityDomainsClient) PutIdentitySetting(ctx context.Context, request PutIdentitySettingRequest) (response PutIdentitySettingResponse, err error) { @@ -9630,7 +9630,7 @@ func (client IdentityDomainsClient) putIdentitySetting(ctx context.Context, requ // PutKmsiSetting Replace KmsiSettings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutKmsiSetting.go.html to see an example of how to use PutKmsiSetting API. func (client IdentityDomainsClient) PutKmsiSetting(ctx context.Context, request PutKmsiSettingRequest) (response PutKmsiSettingResponse, err error) { @@ -9692,7 +9692,7 @@ func (client IdentityDomainsClient) putKmsiSetting(ctx context.Context, request // PutMe Replace a user's own information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutMe.go.html to see an example of how to use PutMe API. func (client IdentityDomainsClient) PutMe(ctx context.Context, request PutMeRequest) (response PutMeResponse, err error) { @@ -9754,7 +9754,7 @@ func (client IdentityDomainsClient) putMe(ctx context.Context, request common.OC // PutMePasswordChanger Update a user's own password. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutMePasswordChanger.go.html to see an example of how to use PutMePasswordChanger API. func (client IdentityDomainsClient) PutMePasswordChanger(ctx context.Context, request PutMePasswordChangerRequest) (response PutMePasswordChangerResponse, err error) { @@ -9816,7 +9816,7 @@ func (client IdentityDomainsClient) putMePasswordChanger(ctx context.Context, re // PutPasswordPolicy Replace a password policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutPasswordPolicy.go.html to see an example of how to use PutPasswordPolicy API. func (client IdentityDomainsClient) PutPasswordPolicy(ctx context.Context, request PutPasswordPolicyRequest) (response PutPasswordPolicyResponse, err error) { @@ -9878,7 +9878,7 @@ func (client IdentityDomainsClient) putPasswordPolicy(ctx context.Context, reque // PutSecurityQuestionSetting Replace a security question setting. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutSecurityQuestionSetting.go.html to see an example of how to use PutSecurityQuestionSetting API. func (client IdentityDomainsClient) PutSecurityQuestionSetting(ctx context.Context, request PutSecurityQuestionSettingRequest) (response PutSecurityQuestionSettingResponse, err error) { @@ -9940,7 +9940,7 @@ func (client IdentityDomainsClient) putSecurityQuestionSetting(ctx context.Conte // PutUser Replace a user. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutUser.go.html to see an example of how to use PutUser API. func (client IdentityDomainsClient) PutUser(ctx context.Context, request PutUserRequest) (response PutUserResponse, err error) { @@ -10002,7 +10002,7 @@ func (client IdentityDomainsClient) putUser(ctx context.Context, request common. // PutUserCapabilitiesChanger Change a user's capabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutUserCapabilitiesChanger.go.html to see an example of how to use PutUserCapabilitiesChanger API. func (client IdentityDomainsClient) PutUserCapabilitiesChanger(ctx context.Context, request PutUserCapabilitiesChangerRequest) (response PutUserCapabilitiesChangerResponse, err error) { @@ -10064,7 +10064,7 @@ func (client IdentityDomainsClient) putUserCapabilitiesChanger(ctx context.Conte // PutUserPasswordChanger Change a user's password to a known value. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutUserPasswordChanger.go.html to see an example of how to use PutUserPasswordChanger API. func (client IdentityDomainsClient) PutUserPasswordChanger(ctx context.Context, request PutUserPasswordChangerRequest) (response PutUserPasswordChangerResponse, err error) { @@ -10126,7 +10126,7 @@ func (client IdentityDomainsClient) putUserPasswordChanger(ctx context.Context, // PutUserPasswordResetter Reset a user's password to a randomly-generated value. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutUserPasswordResetter.go.html to see an example of how to use PutUserPasswordResetter API. func (client IdentityDomainsClient) PutUserPasswordResetter(ctx context.Context, request PutUserPasswordResetterRequest) (response PutUserPasswordResetterResponse, err error) { @@ -10188,7 +10188,7 @@ func (client IdentityDomainsClient) putUserPasswordResetter(ctx context.Context, // PutUserStatusChanger Change a user's status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/PutUserStatusChanger.go.html to see an example of how to use PutUserStatusChanger API. func (client IdentityDomainsClient) PutUserStatusChanger(ctx context.Context, request PutUserStatusChangerRequest) (response PutUserStatusChangerResponse, err error) { @@ -10250,7 +10250,7 @@ func (client IdentityDomainsClient) putUserStatusChanger(ctx context.Context, re // SearchAccountMgmtInfos Search Account Mgmt Info Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchAccountMgmtInfos.go.html to see an example of how to use SearchAccountMgmtInfos API. func (client IdentityDomainsClient) SearchAccountMgmtInfos(ctx context.Context, request SearchAccountMgmtInfosRequest) (response SearchAccountMgmtInfosResponse, err error) { @@ -10312,7 +10312,7 @@ func (client IdentityDomainsClient) searchAccountMgmtInfos(ctx context.Context, // SearchApiKeys Search ApiKeys Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchApiKeys.go.html to see an example of how to use SearchApiKeys API. func (client IdentityDomainsClient) SearchApiKeys(ctx context.Context, request SearchApiKeysRequest) (response SearchApiKeysResponse, err error) { @@ -10374,7 +10374,7 @@ func (client IdentityDomainsClient) searchApiKeys(ctx context.Context, request c // SearchAppRoles Search AppRoles Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchAppRoles.go.html to see an example of how to use SearchAppRoles API. func (client IdentityDomainsClient) SearchAppRoles(ctx context.Context, request SearchAppRolesRequest) (response SearchAppRolesResponse, err error) { @@ -10436,7 +10436,7 @@ func (client IdentityDomainsClient) searchAppRoles(ctx context.Context, request // SearchApps Search Apps Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchApps.go.html to see an example of how to use SearchApps API. func (client IdentityDomainsClient) SearchApps(ctx context.Context, request SearchAppsRequest) (response SearchAppsResponse, err error) { @@ -10498,7 +10498,7 @@ func (client IdentityDomainsClient) searchApps(ctx context.Context, request comm // SearchAuthTokens Search for Auth tokens using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchAuthTokens.go.html to see an example of how to use SearchAuthTokens API. func (client IdentityDomainsClient) SearchAuthTokens(ctx context.Context, request SearchAuthTokensRequest) (response SearchAuthTokensResponse, err error) { @@ -10560,7 +10560,7 @@ func (client IdentityDomainsClient) searchAuthTokens(ctx context.Context, reques // SearchAuthenticationFactorSettings Search Authentication Factor Settings Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchAuthenticationFactorSettings.go.html to see an example of how to use SearchAuthenticationFactorSettings API. func (client IdentityDomainsClient) SearchAuthenticationFactorSettings(ctx context.Context, request SearchAuthenticationFactorSettingsRequest) (response SearchAuthenticationFactorSettingsResponse, err error) { @@ -10622,7 +10622,7 @@ func (client IdentityDomainsClient) searchAuthenticationFactorSettings(ctx conte // SearchCustomerSecretKeys Search for customer secret keys using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchCustomerSecretKeys.go.html to see an example of how to use SearchCustomerSecretKeys API. func (client IdentityDomainsClient) SearchCustomerSecretKeys(ctx context.Context, request SearchCustomerSecretKeysRequest) (response SearchCustomerSecretKeysResponse, err error) { @@ -10684,7 +10684,7 @@ func (client IdentityDomainsClient) searchCustomerSecretKeys(ctx context.Context // SearchDynamicResourceGroups Search for Dynamic Resource Groups using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchDynamicResourceGroups.go.html to see an example of how to use SearchDynamicResourceGroups API. func (client IdentityDomainsClient) SearchDynamicResourceGroups(ctx context.Context, request SearchDynamicResourceGroupsRequest) (response SearchDynamicResourceGroupsResponse, err error) { @@ -10746,7 +10746,7 @@ func (client IdentityDomainsClient) searchDynamicResourceGroups(ctx context.Cont // SearchGrants Search Grants Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchGrants.go.html to see an example of how to use SearchGrants API. func (client IdentityDomainsClient) SearchGrants(ctx context.Context, request SearchGrantsRequest) (response SearchGrantsResponse, err error) { @@ -10808,7 +10808,7 @@ func (client IdentityDomainsClient) searchGrants(ctx context.Context, request co // SearchGroups Search for groups using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchGroups.go.html to see an example of how to use SearchGroups API. func (client IdentityDomainsClient) SearchGroups(ctx context.Context, request SearchGroupsRequest) (response SearchGroupsResponse, err error) { @@ -10870,7 +10870,7 @@ func (client IdentityDomainsClient) searchGroups(ctx context.Context, request co // SearchIdentityProviders Search Identity Providers Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchIdentityProviders.go.html to see an example of how to use SearchIdentityProviders API. func (client IdentityDomainsClient) SearchIdentityProviders(ctx context.Context, request SearchIdentityProvidersRequest) (response SearchIdentityProvidersResponse, err error) { @@ -10932,7 +10932,7 @@ func (client IdentityDomainsClient) searchIdentityProviders(ctx context.Context, // SearchIdentitySettings Search for Identity settings using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchIdentitySettings.go.html to see an example of how to use SearchIdentitySettings API. func (client IdentityDomainsClient) SearchIdentitySettings(ctx context.Context, request SearchIdentitySettingsRequest) (response SearchIdentitySettingsResponse, err error) { @@ -10994,7 +10994,7 @@ func (client IdentityDomainsClient) searchIdentitySettings(ctx context.Context, // SearchKmsiSettings Search KmsiSettings Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchKmsiSettings.go.html to see an example of how to use SearchKmsiSettings API. func (client IdentityDomainsClient) SearchKmsiSettings(ctx context.Context, request SearchKmsiSettingsRequest) (response SearchKmsiSettingsResponse, err error) { @@ -11056,7 +11056,7 @@ func (client IdentityDomainsClient) searchKmsiSettings(ctx context.Context, requ // SearchMyApps Search My Apps Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchMyApps.go.html to see an example of how to use SearchMyApps API. func (client IdentityDomainsClient) SearchMyApps(ctx context.Context, request SearchMyAppsRequest) (response SearchMyAppsResponse, err error) { @@ -11118,7 +11118,7 @@ func (client IdentityDomainsClient) searchMyApps(ctx context.Context, request co // SearchMyGroups Search for 'My Groups' using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchMyGroups.go.html to see an example of how to use SearchMyGroups API. func (client IdentityDomainsClient) SearchMyGroups(ctx context.Context, request SearchMyGroupsRequest) (response SearchMyGroupsResponse, err error) { @@ -11180,7 +11180,7 @@ func (client IdentityDomainsClient) searchMyGroups(ctx context.Context, request // SearchMyRequestableGroups Search My Requestable Groups Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchMyRequestableGroups.go.html to see an example of how to use SearchMyRequestableGroups API. func (client IdentityDomainsClient) SearchMyRequestableGroups(ctx context.Context, request SearchMyRequestableGroupsRequest) (response SearchMyRequestableGroupsResponse, err error) { @@ -11242,7 +11242,7 @@ func (client IdentityDomainsClient) searchMyRequestableGroups(ctx context.Contex // SearchMyRequests Search My Requests Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchMyRequests.go.html to see an example of how to use SearchMyRequests API. func (client IdentityDomainsClient) SearchMyRequests(ctx context.Context, request SearchMyRequestsRequest) (response SearchMyRequestsResponse, err error) { @@ -11304,7 +11304,7 @@ func (client IdentityDomainsClient) searchMyRequests(ctx context.Context, reques // SearchOAuth2ClientCredentials Search for OAuth2 client credentials using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchOAuth2ClientCredentials.go.html to see an example of how to use SearchOAuth2ClientCredentials API. func (client IdentityDomainsClient) SearchOAuth2ClientCredentials(ctx context.Context, request SearchOAuth2ClientCredentialsRequest) (response SearchOAuth2ClientCredentialsResponse, err error) { @@ -11366,7 +11366,7 @@ func (client IdentityDomainsClient) searchOAuth2ClientCredentials(ctx context.Co // SearchPasswordPolicies Search for password policies using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchPasswordPolicies.go.html to see an example of how to use SearchPasswordPolicies API. func (client IdentityDomainsClient) SearchPasswordPolicies(ctx context.Context, request SearchPasswordPoliciesRequest) (response SearchPasswordPoliciesResponse, err error) { @@ -11428,7 +11428,7 @@ func (client IdentityDomainsClient) searchPasswordPolicies(ctx context.Context, // SearchResourceTypeSchemaAttributes Search Resource Type Schema Attributes Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchResourceTypeSchemaAttributes.go.html to see an example of how to use SearchResourceTypeSchemaAttributes API. func (client IdentityDomainsClient) SearchResourceTypeSchemaAttributes(ctx context.Context, request SearchResourceTypeSchemaAttributesRequest) (response SearchResourceTypeSchemaAttributesResponse, err error) { @@ -11490,7 +11490,7 @@ func (client IdentityDomainsClient) searchResourceTypeSchemaAttributes(ctx conte // SearchSecurityQuestionSettings Search for security question settings using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchSecurityQuestionSettings.go.html to see an example of how to use SearchSecurityQuestionSettings API. func (client IdentityDomainsClient) SearchSecurityQuestionSettings(ctx context.Context, request SearchSecurityQuestionSettingsRequest) (response SearchSecurityQuestionSettingsResponse, err error) { @@ -11552,7 +11552,7 @@ func (client IdentityDomainsClient) searchSecurityQuestionSettings(ctx context.C // SearchSecurityQuestions Search for security questions using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchSecurityQuestions.go.html to see an example of how to use SearchSecurityQuestions API. func (client IdentityDomainsClient) SearchSecurityQuestions(ctx context.Context, request SearchSecurityQuestionsRequest) (response SearchSecurityQuestionsResponse, err error) { @@ -11614,7 +11614,7 @@ func (client IdentityDomainsClient) searchSecurityQuestions(ctx context.Context, // SearchSmtpCredentials Search for SMTP credentials using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchSmtpCredentials.go.html to see an example of how to use SearchSmtpCredentials API. func (client IdentityDomainsClient) SearchSmtpCredentials(ctx context.Context, request SearchSmtpCredentialsRequest) (response SearchSmtpCredentialsResponse, err error) { @@ -11676,7 +11676,7 @@ func (client IdentityDomainsClient) searchSmtpCredentials(ctx context.Context, r // SearchUserAttributesSettings Search User Schema Attribute Settings Using POST // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchUserAttributesSettings.go.html to see an example of how to use SearchUserAttributesSettings API. func (client IdentityDomainsClient) SearchUserAttributesSettings(ctx context.Context, request SearchUserAttributesSettingsRequest) (response SearchUserAttributesSettingsResponse, err error) { @@ -11738,7 +11738,7 @@ func (client IdentityDomainsClient) searchUserAttributesSettings(ctx context.Con // SearchUserDbCredentials Search for a user's database (DB) credentials using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchUserDbCredentials.go.html to see an example of how to use SearchUserDbCredentials API. func (client IdentityDomainsClient) SearchUserDbCredentials(ctx context.Context, request SearchUserDbCredentialsRequest) (response SearchUserDbCredentialsResponse, err error) { @@ -11800,7 +11800,7 @@ func (client IdentityDomainsClient) searchUserDbCredentials(ctx context.Context, // SearchUsers Search for users using POST. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/identitydomains/SearchUsers.go.html to see an example of how to use SearchUsers API. func (client IdentityDomainsClient) SearchUsers(ctx context.Context, request SearchUsersRequest) (response SearchUsersResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/me_name.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/me_name.go index 79ebf922cd5..cc78d419242 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/me_name.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/me_name.go @@ -18,14 +18,14 @@ import ( // MeName A complex attribute that contains attributes representing the name // **SCIM++ Properties:** -// - idcsCsvAttributeNameMappings: [[columnHeaderName:Formatted Name, mapsTo:name.formatted], [columnHeaderName:Honorific Prefix, mapsTo:name.honorificPrefix], [columnHeaderName:First Name, mapsTo:name.givenName], [columnHeaderName:Middle Name, mapsTo:name.middleName], [columnHeaderName:Last Name, mapsTo:name.familyName], [columnHeaderName:Honorific Suffix, mapsTo:name.honorificSuffix]] -// - idcsPii: true -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCsvAttributeNameMappings: [[columnHeaderName:Formatted Name, mapsTo:name.formatted], [columnHeaderName:Honorific Prefix, mapsTo:name.honorificPrefix], [columnHeaderName:First Name, mapsTo:name.givenName], [columnHeaderName:Middle Name, mapsTo:name.middleName], [columnHeaderName:Last Name, mapsTo:name.familyName], [columnHeaderName:Honorific Suffix, mapsTo:name.honorificSuffix]] +// - idcsPii: true +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type MeName struct { // Last name diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/meta.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/meta.go index c75b396dd31..6112d947f6c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/meta.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/meta.go @@ -18,14 +18,14 @@ import ( // Meta A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]] -// - type: complex +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]] +// - type: complex type Meta struct { // Name of the resource type of the resource--for example, Users or Groups diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_api_key_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_api_key_user.go index c566df6d9b1..bbf93edb984 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_api_key_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_api_key_user.go @@ -18,14 +18,14 @@ import ( // MyApiKeyUser The user linked to the API key. // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyApiKeyUser struct { // The user's ID. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_app.go index 30787bddb59..3953bc5d7a9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_app.go @@ -18,13 +18,13 @@ import ( // MyAppApp Application on which the account is based // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type MyAppApp struct { // Application identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_owner.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_owner.go index 610ba6db85f..202443ea8aa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_owner.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_owner.go @@ -18,13 +18,13 @@ import ( // MyAppOwner Owning user of the account // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyAppOwner struct { // User Identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_user_wallet_artifact.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_user_wallet_artifact.go index e8f5effdb4d..17e84f888d3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_user_wallet_artifact.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_app_user_wallet_artifact.go @@ -18,13 +18,13 @@ import ( // MyAppUserWalletArtifact The UserWalletArtifact that contains the credentials that the system will use in performing Secure Form-Fill to log the User into this application. // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyAppUserWalletArtifact struct { // UserWalletArtifact identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_auth_token_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_auth_token_user.go index 0690eb623f1..c4b7025902a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_auth_token_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_auth_token_user.go @@ -18,14 +18,14 @@ import ( // MyAuthTokenUser The user linked to the Auth token. // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyAuthTokenUser struct { // The user's ID. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factor_initiator_third_party_factor.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factor_initiator_third_party_factor.go index d835de4142d..52200075852 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factor_initiator_third_party_factor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factor_initiator_third_party_factor.go @@ -18,14 +18,14 @@ import ( // MyAuthenticationFactorInitiatorThirdPartyFactor User's third-party authentication factor details // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyAuthenticationFactorInitiatorThirdPartyFactor struct { // The vendor name of the third party factor diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factor_validator_third_party_factor.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factor_validator_third_party_factor.go index ff3158feec7..e278f306c21 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factor_validator_third_party_factor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factor_validator_third_party_factor.go @@ -18,14 +18,14 @@ import ( // MyAuthenticationFactorValidatorThirdPartyFactor User's third-party authentication factor details // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyAuthenticationFactorValidatorThirdPartyFactor struct { // The vendor name of the third party factor diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factors_remover_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factors_remover_user.go index 9937b013ee6..7af3397f2d6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factors_remover_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_authentication_factors_remover_user.go @@ -18,14 +18,14 @@ import ( // MyAuthenticationFactorsRemoverUser User for whom the authentication factors need to be deleted // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type MyAuthenticationFactorsRemoverUser struct { // The identifier of the user diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_customer_secret_key_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_customer_secret_key_user.go index b98a6423b9c..9956f141432 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_customer_secret_key_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_customer_secret_key_user.go @@ -18,14 +18,14 @@ import ( // MyCustomerSecretKeyUser User linked to customer secret key // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyCustomerSecretKeyUser struct { // The user's ID. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_push_notification_target.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_push_notification_target.go index 761b2001e6e..74939216d75 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_push_notification_target.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_push_notification_target.go @@ -18,13 +18,13 @@ import ( // MyDevicePushNotificationTarget Push Notification target. Reference to Device notification related resource // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyDevicePushNotificationTarget struct { // The identifier of the push notification target diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_third_party_factor.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_third_party_factor.go index cc963f61c25..637e0532fd2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_third_party_factor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_third_party_factor.go @@ -19,13 +19,13 @@ import ( // MyDeviceThirdPartyFactor User's third-party authentication factor details // **Added In:** 19.2.1 // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyDeviceThirdPartyFactor struct { // The vendor name of the third party factor diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_user.go index 2c7a226021b..4c8042a076f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_device_user.go @@ -19,14 +19,14 @@ import ( // MyDeviceUser Device member // **Deprecated Since: 17.3.4** // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type MyDeviceUser struct { // The identifier of the user diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_o_auth2_client_credential_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_o_auth2_client_credential_user.go index 860bd7be34d..2b7de0a8164 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_o_auth2_client_credential_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_o_auth2_client_credential_user.go @@ -18,14 +18,14 @@ import ( // MyOAuth2ClientCredentialUser The user linked to the OAuth2 client credential. // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyOAuth2ClientCredentialUser struct { // The user's ID. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_request_requesting.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_request_requesting.go index 58eb4ee7107..51ea486223b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_request_requesting.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_request_requesting.go @@ -18,13 +18,13 @@ import ( // MyRequestRequesting Requestable resource reference. // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type MyRequestRequesting struct { // Resource identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_request_requestor.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_request_requestor.go index 161f28a62e7..9918d179b72 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_request_requestor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_request_requestor.go @@ -18,13 +18,13 @@ import ( // MyRequestRequestor Requesting User // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type MyRequestRequestor struct { // User identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_smtp_credential_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_smtp_credential_user.go index c7df5a7e35b..09d5a69240f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_smtp_credential_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_smtp_credential_user.go @@ -18,14 +18,14 @@ import ( // MySmtpCredentialUser User linked to smtp credential // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MySmtpCredentialUser struct { // User's id diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_support_account_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_support_account_user.go index b5d1058edf3..981911cb2a7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_support_account_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_support_account_user.go @@ -18,14 +18,14 @@ import ( // MySupportAccountUser User linked to Support Account // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MySupportAccountUser struct { // User's id diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_trusted_user_agent.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_trusted_user_agent.go index dffe5a2ae1a..65de12fe1f3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_trusted_user_agent.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_trusted_user_agent.go @@ -17,8 +17,9 @@ import ( ) // MyTrustedUserAgent This schema defines the attributes of Trusted User Agents owned by users. Multi-Factor Authentication uses Trusted User Agents to authenticate users. A User Agent is software application that a user uses to issue requests. -// For example, a User Agent could be a particular browser (possibly one of several executing on a desktop or laptop) or a particular mobile application (again, one of several executing on a particular mobile device). -// A User Agent is trusted once the Multi-Factor Authentication has verified it in some way. +// +// For example, a User Agent could be a particular browser (possibly one of several executing on a desktop or laptop) or a particular mobile application (again, one of several executing on a particular mobile device). +// A User Agent is trusted once the Multi-Factor Authentication has verified it in some way. type MyTrustedUserAgent struct { // REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \"enterprise\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_trusted_user_agent_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_trusted_user_agent_user.go index 54fa9646221..df84da027d3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_trusted_user_agent_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_trusted_user_agent_user.go @@ -18,14 +18,14 @@ import ( // MyTrustedUserAgentUser user for whom the trust-token was issued // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type MyTrustedUserAgentUser struct { // The SCIM ID of the user for whom the trust-token was issued. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_user_db_credentials_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_user_db_credentials_user.go index a23e9685dc8..25f1a4e57f9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_user_db_credentials_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/my_user_db_credentials_user.go @@ -18,15 +18,15 @@ import ( // MyUserDbCredentialsUser The user linked to the database credential. // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type MyUserDbCredentialsUser struct { // The user's identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/o_auth2_client_credential_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/o_auth2_client_credential_user.go index cb442aec7e1..fed3258ccb4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/o_auth2_client_credential_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/o_auth2_client_credential_user.go @@ -18,14 +18,14 @@ import ( // OAuth2ClientCredentialUser The user linked to the OAuth2 client credential. // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type OAuth2ClientCredentialUser struct { // The user's ID. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/smtp_credential_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/smtp_credential_user.go index c56f8d3c788..2ae78a1f92d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/smtp_credential_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/smtp_credential_user.go @@ -18,14 +18,14 @@ import ( // SmtpCredentialUser User linked to smtp credential // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type SmtpCredentialUser struct { // User's id diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_db_credentials_user.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_db_credentials_user.go index 7055cb82c1a..503c5321181 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_db_credentials_user.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_db_credentials_user.go @@ -18,15 +18,15 @@ import ( // UserDbCredentialsUser The user linked to the database credential. // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type UserDbCredentialsUser struct { // The user's identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_accounts.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_accounts.go index 72597ecaef7..be5706e1ce9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_accounts.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_accounts.go @@ -18,14 +18,14 @@ import ( // UserExtAccounts Accounts assigned to this User. Each value of this attribute refers to an app-specific identity that is owned by this User. Therefore, this attribute is a convenience that allows one to see on each User the Apps to which that User has access. // **SCIM++ Properties:** -// - idcsPii: true -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsPii: true +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtAccounts struct { // The Id of the Account assigned to the User. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_api_keys.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_api_keys.go index 791065191f1..2006a330970 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_api_keys.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_api_keys.go @@ -19,14 +19,14 @@ import ( // UserExtApiKeys A list of API keys corresponding to user. // **Added In:** 2012271618 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtApiKeys struct { // The user's API key value. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_app_roles.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_app_roles.go index 2d3cccce07d..151abc7a41a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_app_roles.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_app_roles.go @@ -18,13 +18,13 @@ import ( // UserExtAppRoles A list of all AppRoles to which this User belongs directly, indirectly or implicitly. The User could belong directly because the User is a member of the AppRole, could belong indirectly because the User is a member of a Group that is a member of the AppRole, or could belong implicitly because the AppRole is public. // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtAppRoles struct { // The Id of the AppRole assigned to the User. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_applicable_authentication_target_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_applicable_authentication_target_app.go index 8f6e5298fe4..1ea426c008e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_applicable_authentication_target_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_applicable_authentication_target_app.go @@ -19,13 +19,13 @@ import ( // UserExtApplicableAuthenticationTargetApp The app against which the user will authenticate. The value is not persisted but rather calculated. If the user's delegatedAuthenticationTargetApp is set, that value is returned. Otherwise, the app returned by evaluating the user's applicable Delegated Authentication Policy is returned. // **Added In:** 18.1.6 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtApplicableAuthenticationTargetApp struct { // A label that indicates whether this is an App or IdentitySource. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_applicable_password_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_applicable_password_policy.go index 24d7887a536..f72565b5429 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_applicable_password_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_applicable_password_policy.go @@ -19,15 +19,15 @@ import ( // UserExtApplicablePasswordPolicy Applicable Password Policy // **Added In:** 20.1.3 // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtApplicablePasswordPolicy struct { // The identifier of the password policy. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_auth_tokens.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_auth_tokens.go index 9a7b59ba678..8ed811a62fd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_auth_tokens.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_auth_tokens.go @@ -19,14 +19,14 @@ import ( // UserExtAuthTokens A list of Auth tokens corresponding to user. // **Added In:** 2012271618 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtAuthTokens struct { // The user's Auth token identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_bypass_codes.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_bypass_codes.go index ca3adefe3a1..a4abde98607 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_bypass_codes.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_bypass_codes.go @@ -19,13 +19,13 @@ import ( // UserExtBypassCodes A list of bypass codes that belongs to the user. // **Added In:** 18.3.6 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtBypassCodes struct { // The user's bypass code identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_customer_secret_keys.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_customer_secret_keys.go index 348b7cefbc9..b9668712a4c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_customer_secret_keys.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_customer_secret_keys.go @@ -19,14 +19,14 @@ import ( // UserExtCustomerSecretKeys A list of customer secret keys corresponding to user. // **Added In:** 2102181953 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtCustomerSecretKeys struct { // The user's customer secret key identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_db_credentials.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_db_credentials.go index ce139e5ba59..0e644440740 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_db_credentials.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_db_credentials.go @@ -19,14 +19,14 @@ import ( // UserExtDbCredentials A list of database credentials corresponding to user. // **Added In:** 2102181953 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtDbCredentials struct { // The user's database credential identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_delegated_authentication_target_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_delegated_authentication_target_app.go index 10d7a15c002..b097e854e40 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_delegated_authentication_target_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_delegated_authentication_target_app.go @@ -19,14 +19,14 @@ import ( // UserExtDelegatedAuthenticationTargetApp If set, indicates the user's preferred authentication target app. If not set and the user's \"syncedFromApp\" is set and is enabled for delegated authentication, it is used. Otherwise, the user authenticates locally to Oracle Identity Cloud Service. // **Added In:** 17.4.6 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type UserExtDelegatedAuthenticationTargetApp struct { // App identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_devices.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_devices.go index 6cf26d7b0b4..489b1a6c83f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_devices.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_devices.go @@ -19,13 +19,13 @@ import ( // UserExtDevices A list of devices enrolled by the user. // **Added In:** 18.3.6 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtDevices struct { // The user's device identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_factor_identifier.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_factor_identifier.go index 8fe4c8af9ce..5552f8ae2c3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_factor_identifier.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_factor_identifier.go @@ -19,14 +19,14 @@ import ( // UserExtFactorIdentifier Factor Identifier ID // **Added In:** 20.1.3 // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type UserExtFactorIdentifier struct { // The identifier of the User's preferred device diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_grants.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_grants.go index 731642309ff..a245c6e2806 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_grants.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_grants.go @@ -18,13 +18,13 @@ import ( // UserExtGrants Grants to this User. Each value of this attribute refers to a Grant to this User of some App (and optionally of some entitlement). Therefore, this attribute is a convenience that allows one to see on each User all of the Grants to that User. // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtGrants struct { // The ID of this Grant to this User. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_idcs_app_roles_limited_to_groups.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_idcs_app_roles_limited_to_groups.go index 8632557e501..e9631975480 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_idcs_app_roles_limited_to_groups.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_idcs_app_roles_limited_to_groups.go @@ -19,13 +19,13 @@ import ( // UserExtIdcsAppRolesLimitedToGroups Description: // **Added In:** 19.2.1 // **SCIM++ Properties:** -// - idcsCompositeKey: [value, idcsAppRoleId] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex +// - idcsCompositeKey: [value, idcsAppRoleId] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex type UserExtIdcsAppRolesLimitedToGroups struct { // The id of the Oracle Identity Cloud Service AppRole grant limited to one or more Groups. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_locked.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_locked.go index 081b2b284d7..9f3d6412ca6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_locked.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_locked.go @@ -18,15 +18,15 @@ import ( // UserExtLocked A complex attribute that indicates an account is locked (blocking any new sessions). // **SCIM++ Properties:** -// - idcsCsvAttributeNameMappings: [[columnHeaderName:Locked, mapsTo:locked.on], [columnHeaderName:Locked Reason, mapsTo:locked.reason], [columnHeaderName:Locked Date, mapsTo:locked.lockDate]] -// - idcsSearchable: false -// - idcsAllowUpdatesInReadOnlyMode: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCsvAttributeNameMappings: [[columnHeaderName:Locked, mapsTo:locked.on], [columnHeaderName:Locked Reason, mapsTo:locked.reason], [columnHeaderName:Locked Date, mapsTo:locked.lockDate]] +// - idcsSearchable: false +// - idcsAllowUpdatesInReadOnlyMode: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type UserExtLocked struct { // Indicates the reason for locking the account. Valid values are: 0 - failed password login attempts, 1 - admin lock, 2 - failed reset password attempts, 3 - failed MFA login attempts, 4 - failed MFA login attempts for federated user, 5 - failed Database login attempts diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_manager.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_manager.go index a5406c31a2f..d6a7551592a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_manager.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_manager.go @@ -18,14 +18,14 @@ import ( // UserExtManager The User's manager. A complex type that optionally allows Service Providers to represent organizational hierarchy by referencing the 'id' attribute of another User. // **SCIM++ Properties:** -// - idcsCsvAttributeNameMappings: [[columnHeaderName:Manager, deprecatedColumnHeaderName:Manager Name, mapsTo:manager.value]] -// - idcsPii: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCsvAttributeNameMappings: [[columnHeaderName:Manager, deprecatedColumnHeaderName:Manager Name, mapsTo:manager.value]] +// - idcsPii: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type UserExtManager struct { // The id of the SCIM resource representing the User's manager. RECOMMENDED. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_o_auth2_client_credentials.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_o_auth2_client_credentials.go index 5414e397e17..8e3fdb31ce9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_o_auth2_client_credentials.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_o_auth2_client_credentials.go @@ -19,14 +19,14 @@ import ( // UserExtOAuth2ClientCredentials A list of OAuth2 client credentials corresponding to a user. // **Added In:** 2012271618 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtOAuth2ClientCredentials struct { // The user's OAuth2 client credential identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_password_verifiers.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_password_verifiers.go index e937d104f55..aee65a8f003 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_password_verifiers.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_password_verifiers.go @@ -19,14 +19,14 @@ import ( // UserExtPasswordVerifiers Password Verifiers for DB User. // **Added In:** 18.2.2 // **SCIM++ Properties:** -// - idcsCompositeKey: [type] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [type] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtPasswordVerifiers struct { // Type of database password verifier (for example, MR-SHA512 or SSHA). diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_preferred_device.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_preferred_device.go index 5c727656fb3..293e7aaad57 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_preferred_device.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_preferred_device.go @@ -19,14 +19,14 @@ import ( // UserExtPreferredDevice The user's preferred device. // **Added In:** 18.3.6 // **SCIM++ Properties:** -// - caseExact: false -// - idcsSearchable: true -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsSearchable: true +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type UserExtPreferredDevice struct { // The user's preferred device identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_realm_users.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_realm_users.go index 755170b05eb..3f0cb14b8ce 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_realm_users.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_realm_users.go @@ -18,13 +18,13 @@ import ( // UserExtRealmUsers A list of kerberos realm users for an Oracle Identity Cloud Service User // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtRealmUsers struct { // id of the KerberosRealmUser associated with the Oracle Identity Cloud Service User. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_recovery_locked.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_recovery_locked.go index eaa4196100f..2d2274c0af8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_recovery_locked.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_recovery_locked.go @@ -19,13 +19,13 @@ import ( // UserExtRecoveryLocked A complex attribute that indicates a password recovery is locked (blocking any new sessions). // **Added In:** 19.1.4 // **SCIM++ Properties:** -// - idcsSearchable: false -// - multiValued: false -// - mutability: readWrite -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsSearchable: false +// - multiValued: false +// - mutability: readWrite +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type UserExtRecoveryLocked struct { // Indicates that the recovery is locked. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_risk_scores.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_risk_scores.go index c169e0d053b..5f533f32a6c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_risk_scores.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_risk_scores.go @@ -19,14 +19,14 @@ import ( // UserExtRiskScores The risk score pertaining to the user. // **Added In:** 18.1.6 // **SCIM++ Properties:** -// - caseExact: false -// - idcsCompositeKey: [value] -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - caseExact: false +// - idcsCompositeKey: [value] +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtRiskScores struct { // Risk Provider Profile: Identifier for the provider service from which the risk score was received. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_sec_questions.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_sec_questions.go index a058e8ba519..d62bb87630d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_sec_questions.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_sec_questions.go @@ -18,13 +18,13 @@ import ( // UserExtSecQuestions The schema used to mnage security question and answers provided by a user for account recovery and/or MFA. While setting up security questions, a user can also provide a hint for the answer. // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtSecQuestions struct { // The identifier of the question selected by the user when setting up a security question. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_self_registration_profile.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_self_registration_profile.go index 785bd4cb0fd..a2527d7acdf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_self_registration_profile.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_self_registration_profile.go @@ -18,13 +18,13 @@ import ( // UserExtSelfRegistrationProfile Self registration profile used when user is self registered. // **SCIM++ Properties:** -// - idcsSearchable: true -// - multiValued: false -// - mutability: immutable -// - required: true -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsSearchable: true +// - multiValued: false +// - mutability: immutable +// - required: true +// - returned: request +// - type: complex +// - uniqueness: none type UserExtSelfRegistrationProfile struct { // Self Registration Profile Id diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_smtp_credentials.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_smtp_credentials.go index 760298fdb14..9a2e65faa4b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_smtp_credentials.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_smtp_credentials.go @@ -19,14 +19,14 @@ import ( // UserExtSmtpCredentials A list of SMTP credentials corresponding to user. // **Added In:** 2012271618 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtSmtpCredentials struct { // The user's SMTP credential identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_social_accounts.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_social_accounts.go index 9c9f43b1df4..c14788f58ff 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_social_accounts.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_social_accounts.go @@ -18,15 +18,15 @@ import ( // UserExtSocialAccounts Description: // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - idcsPii: true -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - idcsPii: true +// - type: complex +// - uniqueness: none type UserExtSocialAccounts struct { Value *string `mandatory:"true" json:"value"` diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_support_accounts.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_support_accounts.go index 962672ba651..6f1d36d8246 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_support_accounts.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_support_accounts.go @@ -19,14 +19,14 @@ import ( // UserExtSupportAccounts A list of Support Accounts corresponding to user. // **Added In:** 2103141444 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readOnly -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readOnly +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtSupportAccounts struct { // The identifier of the User's support Account. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_synced_from_app.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_synced_from_app.go index 8d0365fd8a0..b72aaa46ad7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_synced_from_app.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_synced_from_app.go @@ -19,14 +19,14 @@ import ( // UserExtSyncedFromApp Managed App or an Identity Source from where the user is synced. If enabled, this Managed App or Identity Source can be used for performing delegated authentication. // **Added In:** 18.2.6 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type UserExtSyncedFromApp struct { // App identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_terms_of_use_consents.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_terms_of_use_consents.go index 4ae6bdea0e2..4c7d324829f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_terms_of_use_consents.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_terms_of_use_consents.go @@ -19,14 +19,14 @@ import ( // UserExtTermsOfUseConsents Description: // **Added In:** 18.2.6 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - idcsSearchable: true -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - idcsSearchable: true +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtTermsOfUseConsents struct { Value *string `mandatory:"true" json:"value"` diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_trusted_user_agents.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_trusted_user_agents.go index c94eea3c2d1..c143aa87750 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_trusted_user_agents.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_trusted_user_agents.go @@ -19,13 +19,13 @@ import ( // UserExtTrustedUserAgents A list of trusted User Agents owned by this user. Multi-Factored Authentication uses Trusted User Agents to authenticate users. A User Agent is software application that a user uses to issue requests. For example, a User Agent could be a particular browser (possibly one of several executing on a desktop or laptop) or a particular mobile application (again, oneof several executing on a particular mobile device). A User Agent is trusted once the Multi-Factor Authentication has verified it in some way. // **Added In:** 18.3.6 // **SCIM++ Properties:** -// - idcsCompositeKey: [value] -// - multiValued: true -// - mutability: readWrite -// - required: false -// - returned: request -// - type: complex -// - uniqueness: none +// - idcsCompositeKey: [value] +// - multiValued: true +// - mutability: readWrite +// - required: false +// - returned: request +// - type: complex +// - uniqueness: none type UserExtTrustedUserAgents struct { // The user's trusted user agent identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_user_token.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_user_token.go index 68f0b3890b5..2c7ac4af69d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_user_token.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_ext_user_token.go @@ -19,13 +19,13 @@ import ( // UserExtUserToken User token returned if userFlowControlledByExternalClient is true // **Added In:** 18.4.2 // **SCIM++ Properties:** -// - caseExact: false -// - multiValued: false -// - mutability: readOnly -// - required: false -// - returned: default -// - type: complex -// - uniqueness: none +// - caseExact: false +// - multiValued: false +// - mutability: readOnly +// - required: false +// - returned: default +// - type: complex +// - uniqueness: none type UserExtUserToken struct { // User Token identifier diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_name.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_name.go index c402a0a9a03..06d4b18d517 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_name.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_name.go @@ -18,14 +18,14 @@ import ( // UserName A complex attribute that contains attributes representing the name // **SCIM++ Properties:** -// - idcsCsvAttributeNameMappings: [[columnHeaderName:Formatted Name, mapsTo:name.formatted], [columnHeaderName:Honorific Prefix, mapsTo:name.honorificPrefix], [columnHeaderName:First Name, mapsTo:name.givenName], [columnHeaderName:Middle Name, mapsTo:name.middleName], [columnHeaderName:Last Name, mapsTo:name.familyName], [columnHeaderName:Honorific Suffix, mapsTo:name.honorificSuffix]] -// - idcsPii: true -// - multiValued: false -// - mutability: readWrite -// - required: true -// - returned: default -// - type: complex -// - uniqueness: none +// - idcsCsvAttributeNameMappings: [[columnHeaderName:Formatted Name, mapsTo:name.formatted], [columnHeaderName:Honorific Prefix, mapsTo:name.honorificPrefix], [columnHeaderName:First Name, mapsTo:name.givenName], [columnHeaderName:Middle Name, mapsTo:name.middleName], [columnHeaderName:Last Name, mapsTo:name.familyName], [columnHeaderName:Honorific Suffix, mapsTo:name.honorificSuffix]] +// - idcsPii: true +// - multiValued: false +// - mutability: readWrite +// - required: true +// - returned: default +// - type: complex +// - uniqueness: none type UserName struct { // Last name diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_password_resetter_user_token.go b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_password_resetter_user_token.go index 20fdf82e6ca..fa54c5a392b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_password_resetter_user_token.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/identitydomains/user_password_resetter_user_token.go @@ -18,13 +18,13 @@ import ( // UserPasswordResetterUserToken The user token returned if userFlowControlledByExternalClient is set to true. // **SCIM++ Properties:** -// - type: complex -// - multiValued: false -// - required: false -// - caseExact: false -// - mutability: readOnly -// - returned: default -// - uniqueness: none +// - type: complex +// - multiValued: false +// - required: false +// - caseExact: false +// - mutability: readOnly +// - returned: default +// - uniqueness: none type UserPasswordResetterUserToken struct { // The user token identifier. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/integration/integration_integrationinstance_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/integration/integration_integrationinstance_client.go index 944ff5325e8..72761acf650 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/integration/integration_integrationinstance_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/integration/integration_integrationinstance_client.go @@ -93,7 +93,7 @@ func (client *IntegrationInstanceClient) ConfigurationProvider() *common.Configu // ChangeIntegrationInstanceCompartment Change the compartment for an integration instance // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/ChangeIntegrationInstanceCompartment.go.html to see an example of how to use ChangeIntegrationInstanceCompartment API. func (client IntegrationInstanceClient) ChangeIntegrationInstanceCompartment(ctx context.Context, request ChangeIntegrationInstanceCompartmentRequest) (response ChangeIntegrationInstanceCompartmentResponse, err error) { @@ -156,7 +156,7 @@ func (client IntegrationInstanceClient) changeIntegrationInstanceCompartment(ctx // ChangeIntegrationInstanceNetworkEndpoint Change an Integration instance network endpoint. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/ChangeIntegrationInstanceNetworkEndpoint.go.html to see an example of how to use ChangeIntegrationInstanceNetworkEndpoint API. func (client IntegrationInstanceClient) ChangeIntegrationInstanceNetworkEndpoint(ctx context.Context, request ChangeIntegrationInstanceNetworkEndpointRequest) (response ChangeIntegrationInstanceNetworkEndpointResponse, err error) { @@ -219,7 +219,7 @@ func (client IntegrationInstanceClient) changeIntegrationInstanceNetworkEndpoint // ChangePrivateEndpointOutboundConnection Change private endpoint outbound connection for given Integration instance. The operation is long-running // and creates a new WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/ChangePrivateEndpointOutboundConnection.go.html to see an example of how to use ChangePrivateEndpointOutboundConnection API. func (client IntegrationInstanceClient) ChangePrivateEndpointOutboundConnection(ctx context.Context, request ChangePrivateEndpointOutboundConnectionRequest) (response ChangePrivateEndpointOutboundConnectionResponse, err error) { @@ -281,7 +281,7 @@ func (client IntegrationInstanceClient) changePrivateEndpointOutboundConnection( // CreateIntegrationInstance Creates a new Integration Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/CreateIntegrationInstance.go.html to see an example of how to use CreateIntegrationInstance API. // A default retry strategy applies to this operation CreateIntegrationInstance() @@ -344,7 +344,7 @@ func (client IntegrationInstanceClient) createIntegrationInstance(ctx context.Co // DeleteIntegrationInstance Deletes an Integration Instance resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/DeleteIntegrationInstance.go.html to see an example of how to use DeleteIntegrationInstance API. func (client IntegrationInstanceClient) DeleteIntegrationInstance(ctx context.Context, request DeleteIntegrationInstanceRequest) (response DeleteIntegrationInstanceResponse, err error) { @@ -401,7 +401,7 @@ func (client IntegrationInstanceClient) deleteIntegrationInstance(ctx context.Co // EnableProcessAutomation Enable Process Automation for given Integration Instance // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/EnableProcessAutomation.go.html to see an example of how to use EnableProcessAutomation API. func (client IntegrationInstanceClient) EnableProcessAutomation(ctx context.Context, request EnableProcessAutomationRequest) (response EnableProcessAutomationResponse, err error) { @@ -463,7 +463,7 @@ func (client IntegrationInstanceClient) enableProcessAutomation(ctx context.Cont // GetIntegrationInstance Gets a IntegrationInstance by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/GetIntegrationInstance.go.html to see an example of how to use GetIntegrationInstance API. func (client IntegrationInstanceClient) GetIntegrationInstance(ctx context.Context, request GetIntegrationInstanceRequest) (response GetIntegrationInstanceResponse, err error) { @@ -520,7 +520,7 @@ func (client IntegrationInstanceClient) getIntegrationInstance(ctx context.Conte // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client IntegrationInstanceClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -577,7 +577,7 @@ func (client IntegrationInstanceClient) getWorkRequest(ctx context.Context, requ // ListIntegrationInstances Returns a list of Integration Instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/ListIntegrationInstances.go.html to see an example of how to use ListIntegrationInstances API. func (client IntegrationInstanceClient) ListIntegrationInstances(ctx context.Context, request ListIntegrationInstancesRequest) (response ListIntegrationInstancesResponse, err error) { @@ -634,7 +634,7 @@ func (client IntegrationInstanceClient) listIntegrationInstances(ctx context.Con // ListWorkRequestErrors Get the errors of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client IntegrationInstanceClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -691,7 +691,7 @@ func (client IntegrationInstanceClient) listWorkRequestErrors(ctx context.Contex // ListWorkRequestLogs Get the logs of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client IntegrationInstanceClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -748,7 +748,7 @@ func (client IntegrationInstanceClient) listWorkRequestLogs(ctx context.Context, // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client IntegrationInstanceClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -805,7 +805,7 @@ func (client IntegrationInstanceClient) listWorkRequests(ctx context.Context, re // StartIntegrationInstance Start an integration instance that was previously in an INACTIVE state // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/StartIntegrationInstance.go.html to see an example of how to use StartIntegrationInstance API. func (client IntegrationInstanceClient) StartIntegrationInstance(ctx context.Context, request StartIntegrationInstanceRequest) (response StartIntegrationInstanceResponse, err error) { @@ -867,7 +867,7 @@ func (client IntegrationInstanceClient) startIntegrationInstance(ctx context.Con // StopIntegrationInstance Stop an integration instance that was previously in an ACTIVE state // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/StopIntegrationInstance.go.html to see an example of how to use StopIntegrationInstance API. func (client IntegrationInstanceClient) StopIntegrationInstance(ctx context.Context, request StopIntegrationInstanceRequest) (response StopIntegrationInstanceResponse, err error) { @@ -929,7 +929,7 @@ func (client IntegrationInstanceClient) stopIntegrationInstance(ctx context.Cont // UpdateIntegrationInstance Updates the Integration Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/integration/UpdateIntegrationInstance.go.html to see an example of how to use UpdateIntegrationInstance API. func (client IntegrationInstanceClient) UpdateIntegrationInstance(ctx context.Context, request UpdateIntegrationInstanceRequest) (response UpdateIntegrationInstanceResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/jms/application_work_item_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/jms/application_work_item_details.go index 61027557272..869a3ab13d9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/jms/application_work_item_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/jms/application_work_item_details.go @@ -35,7 +35,7 @@ type ApplicationWorkItemDetails struct { WorkItemType WorkItemTypeEnum `mandatory:"false" json:"workItemType,omitempty"` } -//GetWorkItemType returns WorkItemType +// GetWorkItemType returns WorkItemType func (m ApplicationWorkItemDetails) GetWorkItemType() WorkItemTypeEnum { return m.WorkItemType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/jms/basic_work_item_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/jms/basic_work_item_details.go index af46de5918d..8a2fa6de807 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/jms/basic_work_item_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/jms/basic_work_item_details.go @@ -23,7 +23,7 @@ type BasicWorkItemDetails struct { WorkItemType WorkItemTypeEnum `mandatory:"false" json:"workItemType,omitempty"` } -//GetWorkItemType returns WorkItemType +// GetWorkItemType returns WorkItemType func (m BasicWorkItemDetails) GetWorkItemType() WorkItemTypeEnum { return m.WorkItemType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/jms/jms_javamanagementservice_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/jms/jms_javamanagementservice_client.go index 7a3ef2ff5f5..29f1a1eb3d4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/jms/jms_javamanagementservice_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/jms/jms_javamanagementservice_client.go @@ -93,7 +93,7 @@ func (client *JavaManagementServiceClient) ConfigurationProvider() *common.Confi // AddFleetInstallationSites Add Java installation sites in a Fleet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/AddFleetInstallationSites.go.html to see an example of how to use AddFleetInstallationSites API. // A default retry strategy applies to this operation AddFleetInstallationSites() @@ -156,7 +156,7 @@ func (client JavaManagementServiceClient) addFleetInstallationSites(ctx context. // CancelWorkRequest Deletes the work request specified by an identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -214,7 +214,7 @@ func (client JavaManagementServiceClient) cancelWorkRequest(ctx context.Context, // ChangeFleetCompartment Move a specified Fleet into the compartment identified in the POST form. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ChangeFleetCompartment.go.html to see an example of how to use ChangeFleetCompartment API. // A default retry strategy applies to this operation ChangeFleetCompartment() @@ -277,7 +277,7 @@ func (client JavaManagementServiceClient) changeFleetCompartment(ctx context.Con // CreateBlocklist Add a new record to the fleet blocklist. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/CreateBlocklist.go.html to see an example of how to use CreateBlocklist API. // A default retry strategy applies to this operation CreateBlocklist() @@ -345,7 +345,7 @@ func (client JavaManagementServiceClient) createBlocklist(ctx context.Context, r // See the Service Change Notice (https://docs.oracle.com/en-us/iaas/Content/servicechanges.htm#JMS) for more details. // Migrate existing fleets using the `UpdateFleet` API to set the `inventoryLog` parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/CreateFleet.go.html to see an example of how to use CreateFleet API. // A default retry strategy applies to this operation CreateFleet() @@ -408,7 +408,7 @@ func (client JavaManagementServiceClient) createFleet(ctx context.Context, reque // DeleteBlocklist Deletes the blocklist record specified by an identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/DeleteBlocklist.go.html to see an example of how to use DeleteBlocklist API. // A default retry strategy applies to this operation DeleteBlocklist() @@ -466,7 +466,7 @@ func (client JavaManagementServiceClient) deleteBlocklist(ctx context.Context, r // DeleteCryptoAnalysisResult Deletes the metadata for the result of a Crypto event analysis. The actual report shall remain in the object storage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/DeleteCryptoAnalysisResult.go.html to see an example of how to use DeleteCryptoAnalysisResult API. // A default retry strategy applies to this operation DeleteCryptoAnalysisResult() @@ -524,7 +524,7 @@ func (client JavaManagementServiceClient) deleteCryptoAnalysisResult(ctx context // DeleteFleet Deletes the Fleet specified by an identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/DeleteFleet.go.html to see an example of how to use DeleteFleet API. // A default retry strategy applies to this operation DeleteFleet() @@ -582,7 +582,7 @@ func (client JavaManagementServiceClient) deleteFleet(ctx context.Context, reque // DeleteJavaMigrationAnalysisResult Delete the Java migration analysis result. The actual report will remain in the Object Storage bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/DeleteJavaMigrationAnalysisResult.go.html to see an example of how to use DeleteJavaMigrationAnalysisResult API. // A default retry strategy applies to this operation DeleteJavaMigrationAnalysisResult() @@ -640,7 +640,7 @@ func (client JavaManagementServiceClient) deleteJavaMigrationAnalysisResult(ctx // DeletePerformanceTuningAnalysisResult Deletes only the metadata of the Performance Tuning Analysis result, but the file remains in the object storage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/DeletePerformanceTuningAnalysisResult.go.html to see an example of how to use DeletePerformanceTuningAnalysisResult API. // A default retry strategy applies to this operation DeletePerformanceTuningAnalysisResult() @@ -698,7 +698,7 @@ func (client JavaManagementServiceClient) deletePerformanceTuningAnalysisResult( // GenerateAgentDeployScript Generates Agent Deploy Script for Fleet using the information provided. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GenerateAgentDeployScript.go.html to see an example of how to use GenerateAgentDeployScript API. // A default retry strategy applies to this operation GenerateAgentDeployScript() @@ -755,7 +755,7 @@ func (client JavaManagementServiceClient) generateAgentDeployScript(ctx context. // GetCryptoAnalysisResult Retrieve the metadata for the result of a Crypto event analysis. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GetCryptoAnalysisResult.go.html to see an example of how to use GetCryptoAnalysisResult API. // A default retry strategy applies to this operation GetCryptoAnalysisResult() @@ -813,7 +813,7 @@ func (client JavaManagementServiceClient) getCryptoAnalysisResult(ctx context.Co // GetFleet Retrieve a Fleet with the specified identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GetFleet.go.html to see an example of how to use GetFleet API. // A default retry strategy applies to this operation GetFleet() @@ -871,7 +871,7 @@ func (client JavaManagementServiceClient) getFleet(ctx context.Context, request // GetFleetAdvancedFeatureConfiguration Returns Fleet level advanced feature configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GetFleetAdvancedFeatureConfiguration.go.html to see an example of how to use GetFleetAdvancedFeatureConfiguration API. // A default retry strategy applies to this operation GetFleetAdvancedFeatureConfiguration() @@ -929,7 +929,7 @@ func (client JavaManagementServiceClient) getFleetAdvancedFeatureConfiguration(c // GetFleetAgentConfiguration Retrieve a Fleet Agent Configuration for the specified Fleet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GetFleetAgentConfiguration.go.html to see an example of how to use GetFleetAgentConfiguration API. // A default retry strategy applies to this operation GetFleetAgentConfiguration() @@ -987,7 +987,7 @@ func (client JavaManagementServiceClient) getFleetAgentConfiguration(ctx context // GetJavaFamily Returns metadata associated with a specific Java release family. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GetJavaFamily.go.html to see an example of how to use GetJavaFamily API. // A default retry strategy applies to this operation GetJavaFamily() @@ -1045,7 +1045,7 @@ func (client JavaManagementServiceClient) getJavaFamily(ctx context.Context, req // GetJavaMigrationAnalysisResult Retrieve Java Migration Analysis result. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GetJavaMigrationAnalysisResult.go.html to see an example of how to use GetJavaMigrationAnalysisResult API. // A default retry strategy applies to this operation GetJavaMigrationAnalysisResult() @@ -1103,7 +1103,7 @@ func (client JavaManagementServiceClient) getJavaMigrationAnalysisResult(ctx con // GetJavaRelease Returns detail of a Java release. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GetJavaRelease.go.html to see an example of how to use GetJavaRelease API. // A default retry strategy applies to this operation GetJavaRelease() @@ -1161,7 +1161,7 @@ func (client JavaManagementServiceClient) getJavaRelease(ctx context.Context, re // GetPerformanceTuningAnalysisResult Retrieve metadata of the Performance Tuning Analysis result. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GetPerformanceTuningAnalysisResult.go.html to see an example of how to use GetPerformanceTuningAnalysisResult API. // A default retry strategy applies to this operation GetPerformanceTuningAnalysisResult() @@ -1219,7 +1219,7 @@ func (client JavaManagementServiceClient) getPerformanceTuningAnalysisResult(ctx // GetWorkRequest Retrieve the details of a work request with the specified ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1277,7 +1277,7 @@ func (client JavaManagementServiceClient) getWorkRequest(ctx context.Context, re // ListAnnouncements Return a list of AnnouncementSummary items // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListAnnouncements.go.html to see an example of how to use ListAnnouncements API. // A default retry strategy applies to this operation ListAnnouncements() @@ -1335,7 +1335,7 @@ func (client JavaManagementServiceClient) listAnnouncements(ctx context.Context, // ListBlocklists Returns a list of blocklist entities contained by a fleet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListBlocklists.go.html to see an example of how to use ListBlocklists API. // A default retry strategy applies to this operation ListBlocklists() @@ -1393,7 +1393,7 @@ func (client JavaManagementServiceClient) listBlocklists(ctx context.Context, re // ListCryptoAnalysisResults Lists the results of a Crypto event analysis. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListCryptoAnalysisResults.go.html to see an example of how to use ListCryptoAnalysisResults API. // A default retry strategy applies to this operation ListCryptoAnalysisResults() @@ -1451,7 +1451,7 @@ func (client JavaManagementServiceClient) listCryptoAnalysisResults(ctx context. // ListFleetDiagnoses List potential diagnoses that would put a fleet into FAILED or NEEDS_ATTENTION lifecycle state. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListFleetDiagnoses.go.html to see an example of how to use ListFleetDiagnoses API. // A default retry strategy applies to this operation ListFleetDiagnoses() @@ -1510,7 +1510,7 @@ func (client JavaManagementServiceClient) listFleetDiagnoses(ctx context.Context // ListFleets Returns a list of all the Fleets contained by a compartment. The query parameter `compartmentId` // is required unless the query parameter `id` is specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListFleets.go.html to see an example of how to use ListFleets API. // A default retry strategy applies to this operation ListFleets() @@ -1568,7 +1568,7 @@ func (client JavaManagementServiceClient) listFleets(ctx context.Context, reques // ListInstallationSites List Java installation sites in a Fleet filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListInstallationSites.go.html to see an example of how to use ListInstallationSites API. // A default retry strategy applies to this operation ListInstallationSites() @@ -1627,7 +1627,7 @@ func (client JavaManagementServiceClient) listInstallationSites(ctx context.Cont // ListJavaFamilies Returns a list of the Java release family information. // A Java release family is typically a major version in the Java version identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListJavaFamilies.go.html to see an example of how to use ListJavaFamilies API. // A default retry strategy applies to this operation ListJavaFamilies() @@ -1685,7 +1685,7 @@ func (client JavaManagementServiceClient) listJavaFamilies(ctx context.Context, // ListJavaMigrationAnalysisResults Lists the results of a Java migration analysis. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListJavaMigrationAnalysisResults.go.html to see an example of how to use ListJavaMigrationAnalysisResults API. // A default retry strategy applies to this operation ListJavaMigrationAnalysisResults() @@ -1743,7 +1743,7 @@ func (client JavaManagementServiceClient) listJavaMigrationAnalysisResults(ctx c // ListJavaReleases Returns a list of Java releases. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListJavaReleases.go.html to see an example of how to use ListJavaReleases API. // A default retry strategy applies to this operation ListJavaReleases() @@ -1801,7 +1801,7 @@ func (client JavaManagementServiceClient) listJavaReleases(ctx context.Context, // ListJreUsage List Java Runtime usage in a specified host filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListJreUsage.go.html to see an example of how to use ListJreUsage API. // A default retry strategy applies to this operation ListJreUsage() @@ -1859,7 +1859,7 @@ func (client JavaManagementServiceClient) listJreUsage(ctx context.Context, requ // ListPerformanceTuningAnalysisResults List Performance Tuning Analysis results. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListPerformanceTuningAnalysisResults.go.html to see an example of how to use ListPerformanceTuningAnalysisResults API. // A default retry strategy applies to this operation ListPerformanceTuningAnalysisResults() @@ -1917,7 +1917,7 @@ func (client JavaManagementServiceClient) listPerformanceTuningAnalysisResults(c // ListWorkItems Retrieve a paginated list of work items for a specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListWorkItems.go.html to see an example of how to use ListWorkItems API. // A default retry strategy applies to this operation ListWorkItems() @@ -1975,7 +1975,7 @@ func (client JavaManagementServiceClient) listWorkItems(ctx context.Context, req // ListWorkRequestErrors Retrieve a (paginated) list of errors for a specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -2033,7 +2033,7 @@ func (client JavaManagementServiceClient) listWorkRequestErrors(ctx context.Cont // ListWorkRequestLogs Retrieve a paginated list of logs for a specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -2091,7 +2091,7 @@ func (client JavaManagementServiceClient) listWorkRequestLogs(ctx context.Contex // ListWorkRequests List the work requests in a compartment. The query parameter `compartmentId` is required unless the query parameter `id` or `fleetId` is specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2149,7 +2149,7 @@ func (client JavaManagementServiceClient) listWorkRequests(ctx context.Context, // RemoveFleetInstallationSites Remove Java installation sites in a Fleet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/RemoveFleetInstallationSites.go.html to see an example of how to use RemoveFleetInstallationSites API. // A default retry strategy applies to this operation RemoveFleetInstallationSites() @@ -2212,7 +2212,7 @@ func (client JavaManagementServiceClient) removeFleetInstallationSites(ctx conte // RequestCryptoAnalyses Request to perform crypto analysis on one or more selected targets in the Fleet. The result of the crypto analysis will be uploaded to the object storage bucket created by JMS on enabling the Crypto Event Analysis feature in the Fleet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/RequestCryptoAnalyses.go.html to see an example of how to use RequestCryptoAnalyses API. // A default retry strategy applies to this operation RequestCryptoAnalyses() @@ -2271,7 +2271,7 @@ func (client JavaManagementServiceClient) requestCryptoAnalyses(ctx context.Cont // RequestJavaMigrationAnalyses Request to perform a Java migration analysis. The results of the Java migration analysis will be uploaded to the // Object Storage bucket that you designate when you enable the Java Migration Analysis feature. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/RequestJavaMigrationAnalyses.go.html to see an example of how to use RequestJavaMigrationAnalyses API. // A default retry strategy applies to this operation RequestJavaMigrationAnalyses() @@ -2329,7 +2329,7 @@ func (client JavaManagementServiceClient) requestJavaMigrationAnalyses(ctx conte // RequestJfrRecordings Request to collect the JFR recordings on the selected target in the Fleet. The JFR files are uploaded to the object storage bucket created by JMS on enabling Generic JFR feature in the Fleet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/RequestJfrRecordings.go.html to see an example of how to use RequestJfrRecordings API. // A default retry strategy applies to this operation RequestJfrRecordings() @@ -2388,7 +2388,7 @@ func (client JavaManagementServiceClient) requestJfrRecordings(ctx context.Conte // RequestPerformanceTuningAnalyses Request to perform performance tuning analyses. The result of performance tuning analysis will be uploaded to the // object storage bucket that you designated when you enabled the recording feature. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/RequestPerformanceTuningAnalyses.go.html to see an example of how to use RequestPerformanceTuningAnalyses API. // A default retry strategy applies to this operation RequestPerformanceTuningAnalyses() @@ -2446,7 +2446,7 @@ func (client JavaManagementServiceClient) requestPerformanceTuningAnalyses(ctx c // ScanJavaServerUsage Scan Java Server usage in a fleet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ScanJavaServerUsage.go.html to see an example of how to use ScanJavaServerUsage API. // A default retry strategy applies to this operation ScanJavaServerUsage() @@ -2509,7 +2509,7 @@ func (client JavaManagementServiceClient) scanJavaServerUsage(ctx context.Contex // ScanLibraryUsage Scan library usage in a fleet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/ScanLibraryUsage.go.html to see an example of how to use ScanLibraryUsage API. // A default retry strategy applies to this operation ScanLibraryUsage() @@ -2572,7 +2572,7 @@ func (client JavaManagementServiceClient) scanLibraryUsage(ctx context.Context, // SummarizeApplicationInstallationUsage Summarizes the application installation usage in a Fleet filtered by query parameters. In contrast to SummarizeApplicationUsage, which provides only information aggregated by application name, this operation provides installation details. This allows for better focusing of actions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeApplicationInstallationUsage.go.html to see an example of how to use SummarizeApplicationInstallationUsage API. // A default retry strategy applies to this operation SummarizeApplicationInstallationUsage() @@ -2630,7 +2630,7 @@ func (client JavaManagementServiceClient) summarizeApplicationInstallationUsage( // SummarizeApplicationUsage List application usage in a Fleet filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeApplicationUsage.go.html to see an example of how to use SummarizeApplicationUsage API. // A default retry strategy applies to this operation SummarizeApplicationUsage() @@ -2688,7 +2688,7 @@ func (client JavaManagementServiceClient) summarizeApplicationUsage(ctx context. // SummarizeDeployedApplicationInstallationUsage Summarize installation usage of an application deployed on Java servers in a fleet filtered by query parameters. In contrast to SummarizeDeployedApplicationUsage, which provides only information aggregated by the deployment information, this operation provides installation details and allows for better focusing of actions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeDeployedApplicationInstallationUsage.go.html to see an example of how to use SummarizeDeployedApplicationInstallationUsage API. // A default retry strategy applies to this operation SummarizeDeployedApplicationInstallationUsage() @@ -2746,7 +2746,7 @@ func (client JavaManagementServiceClient) summarizeDeployedApplicationInstallati // SummarizeDeployedApplicationUsage List of deployed applications in a Fleet filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeDeployedApplicationUsage.go.html to see an example of how to use SummarizeDeployedApplicationUsage API. // A default retry strategy applies to this operation SummarizeDeployedApplicationUsage() @@ -2804,7 +2804,7 @@ func (client JavaManagementServiceClient) summarizeDeployedApplicationUsage(ctx // SummarizeInstallationUsage List Java installation usage in a Fleet filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeInstallationUsage.go.html to see an example of how to use SummarizeInstallationUsage API. // A default retry strategy applies to this operation SummarizeInstallationUsage() @@ -2862,7 +2862,7 @@ func (client JavaManagementServiceClient) summarizeInstallationUsage(ctx context // SummarizeJavaServerInstanceUsage List Java Server instances in a fleet filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeJavaServerInstanceUsage.go.html to see an example of how to use SummarizeJavaServerInstanceUsage API. // A default retry strategy applies to this operation SummarizeJavaServerInstanceUsage() @@ -2920,7 +2920,7 @@ func (client JavaManagementServiceClient) summarizeJavaServerInstanceUsage(ctx c // SummarizeJavaServerUsage List of Java servers in a Fleet filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeJavaServerUsage.go.html to see an example of how to use SummarizeJavaServerUsage API. // A default retry strategy applies to this operation SummarizeJavaServerUsage() @@ -2978,7 +2978,7 @@ func (client JavaManagementServiceClient) summarizeJavaServerUsage(ctx context.C // SummarizeJreUsage List Java Runtime usage in a specified Fleet filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeJreUsage.go.html to see an example of how to use SummarizeJreUsage API. // A default retry strategy applies to this operation SummarizeJreUsage() @@ -3036,7 +3036,7 @@ func (client JavaManagementServiceClient) summarizeJreUsage(ctx context.Context, // SummarizeLibraryUsage List libraries in a fleet filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeLibraryUsage.go.html to see an example of how to use SummarizeLibraryUsage API. // A default retry strategy applies to this operation SummarizeLibraryUsage() @@ -3094,7 +3094,7 @@ func (client JavaManagementServiceClient) summarizeLibraryUsage(ctx context.Cont // SummarizeManagedInstanceUsage List managed instance usage in a Fleet filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeManagedInstanceUsage.go.html to see an example of how to use SummarizeManagedInstanceUsage API. // A default retry strategy applies to this operation SummarizeManagedInstanceUsage() @@ -3152,7 +3152,7 @@ func (client JavaManagementServiceClient) summarizeManagedInstanceUsage(ctx cont // SummarizeResourceInventory Retrieve the inventory of JMS resources in the specified compartment: a list of the number of _active_ fleets, managed instances, Java Runtimes, Java installations, and applications. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/SummarizeResourceInventory.go.html to see an example of how to use SummarizeResourceInventory API. // A default retry strategy applies to this operation SummarizeResourceInventory() @@ -3210,7 +3210,7 @@ func (client JavaManagementServiceClient) summarizeResourceInventory(ctx context // UpdateFleet Update the Fleet specified by an identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/UpdateFleet.go.html to see an example of how to use UpdateFleet API. // A default retry strategy applies to this operation UpdateFleet() @@ -3269,7 +3269,7 @@ func (client JavaManagementServiceClient) updateFleet(ctx context.Context, reque // UpdateFleetAdvancedFeatureConfiguration Update advanced feature configurations for the Fleet. // Ensure that the namespace and bucket storage are created prior to turning on the JfrRecording or CryptoEventAnalysis feature. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/UpdateFleetAdvancedFeatureConfiguration.go.html to see an example of how to use UpdateFleetAdvancedFeatureConfiguration API. // A default retry strategy applies to this operation UpdateFleetAdvancedFeatureConfiguration() @@ -3332,7 +3332,7 @@ func (client JavaManagementServiceClient) updateFleetAdvancedFeatureConfiguratio // UpdateFleetAgentConfiguration Update the Fleet Agent Configuration for the specified Fleet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/jms/UpdateFleetAgentConfiguration.go.html to see an example of how to use UpdateFleetAgentConfiguration API. // A default retry strategy applies to this operation UpdateFleetAgentConfiguration() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_ekm_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_ekm_client.go index 1c384d7b43c..7f9f4bf05a6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_ekm_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_ekm_client.go @@ -93,7 +93,7 @@ func (client *EkmClient) ConfigurationProvider() *common.ConfigurationProvider { // CreateEkmsPrivateEndpoint Create a new EKMS private endpoint used to connect to external key manager system // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CreateEkmsPrivateEndpoint.go.html to see an example of how to use CreateEkmsPrivateEndpoint API. func (client EkmClient) CreateEkmsPrivateEndpoint(ctx context.Context, request CreateEkmsPrivateEndpointRequest) (response CreateEkmsPrivateEndpointResponse, err error) { @@ -155,7 +155,7 @@ func (client EkmClient) createEkmsPrivateEndpoint(ctx context.Context, request c // DeleteEkmsPrivateEndpoint Deletes EKMS private endpoint by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/DeleteEkmsPrivateEndpoint.go.html to see an example of how to use DeleteEkmsPrivateEndpoint API. func (client EkmClient) DeleteEkmsPrivateEndpoint(ctx context.Context, request DeleteEkmsPrivateEndpointRequest) (response DeleteEkmsPrivateEndpointResponse, err error) { @@ -212,7 +212,7 @@ func (client EkmClient) deleteEkmsPrivateEndpoint(ctx context.Context, request c // GetEkmsPrivateEndpoint Gets a specific EKMS private by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GetEkmsPrivateEndpoint.go.html to see an example of how to use GetEkmsPrivateEndpoint API. func (client EkmClient) GetEkmsPrivateEndpoint(ctx context.Context, request GetEkmsPrivateEndpointRequest) (response GetEkmsPrivateEndpointResponse, err error) { @@ -269,7 +269,7 @@ func (client EkmClient) getEkmsPrivateEndpoint(ctx context.Context, request comm // ListEkmsPrivateEndpoints Returns a list of all the EKMS private endpoints in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ListEkmsPrivateEndpoints.go.html to see an example of how to use ListEkmsPrivateEndpoints API. func (client EkmClient) ListEkmsPrivateEndpoints(ctx context.Context, request ListEkmsPrivateEndpointsRequest) (response ListEkmsPrivateEndpointsResponse, err error) { @@ -326,7 +326,7 @@ func (client EkmClient) listEkmsPrivateEndpoints(ctx context.Context, request co // UpdateEkmsPrivateEndpoint Updates EKMS private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/UpdateEkmsPrivateEndpoint.go.html to see an example of how to use UpdateEkmsPrivateEndpoint API. func (client EkmClient) UpdateEkmsPrivateEndpoint(ctx context.Context, request UpdateEkmsPrivateEndpointRequest) (response UpdateEkmsPrivateEndpointResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmscrypto_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmscrypto_client.go index 7698cc5d138..00579024454 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmscrypto_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmscrypto_client.go @@ -81,7 +81,7 @@ func (client *KmsCryptoClient) ConfigurationProvider() *common.ConfigurationProv // Decrypt Decrypts data using the given DecryptDataDetails (https://docs.cloud.oracle.com/api/#/en/key/latest/datatypes/DecryptDataDetails) resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/Decrypt.go.html to see an example of how to use Decrypt API. func (client KmsCryptoClient) Decrypt(ctx context.Context, request DecryptRequest) (response DecryptResponse, err error) { @@ -139,7 +139,7 @@ func (client KmsCryptoClient) decrypt(ctx context.Context, request common.OCIReq // Encrypt Encrypts data using the given EncryptDataDetails (https://docs.cloud.oracle.com/api/#/en/key/latest/datatypes/EncryptDataDetails) resource. // Plaintext included in the example request is a base64-encoded value of a UTF-8 string. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/Encrypt.go.html to see an example of how to use Encrypt API. func (client KmsCryptoClient) Encrypt(ctx context.Context, request EncryptRequest) (response EncryptResponse, err error) { @@ -199,7 +199,7 @@ func (client KmsCryptoClient) encrypt(ctx context.Context, request common.OCIReq // stored on the server. For export, the key version is encrypted by an RSA public key that you provide. // This operation is not supported for keys having protection mode `EXTERNAL`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ExportKey.go.html to see an example of how to use ExportKey API. func (client KmsCryptoClient) ExportKey(ctx context.Context, request ExportKeyRequest) (response ExportKeyResponse, err error) { @@ -256,7 +256,7 @@ func (client KmsCryptoClient) exportKey(ctx context.Context, request common.OCIR // GenerateDataEncryptionKey Generates a key that you can use to encrypt or decrypt data. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GenerateDataEncryptionKey.go.html to see an example of how to use GenerateDataEncryptionKey API. func (client KmsCryptoClient) GenerateDataEncryptionKey(ctx context.Context, request GenerateDataEncryptionKeyRequest) (response GenerateDataEncryptionKeyResponse, err error) { @@ -316,7 +316,7 @@ func (client KmsCryptoClient) generateDataEncryptionKey(ctx context.Context, req // operation. Or, if you want to validate the signature outside of the service, you can do so by using the public key of the same asymmetric key. // This operation is not supported for keys having protection mode `EXTERNAL`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/Sign.go.html to see an example of how to use Sign API. func (client KmsCryptoClient) Sign(ctx context.Context, request SignRequest) (response SignResponse, err error) { @@ -376,7 +376,7 @@ func (client KmsCryptoClient) sign(ctx context.Context, request common.OCIReques // digital signature outside of the service, you can do so by using the public key of the asymmetric key. // This operation is not supported for keys having protection mode `EXTERNAL`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/Verify.go.html to see an example of how to use Verify API. func (client KmsCryptoClient) Verify(ctx context.Context, request VerifyRequest) (response VerifyResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsmanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsmanagement_client.go index 00f6637cb8a..43429627b5d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsmanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsmanagement_client.go @@ -82,7 +82,7 @@ func (client *KmsManagementClient) ConfigurationProvider() *common.Configuration // BackupKey Backs up an encrypted file that contains all key versions and metadata of the specified key so that you can restore // the key later. The file also contains the metadata of the vault that the key belonged to. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/BackupKey.go.html to see an example of how to use BackupKey API. func (client KmsManagementClient) BackupKey(ctx context.Context, request BackupKeyRequest) (response BackupKeyResponse, err error) { @@ -150,7 +150,7 @@ func (client KmsManagementClient) backupKey(ctx context.Context, request common. // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CancelKeyDeletion.go.html to see an example of how to use CancelKeyDeletion API. func (client KmsManagementClient) CancelKeyDeletion(ctx context.Context, request CancelKeyDeletionRequest) (response CancelKeyDeletionResponse, err error) { @@ -218,7 +218,7 @@ func (client KmsManagementClient) cancelKeyDeletion(ctx context.Context, request // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CancelKeyVersionDeletion.go.html to see an example of how to use CancelKeyVersionDeletion API. func (client KmsManagementClient) CancelKeyVersionDeletion(ctx context.Context, request CancelKeyVersionDeletionRequest) (response CancelKeyVersionDeletionResponse, err error) { @@ -286,7 +286,7 @@ func (client KmsManagementClient) cancelKeyVersionDeletion(ctx context.Context, // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ChangeKeyCompartment.go.html to see an example of how to use ChangeKeyCompartment API. func (client KmsManagementClient) ChangeKeyCompartment(ctx context.Context, request ChangeKeyCompartmentRequest) (response ChangeKeyCompartmentResponse, err error) { @@ -352,7 +352,7 @@ func (client KmsManagementClient) changeKeyCompartment(ctx context.Context, requ // to reject an otherwise valid request when the total rate of management write operations exceeds 10 // requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CreateKey.go.html to see an example of how to use CreateKey API. func (client KmsManagementClient) CreateKey(ctx context.Context, request CreateKeyRequest) (response CreateKeyResponse, err error) { @@ -419,7 +419,7 @@ func (client KmsManagementClient) createKey(ctx context.Context, request common. // otherwise valid request when the total rate of management write operations exceeds 10 requests per second // for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CreateKeyVersion.go.html to see an example of how to use CreateKeyVersion API. func (client KmsManagementClient) CreateKeyVersion(ctx context.Context, request CreateKeyVersionRequest) (response CreateKeyVersionResponse, err error) { @@ -486,7 +486,7 @@ func (client KmsManagementClient) createKeyVersion(ctx context.Context, request // otherwise valid request when the total rate of management write operations exceeds 10 requests per second // for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/DisableKey.go.html to see an example of how to use DisableKey API. func (client KmsManagementClient) DisableKey(ctx context.Context, request DisableKeyRequest) (response DisableKeyResponse, err error) { @@ -553,7 +553,7 @@ func (client KmsManagementClient) disableKey(ctx context.Context, request common // otherwise valid request when the total rate of management write operations exceeds 10 requests per second // for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/EnableKey.go.html to see an example of how to use EnableKey API. func (client KmsManagementClient) EnableKey(ctx context.Context, request EnableKeyRequest) (response EnableKeyResponse, err error) { @@ -619,7 +619,7 @@ func (client KmsManagementClient) enableKey(ctx context.Context, request common. // otherwise valid request when the total rate of management read operations exceeds 10 requests per second for // a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GetKey.go.html to see an example of how to use GetKey API. func (client KmsManagementClient) GetKey(ctx context.Context, request GetKeyRequest) (response GetKeyResponse, err error) { @@ -680,7 +680,7 @@ func (client KmsManagementClient) getKey(ctx context.Context, request common.OCI // otherwise valid request when the total rate of management read operations exceeds 10 requests per second // for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GetKeyVersion.go.html to see an example of how to use GetKeyVersion API. func (client KmsManagementClient) GetKeyVersion(ctx context.Context, request GetKeyVersionRequest) (response GetKeyVersionResponse, err error) { @@ -740,7 +740,7 @@ func (client KmsManagementClient) getKeyVersion(ctx context.Context, request com // details about whether the operation associated with the given replicationId has been // successfully applied across replicas. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GetReplicationStatus.go.html to see an example of how to use GetReplicationStatus API. func (client KmsManagementClient) GetReplicationStatus(ctx context.Context, request GetReplicationStatusRequest) (response GetReplicationStatusResponse, err error) { @@ -798,7 +798,7 @@ func (client KmsManagementClient) getReplicationStatus(ctx context.Context, requ // GetWrappingKey Gets details about the public RSA wrapping key associated with the vault in the endpoint. Each vault has an RSA key-pair that wraps and // unwraps AES key material for import into Key Management. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GetWrappingKey.go.html to see an example of how to use GetWrappingKey API. func (client KmsManagementClient) GetWrappingKey(ctx context.Context, request GetWrappingKeyRequest) (response GetWrappingKeyResponse, err error) { @@ -860,7 +860,7 @@ func (client KmsManagementClient) getWrappingKey(ctx context.Context, request co // Furthermore, the key length must match what you specify at the time of import. When importing an asymmetric key, // only private key must be wrapped in PKCS8 format while the corresponding public key is generated internally by KMS. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ImportKey.go.html to see an example of how to use ImportKey API. func (client KmsManagementClient) ImportKey(ctx context.Context, request ImportKeyRequest) (response ImportKeyResponse, err error) { @@ -927,7 +927,7 @@ func (client KmsManagementClient) importKey(ctx context.Context, request common. // at the time of import. When importing an asymmetric key, only the private key must be wrapped in PKCS8 format // while the corresponding public key is generated internally by KMS. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ImportKeyVersion.go.html to see an example of how to use ImportKeyVersion API. func (client KmsManagementClient) ImportKeyVersion(ctx context.Context, request ImportKeyVersionRequest) (response ImportKeyVersionResponse, err error) { @@ -994,7 +994,7 @@ func (client KmsManagementClient) importKeyVersion(ctx context.Context, request // otherwise valid request when the total rate of management read operations exceeds 10 requests per second // for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ListKeyVersions.go.html to see an example of how to use ListKeyVersions API. func (client KmsManagementClient) ListKeyVersions(ctx context.Context, request ListKeyVersionsRequest) (response ListKeyVersionsResponse, err error) { @@ -1055,7 +1055,7 @@ func (client KmsManagementClient) listKeyVersions(ctx context.Context, request c // otherwise valid request when the total rate of management read operations exceeds 10 requests per second // for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ListKeys.go.html to see an example of how to use ListKeys API. func (client KmsManagementClient) ListKeys(ctx context.Context, request ListKeysRequest) (response ListKeysResponse, err error) { @@ -1114,7 +1114,7 @@ func (client KmsManagementClient) listKeys(ctx context.Context, request common.O // If the vault doesn't exist, the operation returns a response with a 404 HTTP status error code. You // need to first restore the vault associated with the key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/RestoreKeyFromFile.go.html to see an example of how to use RestoreKeyFromFile API. func (client KmsManagementClient) RestoreKeyFromFile(ctx context.Context, request RestoreKeyFromFileRequest) (response RestoreKeyFromFileResponse, err error) { @@ -1178,7 +1178,7 @@ func (client KmsManagementClient) restoreKeyFromFile(ctx context.Context, reques // Object Storage location. If the vault doesn't exist, the operation returns a response with a // 404 HTTP status error code. You need to first restore the vault associated with the key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/RestoreKeyFromObjectStore.go.html to see an example of how to use RestoreKeyFromObjectStore API. func (client KmsManagementClient) RestoreKeyFromObjectStore(ctx context.Context, request RestoreKeyFromObjectStoreRequest) (response RestoreKeyFromObjectStoreResponse, err error) { @@ -1245,7 +1245,7 @@ func (client KmsManagementClient) restoreKeyFromObjectStore(ctx context.Context, // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ScheduleKeyDeletion.go.html to see an example of how to use ScheduleKeyDeletion API. func (client KmsManagementClient) ScheduleKeyDeletion(ctx context.Context, request ScheduleKeyDeletionRequest) (response ScheduleKeyDeletionResponse, err error) { @@ -1312,7 +1312,7 @@ func (client KmsManagementClient) scheduleKeyDeletion(ctx context.Context, reque // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ScheduleKeyVersionDeletion.go.html to see an example of how to use ScheduleKeyVersionDeletion API. func (client KmsManagementClient) ScheduleKeyVersionDeletion(ctx context.Context, request ScheduleKeyVersionDeletionRequest) (response ScheduleKeyVersionDeletionResponse, err error) { @@ -1380,7 +1380,7 @@ func (client KmsManagementClient) scheduleKeyVersionDeletion(ctx context.Context // otherwise valid request when the total rate of management write operations exceeds 10 requests per second // for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/UpdateKey.go.html to see an example of how to use UpdateKey API. func (client KmsManagementClient) UpdateKey(ctx context.Context, request UpdateKeyRequest) (response UpdateKeyResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsvault_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsvault_client.go index 701366ac3e6..20916e4c8b9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsvault_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/keymanagement/keymanagement_kmsvault_client.go @@ -95,7 +95,7 @@ func (client *KmsVaultClient) ConfigurationProvider() *common.ConfigurationProvi // You can backup a vault whether or not it contains keys. This operation only backs up the // metadata of the vault, and does not include key metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/BackupVault.go.html to see an example of how to use BackupVault API. func (client KmsVaultClient) BackupVault(ctx context.Context, request BackupVaultRequest) (response BackupVaultResponse, err error) { @@ -164,7 +164,7 @@ func (client KmsVaultClient) backupVault(ctx context.Context, request common.OCI // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CancelVaultDeletion.go.html to see an example of how to use CancelVaultDeletion API. func (client KmsVaultClient) CancelVaultDeletion(ctx context.Context, request CancelVaultDeletionRequest) (response CancelVaultDeletionResponse, err error) { @@ -232,7 +232,7 @@ func (client KmsVaultClient) cancelVaultDeletion(ctx context.Context, request co // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ChangeVaultCompartment.go.html to see an example of how to use ChangeVaultCompartment API. func (client KmsVaultClient) ChangeVaultCompartment(ctx context.Context, request ChangeVaultCompartmentRequest) (response ChangeVaultCompartmentResponse, err error) { @@ -301,7 +301,7 @@ func (client KmsVaultClient) changeVaultCompartment(ctx context.Context, request // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CreateVault.go.html to see an example of how to use CreateVault API. func (client KmsVaultClient) CreateVault(ctx context.Context, request CreateVaultRequest) (response CreateVaultResponse, err error) { @@ -370,7 +370,7 @@ func (client KmsVaultClient) createVault(ctx context.Context, request common.OCI // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/CreateVaultReplica.go.html to see an example of how to use CreateVaultReplica API. func (client KmsVaultClient) CreateVaultReplica(ctx context.Context, request CreateVaultReplicaRequest) (response CreateVaultReplicaResponse, err error) { @@ -436,7 +436,7 @@ func (client KmsVaultClient) createVaultReplica(ctx context.Context, request com // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/DeleteVaultReplica.go.html to see an example of how to use DeleteVaultReplica API. func (client KmsVaultClient) DeleteVaultReplica(ctx context.Context, request DeleteVaultReplicaRequest) (response DeleteVaultReplicaResponse, err error) { @@ -502,7 +502,7 @@ func (client KmsVaultClient) deleteVaultReplica(ctx context.Context, request com // throttle this call to reject an otherwise valid request when the total rate of provisioning // read operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GetVault.go.html to see an example of how to use GetVault API. func (client KmsVaultClient) GetVault(ctx context.Context, request GetVaultRequest) (response GetVaultResponse, err error) { @@ -559,7 +559,7 @@ func (client KmsVaultClient) getVault(ctx context.Context, request common.OCIReq // GetVaultUsage Gets the count of keys and key versions in the specified vault to calculate usage against service limits. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/GetVaultUsage.go.html to see an example of how to use GetVaultUsage API. func (client KmsVaultClient) GetVaultUsage(ctx context.Context, request GetVaultUsageRequest) (response GetVaultUsageResponse, err error) { @@ -620,7 +620,7 @@ func (client KmsVaultClient) getVaultUsage(ctx context.Context, request common.O // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ListVaultReplicas.go.html to see an example of how to use ListVaultReplicas API. func (client KmsVaultClient) ListVaultReplicas(ctx context.Context, request ListVaultReplicasRequest) (response ListVaultReplicasResponse, err error) { @@ -686,7 +686,7 @@ func (client KmsVaultClient) listVaultReplicas(ctx context.Context, request comm // throttle this call to reject an otherwise valid request when the total rate of provisioning // read operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ListVaults.go.html to see an example of how to use ListVaults API. func (client KmsVaultClient) ListVaults(ctx context.Context, request ListVaultsRequest) (response ListVaultsResponse, err error) { @@ -745,7 +745,7 @@ func (client KmsVaultClient) listVaults(ctx context.Context, request common.OCIR // with the same OCID already exists, this operation returns a response with a // 409 HTTP status error code. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/RestoreVaultFromFile.go.html to see an example of how to use RestoreVaultFromFile API. func (client KmsVaultClient) RestoreVaultFromFile(ctx context.Context, request RestoreVaultFromFileRequest) (response RestoreVaultFromFileResponse, err error) { @@ -809,7 +809,7 @@ func (client KmsVaultClient) restoreVaultFromFile(ctx context.Context, request c // Storage. If a vault with the same OCID already exists, this operation returns // a response with a 409 HTTP status error code. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/RestoreVaultFromObjectStore.go.html to see an example of how to use RestoreVaultFromObjectStore API. func (client KmsVaultClient) RestoreVaultFromObjectStore(ctx context.Context, request RestoreVaultFromObjectStoreRequest) (response RestoreVaultFromObjectStoreResponse, err error) { @@ -879,7 +879,7 @@ func (client KmsVaultClient) restoreVaultFromObjectStore(ctx context.Context, re // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/ScheduleVaultDeletion.go.html to see an example of how to use ScheduleVaultDeletion API. func (client KmsVaultClient) ScheduleVaultDeletion(ctx context.Context, request ScheduleVaultDeletionRequest) (response ScheduleVaultDeletionResponse, err error) { @@ -947,7 +947,7 @@ func (client KmsVaultClient) scheduleVaultDeletion(ctx context.Context, request // throttle this call to reject an otherwise valid request when the total rate of provisioning // write operations exceeds 10 requests per second for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/keymanagement/UpdateVault.go.html to see an example of how to use UpdateVault API. func (client KmsVaultClient) UpdateVault(ctx context.Context, request UpdateVaultRequest) (response UpdateVaultResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/licensemanager/licensemanager_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/licensemanager/licensemanager_client.go index 9e9009a2856..eedc595b13b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/licensemanager/licensemanager_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/licensemanager/licensemanager_client.go @@ -93,7 +93,7 @@ func (client *LicenseManagerClient) ConfigurationProvider() *common.Configuratio // BulkUploadLicenseRecords Bulk upload the product licenses and license records for a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/BulkUploadLicenseRecords.go.html to see an example of how to use BulkUploadLicenseRecords API. // A default retry strategy applies to this operation BulkUploadLicenseRecords() @@ -151,7 +151,7 @@ func (client LicenseManagerClient) bulkUploadLicenseRecords(ctx context.Context, // CreateLicenseRecord Creates a new license record for the given product license ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/CreateLicenseRecord.go.html to see an example of how to use CreateLicenseRecord API. // A default retry strategy applies to this operation CreateLicenseRecord() @@ -214,7 +214,7 @@ func (client LicenseManagerClient) createLicenseRecord(ctx context.Context, requ // CreateProductLicense Creates a new product license. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/CreateProductLicense.go.html to see an example of how to use CreateProductLicense API. // A default retry strategy applies to this operation CreateProductLicense() @@ -277,7 +277,7 @@ func (client LicenseManagerClient) createProductLicense(ctx context.Context, req // DeleteLicenseRecord Removes a license record. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/DeleteLicenseRecord.go.html to see an example of how to use DeleteLicenseRecord API. // A default retry strategy applies to this operation DeleteLicenseRecord() @@ -335,7 +335,7 @@ func (client LicenseManagerClient) deleteLicenseRecord(ctx context.Context, requ // DeleteProductLicense Removes a product license. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/DeleteProductLicense.go.html to see an example of how to use DeleteProductLicense API. // A default retry strategy applies to this operation DeleteProductLicense() @@ -393,7 +393,7 @@ func (client LicenseManagerClient) deleteProductLicense(ctx context.Context, req // GetBulkUploadTemplate Provides the bulk upload file template. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/GetBulkUploadTemplate.go.html to see an example of how to use GetBulkUploadTemplate API. // A default retry strategy applies to this operation GetBulkUploadTemplate() @@ -451,7 +451,7 @@ func (client LicenseManagerClient) getBulkUploadTemplate(ctx context.Context, re // GetConfiguration Retrieves configuration for a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/GetConfiguration.go.html to see an example of how to use GetConfiguration API. // A default retry strategy applies to this operation GetConfiguration() @@ -509,7 +509,7 @@ func (client LicenseManagerClient) getConfiguration(ctx context.Context, request // GetLicenseMetric Retrieves the license metrics for a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/GetLicenseMetric.go.html to see an example of how to use GetLicenseMetric API. // A default retry strategy applies to this operation GetLicenseMetric() @@ -567,7 +567,7 @@ func (client LicenseManagerClient) getLicenseMetric(ctx context.Context, request // GetLicenseRecord Retrieves license record details by the license record ID in a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/GetLicenseRecord.go.html to see an example of how to use GetLicenseRecord API. // A default retry strategy applies to this operation GetLicenseRecord() @@ -625,7 +625,7 @@ func (client LicenseManagerClient) getLicenseRecord(ctx context.Context, request // GetProductLicense Retrieves product license details by product license ID in a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/GetProductLicense.go.html to see an example of how to use GetProductLicense API. // A default retry strategy applies to this operation GetProductLicense() @@ -683,7 +683,7 @@ func (client LicenseManagerClient) getProductLicense(ctx context.Context, reques // ListLicenseRecords Retrieves all license records for a given product license ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/ListLicenseRecords.go.html to see an example of how to use ListLicenseRecords API. // A default retry strategy applies to this operation ListLicenseRecords() @@ -741,7 +741,7 @@ func (client LicenseManagerClient) listLicenseRecords(ctx context.Context, reque // ListProductLicenseConsumers Retrieves the product license consumers for a particular product license ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/ListProductLicenseConsumers.go.html to see an example of how to use ListProductLicenseConsumers API. // A default retry strategy applies to this operation ListProductLicenseConsumers() @@ -799,7 +799,7 @@ func (client LicenseManagerClient) listProductLicenseConsumers(ctx context.Conte // ListProductLicenses Retrieves all the product licenses from a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/ListProductLicenses.go.html to see an example of how to use ListProductLicenses API. // A default retry strategy applies to this operation ListProductLicenses() @@ -857,7 +857,7 @@ func (client LicenseManagerClient) listProductLicenses(ctx context.Context, requ // ListTopUtilizedProductLicenses Retrieves the top utilized product licenses for a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/ListTopUtilizedProductLicenses.go.html to see an example of how to use ListTopUtilizedProductLicenses API. // A default retry strategy applies to this operation ListTopUtilizedProductLicenses() @@ -915,7 +915,7 @@ func (client LicenseManagerClient) listTopUtilizedProductLicenses(ctx context.Co // ListTopUtilizedResources Retrieves the top utilized resources for a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/ListTopUtilizedResources.go.html to see an example of how to use ListTopUtilizedResources API. // A default retry strategy applies to this operation ListTopUtilizedResources() @@ -973,7 +973,7 @@ func (client LicenseManagerClient) listTopUtilizedResources(ctx context.Context, // UpdateConfiguration Updates the configuration for the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/UpdateConfiguration.go.html to see an example of how to use UpdateConfiguration API. // A default retry strategy applies to this operation UpdateConfiguration() @@ -1031,7 +1031,7 @@ func (client LicenseManagerClient) updateConfiguration(ctx context.Context, requ // UpdateLicenseRecord Updates license record entity details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/UpdateLicenseRecord.go.html to see an example of how to use UpdateLicenseRecord API. // A default retry strategy applies to this operation UpdateLicenseRecord() @@ -1089,7 +1089,7 @@ func (client LicenseManagerClient) updateLicenseRecord(ctx context.Context, requ // UpdateProductLicense Updates the list of images for a product license. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/licensemanager/UpdateProductLicense.go.html to see an example of how to use UpdateProductLicense API. // A default retry strategy applies to this operation UpdateProductLicense() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/limits/add_lock_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/limits/add_lock_details.go index 47c597e1a70..fa5b763b0d2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/limits/add_lock_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/limits/add_lock_details.go @@ -16,7 +16,8 @@ import ( ) // AddLockDetails Request payload to add lock to the resource. The FULL lock type allows no modifications (delete, create, update). -// The DELETE lock type allows all modifications, but delete is not allowed. +// +// The DELETE lock type allows all modifications, but delete is not allowed. type AddLockDetails struct { // Lock type. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/limits/limits_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/limits/limits_client.go index 24b482f4e7b..b12f97cd04f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/limits/limits_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/limits/limits_client.go @@ -92,11 +92,11 @@ func (client *LimitsClient) ConfigurationProvider() *common.ConfigurationProvide } // GetResourceAvailability For a given compartmentId, resource limit name, and scope, returns the following: -// * The number of available resources associated with the given limit. -// * The usage in the selected compartment for the given limit. -// Note that not all resource limits support this API. If the value is not available, the API returns a 404 response. +// - The number of available resources associated with the given limit. +// - The usage in the selected compartment for the given limit. +// Note that not all resource limits support this API. If the value is not available, the API returns a 404 response. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/GetResourceAvailability.go.html to see an example of how to use GetResourceAvailability API. // A default retry strategy applies to this operation GetResourceAvailability() @@ -156,7 +156,7 @@ func (client LimitsClient) getResourceAvailability(ctx context.Context, request // If the 'areQuotasSupported' property is true, you can create quota policies on top of this limit at the // compartment level. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/ListLimitDefinitions.go.html to see an example of how to use ListLimitDefinitions API. // A default retry strategy applies to this operation ListLimitDefinitions() @@ -214,7 +214,7 @@ func (client LimitsClient) listLimitDefinitions(ctx context.Context, request com // ListLimitValues Includes a full list of resource limits belonging to a given service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/ListLimitValues.go.html to see an example of how to use ListLimitValues API. // A default retry strategy applies to this operation ListLimitValues() @@ -273,7 +273,7 @@ func (client LimitsClient) listLimitValues(ctx context.Context, request common.O // ListServices Returns the list of supported services. // This includes the programmatic service name, along with the friendly service name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/ListServices.go.html to see an example of how to use ListServices API. // A default retry strategy applies to this operation ListServices() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/limits/limits_quotas_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/limits/limits_quotas_client.go index 28375c85076..2d74859426e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/limits/limits_quotas_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/limits/limits_quotas_client.go @@ -93,7 +93,7 @@ func (client *QuotasClient) ConfigurationProvider() *common.ConfigurationProvide // AddQuotaLock Adds a lock to a resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/AddQuotaLock.go.html to see an example of how to use AddQuotaLock API. func (client QuotasClient) AddQuotaLock(ctx context.Context, request AddQuotaLockRequest) (response AddQuotaLockResponse, err error) { @@ -150,7 +150,7 @@ func (client QuotasClient) addQuotaLock(ctx context.Context, request common.OCIR // CreateQuota Creates a new quota with the details supplied. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/CreateQuota.go.html to see an example of how to use CreateQuota API. // A default retry strategy applies to this operation CreateQuota() @@ -213,7 +213,7 @@ func (client QuotasClient) createQuota(ctx context.Context, request common.OCIRe // DeleteQuota Deletes the quota corresponding to the given OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/DeleteQuota.go.html to see an example of how to use DeleteQuota API. // A default retry strategy applies to this operation DeleteQuota() @@ -271,7 +271,7 @@ func (client QuotasClient) deleteQuota(ctx context.Context, request common.OCIRe // GetQuota Gets the quota for the OCID specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/GetQuota.go.html to see an example of how to use GetQuota API. // A default retry strategy applies to this operation GetQuota() @@ -329,7 +329,7 @@ func (client QuotasClient) getQuota(ctx context.Context, request common.OCIReque // ListQuotas Lists all quotas on resources from the given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/ListQuotas.go.html to see an example of how to use ListQuotas API. // A default retry strategy applies to this operation ListQuotas() @@ -387,7 +387,7 @@ func (client QuotasClient) listQuotas(ctx context.Context, request common.OCIReq // RemoveQuotaLock Remove a lock from a resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/RemoveQuotaLock.go.html to see an example of how to use RemoveQuotaLock API. func (client QuotasClient) RemoveQuotaLock(ctx context.Context, request RemoveQuotaLockRequest) (response RemoveQuotaLockResponse, err error) { @@ -444,7 +444,7 @@ func (client QuotasClient) removeQuotaLock(ctx context.Context, request common.O // UpdateQuota Updates the quota corresponding to given OCID with the details supplied. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/limits/UpdateQuota.go.html to see an example of how to use UpdateQuota API. // A default retry strategy applies to this operation UpdateQuota() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/limits/quota.go b/vendor/github.com/oracle/oci-go-sdk/v65/limits/quota.go index acd2fa6c562..50912a9304e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/limits/quota.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/limits/quota.go @@ -18,9 +18,9 @@ import ( // Quota Quotas are applied on top of the service limits and inherited through the nested compartment hierarchy. // Quotas allow compartment admins to limit resource consumption and set boundaries around acceptable resource use. // The term "quota" can be interpreted as the following: -// * An individual statement written in the declarative language. -// * A collection of statements in a single, named "quota" object (which has an Oracle Cloud ID (OCID) assigned to it). -// * The overall body of quotas your organization uses to control access to resources. +// - An individual statement written in the declarative language. +// - A collection of statements in a single, named "quota" object (which has an Oracle Cloud ID (OCID) assigned to it). +// - The overall body of quotas your organization uses to control access to resources. type Quota struct { // The OCID of the quota. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/add_http_request_header_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/add_http_request_header_rule.go index 343654db2d1..446b878496d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/add_http_request_header_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/add_http_request_header_rule.go @@ -20,11 +20,11 @@ import ( // AddHttpRequestHeaderRule An object that represents the action of adding a header to a request. // This rule applies only to HTTP listeners. // **NOTES:** -// * If a matching header already exists in the request, the system removes all of its occurrences, and then adds the -// new header. -// * The system does not distinquish between underscore and dash characters in headers. That is, it treats -// `example_header_name` and `example-header-name` as identical. Oracle recommends that you do not rely on underscore -// or dash characters to uniquely distinguish header names. +// - If a matching header already exists in the request, the system removes all of its occurrences, and then adds the +// new header. +// - The system does not distinquish between underscore and dash characters in headers. That is, it treats +// `example_header_name` and `example-header-name` as identical. Oracle recommends that you do not rely on underscore +// or dash characters to uniquely distinguish header names. type AddHttpRequestHeaderRule struct { // A header name that conforms to RFC 7230. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/add_http_response_header_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/add_http_response_header_rule.go index 9a952b16ff7..b6e8f9b64ad 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/add_http_response_header_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/add_http_response_header_rule.go @@ -20,11 +20,11 @@ import ( // AddHttpResponseHeaderRule An object that represents the action of adding a header to a response. // This rule applies only to HTTP listeners. // **NOTES:** -// * If a matching header already exists in the response, the system removes all of its occurrences, and then adds the -// new header. -// * The system does not distinquish between underscore and dash characters in headers. That is, it treats -// `example_header_name` and `example-header-name` as identical. Oracle recommends that you do not rely on underscore -// or dash characters to uniquely distinguish header names. +// - If a matching header already exists in the response, the system removes all of its occurrences, and then adds the +// new header. +// - The system does not distinquish between underscore and dash characters in headers. That is, it treats +// `example_header_name` and `example-header-name` as identical. Oracle recommends that you do not rely on underscore +// or dash characters to uniquely distinguish header names. type AddHttpResponseHeaderRule struct { // A header name that conforms to RFC 7230. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/allow_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/allow_rule.go index bb80f435c9d..a70560e5f50 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/allow_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/allow_rule.go @@ -24,9 +24,9 @@ import ( // * If you add access control rules, the load balancer denies any traffic that does not match the rules. // * Maximum of two match conditions can be specified in a rule. // * You can specify this rule only with the following `RuleCondition` combinations: -// * `SOURCE_IP_ADDRESS` -// * `SOURCE_VCN_ID` -// * `SOURCE_VCN_ID", "SOURCE_VCN_IP_ADDRESS` +// - `SOURCE_IP_ADDRESS` +// - `SOURCE_VCN_ID` +// - `SOURCE_VCN_ID", "SOURCE_VCN_IP_ADDRESS` type AllowRule struct { Conditions []RuleCondition `mandatory:"true" json:"conditions"` diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/create_ssl_cipher_suite_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/create_ssl_cipher_suite_details.go index 03ea4503ed7..a6003eefd5c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/create_ssl_cipher_suite_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/create_ssl_cipher_suite_details.go @@ -27,151 +27,151 @@ import ( // cipher suites (https://docs.cloud.oracle.com/api/#/en/loadbalancer/20170115/SSLCipherSuite/CreateSSLCipherSuite) if the predefined cipher // suites do not meet your requirements. // -// * __oci-default-ssl-cipher-suite-v1__ -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA256" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA384" -// * __oci-modern-ssl-cipher-suite-v1__ -// "AES128-GCM-SHA256" -// "AES128-SHA256" -// "AES256-GCM-SHA384" -// "AES256-SHA256" -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA256" -// "ECDHE-ECDSA-AES128-GCM-SHA256" -// "ECDHE-ECDSA-AES128-SHA256" -// "ECDHE-ECDSA-AES256-GCM-SHA384" -// "ECDHE-ECDSA-AES256-SHA384" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA384" -// * __oci-compatible-ssl-cipher-suite-v1__ -// "AES128-GCM-SHA256" -// "AES128-SHA" -// "AES128-SHA256" -// "AES256-GCM-SHA384" -// "AES256-SHA" -// "AES256-SHA256" -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA256" -// "ECDHE-ECDSA-AES128-GCM-SHA256" -// "ECDHE-ECDSA-AES128-SHA" -// "ECDHE-ECDSA-AES128-SHA256" -// "ECDHE-ECDSA-AES256-GCM-SHA384" -// "ECDHE-ECDSA-AES256-SHA" -// "ECDHE-ECDSA-AES256-SHA384" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA" -// "ECDHE-RSA-AES256-SHA384" -// * __oci-wider-compatible-ssl-cipher-suite-v1__ -// "AES128-GCM-SHA256" -// "AES128-SHA" -// "AES128-SHA256" -// "AES256-GCM-SHA384" -// "AES256-SHA" -// "AES256-SHA256" -// "CAMELLIA128-SHA" -// "CAMELLIA256-SHA" -// "DES-CBC3-SHA" -// "DH-DSS-AES128-GCM-SHA256" -// "DH-DSS-AES128-SHA" -// "DH-DSS-AES128-SHA256" -// "DH-DSS-AES256-GCM-SHA384" -// "DH-DSS-AES256-SHA" -// "DH-DSS-AES256-SHA256" -// "DH-DSS-CAMELLIA128-SHA" -// "DH-DSS-CAMELLIA256-SHA" -// "DH-DSS-DES-CBC3-SHAv" -// "DH-DSS-SEED-SHA" -// "DH-RSA-AES128-GCM-SHA256" -// "DH-RSA-AES128-SHA" -// "DH-RSA-AES128-SHA256" -// "DH-RSA-AES256-GCM-SHA384" -// "DH-RSA-AES256-SHA" -// "DH-RSA-AES256-SHA256" -// "DH-RSA-CAMELLIA128-SHA" -// "DH-RSA-CAMELLIA256-SHA" -// "DH-RSA-DES-CBC3-SHA" -// "DH-RSA-SEED-SHA" -// "DHE-DSS-AES128-GCM-SHA256" -// "DHE-DSS-AES128-SHA" -// "DHE-DSS-AES128-SHA256" -// "DHE-DSS-AES256-GCM-SHA384" -// "DHE-DSS-AES256-SHA" -// "DHE-DSS-AES256-SHA256" -// "DHE-DSS-CAMELLIA128-SHA" -// "DHE-DSS-CAMELLIA256-SHA" -// "DHE-DSS-DES-CBC3-SHA" -// "DHE-DSS-SEED-SHA" -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA" -// "DHE-RSA-AES256-SHA256" -// "DHE-RSA-CAMELLIA128-SHA" -// "DHE-RSA-CAMELLIA256-SHA" -// "DHE-RSA-DES-CBC3-SHA" -// "DHE-RSA-SEED-SHA" -// "ECDH-ECDSA-AES128-GCM-SHA256" -// "ECDH-ECDSA-AES128-SHA" -// "ECDH-ECDSA-AES128-SHA256" -// "ECDH-ECDSA-AES256-GCM-SHA384" -// "ECDH-ECDSA-AES256-SHA" -// "ECDH-ECDSA-AES256-SHA384" -// "ECDH-ECDSA-DES-CBC3-SHA" -// "ECDH-ECDSA-RC4-SHA" -// "ECDH-RSA-AES128-GCM-SHA256" -// "ECDH-RSA-AES128-SHA" -// "ECDH-RSA-AES128-SHA256" -// "ECDH-RSA-AES256-GCM-SHA384" -// "ECDH-RSA-AES256-SHA" -// "ECDH-RSA-AES256-SHA384" -// "ECDH-RSA-DES-CBC3-SHA" -// "ECDH-RSA-RC4-SHA" -// "ECDHE-ECDSA-AES128-GCM-SHA256" -// "ECDHE-ECDSA-AES128-SHA" -// "ECDHE-ECDSA-AES128-SHA256" -// "ECDHE-ECDSA-AES256-GCM-SHA384" -// "ECDHE-ECDSA-AES256-SHA" -// "ECDHE-ECDSA-AES256-SHA384" -// "ECDHE-ECDSA-DES-CBC3-SHA" -// "ECDHE-ECDSA-RC4-SHA" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA" -// "ECDHE-RSA-AES256-SHA384" -// "ECDHE-RSA-DES-CBC3-SHA" -// "ECDHE-RSA-RC4-SHA" -// "IDEA-CBC-SHA" -// "KRB5-DES-CBC3-MD5" -// "KRB5-DES-CBC3-SHA" -// "KRB5-IDEA-CBC-MD5" -// "KRB5-IDEA-CBC-SHA" -// "KRB5-RC4-MD5" -// "KRB5-RC4-SHA" -// "PSK-3DES-EDE-CBC-SHA" -// "PSK-AES128-CBC-SHA" -// "PSK-AES256-CBC-SHA" -// "PSK-RC4-SHA" -// "RC4-MD5" -// "RC4-SHA" -// "SEED-SHA" +// - __oci-default-ssl-cipher-suite-v1__ +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA256" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA384" +// - __oci-modern-ssl-cipher-suite-v1__ +// "AES128-GCM-SHA256" +// "AES128-SHA256" +// "AES256-GCM-SHA384" +// "AES256-SHA256" +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA256" +// "ECDHE-ECDSA-AES128-GCM-SHA256" +// "ECDHE-ECDSA-AES128-SHA256" +// "ECDHE-ECDSA-AES256-GCM-SHA384" +// "ECDHE-ECDSA-AES256-SHA384" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA384" +// - __oci-compatible-ssl-cipher-suite-v1__ +// "AES128-GCM-SHA256" +// "AES128-SHA" +// "AES128-SHA256" +// "AES256-GCM-SHA384" +// "AES256-SHA" +// "AES256-SHA256" +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA256" +// "ECDHE-ECDSA-AES128-GCM-SHA256" +// "ECDHE-ECDSA-AES128-SHA" +// "ECDHE-ECDSA-AES128-SHA256" +// "ECDHE-ECDSA-AES256-GCM-SHA384" +// "ECDHE-ECDSA-AES256-SHA" +// "ECDHE-ECDSA-AES256-SHA384" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA" +// "ECDHE-RSA-AES256-SHA384" +// - __oci-wider-compatible-ssl-cipher-suite-v1__ +// "AES128-GCM-SHA256" +// "AES128-SHA" +// "AES128-SHA256" +// "AES256-GCM-SHA384" +// "AES256-SHA" +// "AES256-SHA256" +// "CAMELLIA128-SHA" +// "CAMELLIA256-SHA" +// "DES-CBC3-SHA" +// "DH-DSS-AES128-GCM-SHA256" +// "DH-DSS-AES128-SHA" +// "DH-DSS-AES128-SHA256" +// "DH-DSS-AES256-GCM-SHA384" +// "DH-DSS-AES256-SHA" +// "DH-DSS-AES256-SHA256" +// "DH-DSS-CAMELLIA128-SHA" +// "DH-DSS-CAMELLIA256-SHA" +// "DH-DSS-DES-CBC3-SHAv" +// "DH-DSS-SEED-SHA" +// "DH-RSA-AES128-GCM-SHA256" +// "DH-RSA-AES128-SHA" +// "DH-RSA-AES128-SHA256" +// "DH-RSA-AES256-GCM-SHA384" +// "DH-RSA-AES256-SHA" +// "DH-RSA-AES256-SHA256" +// "DH-RSA-CAMELLIA128-SHA" +// "DH-RSA-CAMELLIA256-SHA" +// "DH-RSA-DES-CBC3-SHA" +// "DH-RSA-SEED-SHA" +// "DHE-DSS-AES128-GCM-SHA256" +// "DHE-DSS-AES128-SHA" +// "DHE-DSS-AES128-SHA256" +// "DHE-DSS-AES256-GCM-SHA384" +// "DHE-DSS-AES256-SHA" +// "DHE-DSS-AES256-SHA256" +// "DHE-DSS-CAMELLIA128-SHA" +// "DHE-DSS-CAMELLIA256-SHA" +// "DHE-DSS-DES-CBC3-SHA" +// "DHE-DSS-SEED-SHA" +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA" +// "DHE-RSA-AES256-SHA256" +// "DHE-RSA-CAMELLIA128-SHA" +// "DHE-RSA-CAMELLIA256-SHA" +// "DHE-RSA-DES-CBC3-SHA" +// "DHE-RSA-SEED-SHA" +// "ECDH-ECDSA-AES128-GCM-SHA256" +// "ECDH-ECDSA-AES128-SHA" +// "ECDH-ECDSA-AES128-SHA256" +// "ECDH-ECDSA-AES256-GCM-SHA384" +// "ECDH-ECDSA-AES256-SHA" +// "ECDH-ECDSA-AES256-SHA384" +// "ECDH-ECDSA-DES-CBC3-SHA" +// "ECDH-ECDSA-RC4-SHA" +// "ECDH-RSA-AES128-GCM-SHA256" +// "ECDH-RSA-AES128-SHA" +// "ECDH-RSA-AES128-SHA256" +// "ECDH-RSA-AES256-GCM-SHA384" +// "ECDH-RSA-AES256-SHA" +// "ECDH-RSA-AES256-SHA384" +// "ECDH-RSA-DES-CBC3-SHA" +// "ECDH-RSA-RC4-SHA" +// "ECDHE-ECDSA-AES128-GCM-SHA256" +// "ECDHE-ECDSA-AES128-SHA" +// "ECDHE-ECDSA-AES128-SHA256" +// "ECDHE-ECDSA-AES256-GCM-SHA384" +// "ECDHE-ECDSA-AES256-SHA" +// "ECDHE-ECDSA-AES256-SHA384" +// "ECDHE-ECDSA-DES-CBC3-SHA" +// "ECDHE-ECDSA-RC4-SHA" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA" +// "ECDHE-RSA-AES256-SHA384" +// "ECDHE-RSA-DES-CBC3-SHA" +// "ECDHE-RSA-RC4-SHA" +// "IDEA-CBC-SHA" +// "KRB5-DES-CBC3-MD5" +// "KRB5-DES-CBC3-SHA" +// "KRB5-IDEA-CBC-MD5" +// "KRB5-IDEA-CBC-SHA" +// "KRB5-RC4-MD5" +// "KRB5-RC4-SHA" +// "PSK-3DES-EDE-CBC-SHA" +// "PSK-AES128-CBC-SHA" +// "PSK-AES256-CBC-SHA" +// "PSK-RC4-SHA" +// "RC4-MD5" +// "RC4-SHA" +// "SEED-SHA" type CreateSslCipherSuiteDetails struct { // A friendly name for the SSL cipher suite. It must be unique and it cannot be changed. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/extend_http_request_header_value_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/extend_http_request_header_value_rule.go index e6f49c9a920..c6cafdbfe11 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/extend_http_request_header_value_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/extend_http_request_header_value_rule.go @@ -20,12 +20,12 @@ import ( // ExtendHttpRequestHeaderValueRule An object that represents the action of modifying a request header value. This rule applies only to HTTP listeners. // This rule adds a prefix, a suffix, or both to the header value. // **NOTES:** -// * This rule requires a value for a prefix, suffix, or both. -// * The system does not support this rule for headers with multiple values. -// * The system does not distinquish between underscore and dash characters in headers. That is, it treats -// `example_header_name` and `example-header-name` as identical. If two such headers appear in a request, the system -// applies the action to the first header it finds. The affected header cannot be determined in advance. Oracle -// recommends that you do not rely on underscore or dash characters to uniquely distinguish header names. +// - This rule requires a value for a prefix, suffix, or both. +// - The system does not support this rule for headers with multiple values. +// - The system does not distinquish between underscore and dash characters in headers. That is, it treats +// `example_header_name` and `example-header-name` as identical. If two such headers appear in a request, the system +// applies the action to the first header it finds. The affected header cannot be determined in advance. Oracle +// recommends that you do not rely on underscore or dash characters to uniquely distinguish header names. type ExtendHttpRequestHeaderValueRule struct { // A header name that conforms to RFC 7230. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/extend_http_response_header_value_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/extend_http_response_header_value_rule.go index 8c8d81fb588..b075bcb0d08 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/extend_http_response_header_value_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/extend_http_response_header_value_rule.go @@ -20,12 +20,12 @@ import ( // ExtendHttpResponseHeaderValueRule An object that represents the action of modifying a response header value. This rule applies only to HTTP listeners. // This rule adds a prefix, a suffix, or both to the header value. // **NOTES:** -// * This rule requires a value for a prefix, suffix, or both. -// * The system does not support this rule for headers with multiple values. -// * The system does not distinquish between underscore and dash characters in headers. That is, it treats -// `example_header_name` and `example-header-name` as identical. If two such headers appear in a request, the system -// applies the action to the first header it finds. The affected header cannot be determined in advance. Oracle -// recommends that you do not rely on underscore or dash characters to uniquely distinguish header names. +// - This rule requires a value for a prefix, suffix, or both. +// - The system does not support this rule for headers with multiple values. +// - The system does not distinquish between underscore and dash characters in headers. That is, it treats +// `example_header_name` and `example-header-name` as identical. If two such headers appear in a request, the system +// applies the action to the first header it finds. The affected header cannot be determined in advance. Oracle +// recommends that you do not rely on underscore or dash characters to uniquely distinguish header names. type ExtendHttpResponseHeaderValueRule struct { // A header name that conforms to RFC 7230. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/loadbalancer_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/loadbalancer_client.go index a139e9fa782..964035f22b9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/loadbalancer_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/loadbalancer_client.go @@ -95,7 +95,7 @@ func (client *LoadBalancerClient) ConfigurationProvider() *common.ConfigurationP // ChangeLoadBalancerCompartment Moves a load balancer into a different compartment within the same tenancy. For information about moving resources // between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ChangeLoadBalancerCompartment.go.html to see an example of how to use ChangeLoadBalancerCompartment API. func (client LoadBalancerClient) ChangeLoadBalancerCompartment(ctx context.Context, request ChangeLoadBalancerCompartmentRequest) (response ChangeLoadBalancerCompartmentResponse, err error) { @@ -157,7 +157,7 @@ func (client LoadBalancerClient) changeLoadBalancerCompartment(ctx context.Conte // CreateBackend Adds a backend server to a backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreateBackend.go.html to see an example of how to use CreateBackend API. func (client LoadBalancerClient) CreateBackend(ctx context.Context, request CreateBackendRequest) (response CreateBackendResponse, err error) { @@ -219,7 +219,7 @@ func (client LoadBalancerClient) createBackend(ctx context.Context, request comm // CreateBackendSet Adds a backend set to a load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreateBackendSet.go.html to see an example of how to use CreateBackendSet API. func (client LoadBalancerClient) CreateBackendSet(ctx context.Context, request CreateBackendSetRequest) (response CreateBackendSetResponse, err error) { @@ -281,7 +281,7 @@ func (client LoadBalancerClient) createBackendSet(ctx context.Context, request c // CreateCertificate Creates an asynchronous request to add an SSL certificate bundle. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreateCertificate.go.html to see an example of how to use CreateCertificate API. func (client LoadBalancerClient) CreateCertificate(ctx context.Context, request CreateCertificateRequest) (response CreateCertificateResponse, err error) { @@ -344,7 +344,7 @@ func (client LoadBalancerClient) createCertificate(ctx context.Context, request // CreateHostname Adds a hostname resource to the specified load balancer. For more information, see // Managing Request Routing (https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrequest.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreateHostname.go.html to see an example of how to use CreateHostname API. func (client LoadBalancerClient) CreateHostname(ctx context.Context, request CreateHostnameRequest) (response CreateHostnameResponse, err error) { @@ -406,7 +406,7 @@ func (client LoadBalancerClient) createHostname(ctx context.Context, request com // CreateListener Adds a listener to a load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreateListener.go.html to see an example of how to use CreateListener API. func (client LoadBalancerClient) CreateListener(ctx context.Context, request CreateListenerRequest) (response CreateListenerResponse, err error) { @@ -488,7 +488,7 @@ func (client LoadBalancerClient) createListener(ctx context.Context, request com // When you create a load balancer, the system assigns an IP address. // To get the IP address, use the GetLoadBalancer operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreateLoadBalancer.go.html to see an example of how to use CreateLoadBalancer API. func (client LoadBalancerClient) CreateLoadBalancer(ctx context.Context, request CreateLoadBalancerRequest) (response CreateLoadBalancerResponse, err error) { @@ -551,7 +551,7 @@ func (client LoadBalancerClient) createLoadBalancer(ctx context.Context, request // CreatePathRouteSet Adds a path route set to a load balancer. For more information, see // Managing Request Routing (https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrequest.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreatePathRouteSet.go.html to see an example of how to use CreatePathRouteSet API. func (client LoadBalancerClient) CreatePathRouteSet(ctx context.Context, request CreatePathRouteSetRequest) (response CreatePathRouteSetResponse, err error) { @@ -614,7 +614,7 @@ func (client LoadBalancerClient) createPathRouteSet(ctx context.Context, request // CreateRoutingPolicy Adds a routing policy to a load balancer. For more information, see // Managing Request Routing (https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrequest.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreateRoutingPolicy.go.html to see an example of how to use CreateRoutingPolicy API. func (client LoadBalancerClient) CreateRoutingPolicy(ctx context.Context, request CreateRoutingPolicyRequest) (response CreateRoutingPolicyResponse, err error) { @@ -677,7 +677,7 @@ func (client LoadBalancerClient) createRoutingPolicy(ctx context.Context, reques // CreateRuleSet Creates a new rule set associated with the specified load balancer. For more information, see // Managing Rule Sets (https://docs.cloud.oracle.com/Content/Balance/Tasks/managingrulesets.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreateRuleSet.go.html to see an example of how to use CreateRuleSet API. func (client LoadBalancerClient) CreateRuleSet(ctx context.Context, request CreateRuleSetRequest) (response CreateRuleSetResponse, err error) { @@ -739,7 +739,7 @@ func (client LoadBalancerClient) createRuleSet(ctx context.Context, request comm // CreateSSLCipherSuite Creates a custom SSL cipher suite. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/CreateSSLCipherSuite.go.html to see an example of how to use CreateSSLCipherSuite API. func (client LoadBalancerClient) CreateSSLCipherSuite(ctx context.Context, request CreateSSLCipherSuiteRequest) (response CreateSSLCipherSuiteResponse, err error) { @@ -801,7 +801,7 @@ func (client LoadBalancerClient) createSSLCipherSuite(ctx context.Context, reque // DeleteBackend Removes a backend server from a given load balancer and backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeleteBackend.go.html to see an example of how to use DeleteBackend API. func (client LoadBalancerClient) DeleteBackend(ctx context.Context, request DeleteBackendRequest) (response DeleteBackendResponse, err error) { @@ -859,7 +859,7 @@ func (client LoadBalancerClient) deleteBackend(ctx context.Context, request comm // DeleteBackendSet Deletes the specified backend set. Note that deleting a backend set removes its backend servers from the load balancer. // Before you can delete a backend set, you must remove it from any active listeners. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeleteBackendSet.go.html to see an example of how to use DeleteBackendSet API. func (client LoadBalancerClient) DeleteBackendSet(ctx context.Context, request DeleteBackendSetRequest) (response DeleteBackendSetResponse, err error) { @@ -916,7 +916,7 @@ func (client LoadBalancerClient) deleteBackendSet(ctx context.Context, request c // DeleteCertificate Deletes an SSL certificate bundle from a load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeleteCertificate.go.html to see an example of how to use DeleteCertificate API. func (client LoadBalancerClient) DeleteCertificate(ctx context.Context, request DeleteCertificateRequest) (response DeleteCertificateResponse, err error) { @@ -973,7 +973,7 @@ func (client LoadBalancerClient) deleteCertificate(ctx context.Context, request // DeleteHostname Deletes a hostname resource from the specified load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeleteHostname.go.html to see an example of how to use DeleteHostname API. func (client LoadBalancerClient) DeleteHostname(ctx context.Context, request DeleteHostnameRequest) (response DeleteHostnameResponse, err error) { @@ -1030,7 +1030,7 @@ func (client LoadBalancerClient) deleteHostname(ctx context.Context, request com // DeleteListener Deletes a listener from a load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeleteListener.go.html to see an example of how to use DeleteListener API. func (client LoadBalancerClient) DeleteListener(ctx context.Context, request DeleteListenerRequest) (response DeleteListenerResponse, err error) { @@ -1087,7 +1087,7 @@ func (client LoadBalancerClient) deleteListener(ctx context.Context, request com // DeleteLoadBalancer Stops a load balancer and removes it from service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeleteLoadBalancer.go.html to see an example of how to use DeleteLoadBalancer API. func (client LoadBalancerClient) DeleteLoadBalancer(ctx context.Context, request DeleteLoadBalancerRequest) (response DeleteLoadBalancerResponse, err error) { @@ -1146,7 +1146,7 @@ func (client LoadBalancerClient) deleteLoadBalancer(ctx context.Context, request // To delete a path route rule from a path route set, use the // UpdatePathRouteSet operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeletePathRouteSet.go.html to see an example of how to use DeletePathRouteSet API. func (client LoadBalancerClient) DeletePathRouteSet(ctx context.Context, request DeletePathRouteSetRequest) (response DeletePathRouteSetResponse, err error) { @@ -1205,7 +1205,7 @@ func (client LoadBalancerClient) deletePathRouteSet(ctx context.Context, request // To delete a routing rule from a routing policy, use the // UpdateRoutingPolicy operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeleteRoutingPolicy.go.html to see an example of how to use DeleteRoutingPolicy API. func (client LoadBalancerClient) DeleteRoutingPolicy(ctx context.Context, request DeleteRoutingPolicyRequest) (response DeleteRoutingPolicyResponse, err error) { @@ -1264,7 +1264,7 @@ func (client LoadBalancerClient) deleteRoutingPolicy(ctx context.Context, reques // To delete a rule from a rule set, use the // UpdateRuleSet operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeleteRuleSet.go.html to see an example of how to use DeleteRuleSet API. func (client LoadBalancerClient) DeleteRuleSet(ctx context.Context, request DeleteRuleSetRequest) (response DeleteRuleSetResponse, err error) { @@ -1321,7 +1321,7 @@ func (client LoadBalancerClient) deleteRuleSet(ctx context.Context, request comm // DeleteSSLCipherSuite Deletes an SSL cipher suite from a load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/DeleteSSLCipherSuite.go.html to see an example of how to use DeleteSSLCipherSuite API. func (client LoadBalancerClient) DeleteSSLCipherSuite(ctx context.Context, request DeleteSSLCipherSuiteRequest) (response DeleteSSLCipherSuiteResponse, err error) { @@ -1378,7 +1378,7 @@ func (client LoadBalancerClient) deleteSSLCipherSuite(ctx context.Context, reque // GetBackend Gets the specified backend server's configuration information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetBackend.go.html to see an example of how to use GetBackend API. func (client LoadBalancerClient) GetBackend(ctx context.Context, request GetBackendRequest) (response GetBackendResponse, err error) { @@ -1435,7 +1435,7 @@ func (client LoadBalancerClient) getBackend(ctx context.Context, request common. // GetBackendHealth Gets the current health status of the specified backend server. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetBackendHealth.go.html to see an example of how to use GetBackendHealth API. func (client LoadBalancerClient) GetBackendHealth(ctx context.Context, request GetBackendHealthRequest) (response GetBackendHealthResponse, err error) { @@ -1492,7 +1492,7 @@ func (client LoadBalancerClient) getBackendHealth(ctx context.Context, request c // GetBackendSet Gets the specified backend set's configuration information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetBackendSet.go.html to see an example of how to use GetBackendSet API. func (client LoadBalancerClient) GetBackendSet(ctx context.Context, request GetBackendSetRequest) (response GetBackendSetResponse, err error) { @@ -1549,7 +1549,7 @@ func (client LoadBalancerClient) getBackendSet(ctx context.Context, request comm // GetBackendSetHealth Gets the health status for the specified backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetBackendSetHealth.go.html to see an example of how to use GetBackendSetHealth API. func (client LoadBalancerClient) GetBackendSetHealth(ctx context.Context, request GetBackendSetHealthRequest) (response GetBackendSetHealthResponse, err error) { @@ -1606,7 +1606,7 @@ func (client LoadBalancerClient) getBackendSetHealth(ctx context.Context, reques // GetHealthChecker Gets the health check policy information for a given load balancer and backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetHealthChecker.go.html to see an example of how to use GetHealthChecker API. func (client LoadBalancerClient) GetHealthChecker(ctx context.Context, request GetHealthCheckerRequest) (response GetHealthCheckerResponse, err error) { @@ -1663,7 +1663,7 @@ func (client LoadBalancerClient) getHealthChecker(ctx context.Context, request c // GetHostname Gets the specified hostname resource's configuration information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetHostname.go.html to see an example of how to use GetHostname API. func (client LoadBalancerClient) GetHostname(ctx context.Context, request GetHostnameRequest) (response GetHostnameResponse, err error) { @@ -1720,7 +1720,7 @@ func (client LoadBalancerClient) getHostname(ctx context.Context, request common // GetLoadBalancer Gets the specified load balancer's configuration information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetLoadBalancer.go.html to see an example of how to use GetLoadBalancer API. func (client LoadBalancerClient) GetLoadBalancer(ctx context.Context, request GetLoadBalancerRequest) (response GetLoadBalancerResponse, err error) { @@ -1777,7 +1777,7 @@ func (client LoadBalancerClient) getLoadBalancer(ctx context.Context, request co // GetLoadBalancerHealth Gets the health status for the specified load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetLoadBalancerHealth.go.html to see an example of how to use GetLoadBalancerHealth API. func (client LoadBalancerClient) GetLoadBalancerHealth(ctx context.Context, request GetLoadBalancerHealthRequest) (response GetLoadBalancerHealthResponse, err error) { @@ -1834,7 +1834,7 @@ func (client LoadBalancerClient) getLoadBalancerHealth(ctx context.Context, requ // GetPathRouteSet Gets the specified path route set's configuration information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetPathRouteSet.go.html to see an example of how to use GetPathRouteSet API. func (client LoadBalancerClient) GetPathRouteSet(ctx context.Context, request GetPathRouteSetRequest) (response GetPathRouteSetResponse, err error) { @@ -1891,7 +1891,7 @@ func (client LoadBalancerClient) getPathRouteSet(ctx context.Context, request co // GetRoutingPolicy Gets the specified routing policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetRoutingPolicy.go.html to see an example of how to use GetRoutingPolicy API. func (client LoadBalancerClient) GetRoutingPolicy(ctx context.Context, request GetRoutingPolicyRequest) (response GetRoutingPolicyResponse, err error) { @@ -1948,7 +1948,7 @@ func (client LoadBalancerClient) getRoutingPolicy(ctx context.Context, request c // GetRuleSet Gets the specified set of rules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetRuleSet.go.html to see an example of how to use GetRuleSet API. func (client LoadBalancerClient) GetRuleSet(ctx context.Context, request GetRuleSetRequest) (response GetRuleSetResponse, err error) { @@ -2005,7 +2005,7 @@ func (client LoadBalancerClient) getRuleSet(ctx context.Context, request common. // GetSSLCipherSuite Gets the specified SSL cipher suite's configuration information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetSSLCipherSuite.go.html to see an example of how to use GetSSLCipherSuite API. func (client LoadBalancerClient) GetSSLCipherSuite(ctx context.Context, request GetSSLCipherSuiteRequest) (response GetSSLCipherSuiteResponse, err error) { @@ -2062,7 +2062,7 @@ func (client LoadBalancerClient) getSSLCipherSuite(ctx context.Context, request // GetWorkRequest Gets the details of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client LoadBalancerClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -2119,7 +2119,7 @@ func (client LoadBalancerClient) getWorkRequest(ctx context.Context, request com // ListBackendSets Lists all backend sets associated with a given load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListBackendSets.go.html to see an example of how to use ListBackendSets API. func (client LoadBalancerClient) ListBackendSets(ctx context.Context, request ListBackendSetsRequest) (response ListBackendSetsResponse, err error) { @@ -2176,7 +2176,7 @@ func (client LoadBalancerClient) listBackendSets(ctx context.Context, request co // ListBackends Lists the backend servers for a given load balancer and backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListBackends.go.html to see an example of how to use ListBackends API. func (client LoadBalancerClient) ListBackends(ctx context.Context, request ListBackendsRequest) (response ListBackendsResponse, err error) { @@ -2233,7 +2233,7 @@ func (client LoadBalancerClient) listBackends(ctx context.Context, request commo // ListCertificates Lists all SSL certificates bundles associated with a given load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListCertificates.go.html to see an example of how to use ListCertificates API. func (client LoadBalancerClient) ListCertificates(ctx context.Context, request ListCertificatesRequest) (response ListCertificatesResponse, err error) { @@ -2290,7 +2290,7 @@ func (client LoadBalancerClient) listCertificates(ctx context.Context, request c // ListHostnames Lists all hostname resources associated with the specified load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListHostnames.go.html to see an example of how to use ListHostnames API. func (client LoadBalancerClient) ListHostnames(ctx context.Context, request ListHostnamesRequest) (response ListHostnamesResponse, err error) { @@ -2352,7 +2352,7 @@ func (client LoadBalancerClient) listHostnames(ctx context.Context, request comm // * Request header rules // * Response header rules // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListListenerRules.go.html to see an example of how to use ListListenerRules API. func (client LoadBalancerClient) ListListenerRules(ctx context.Context, request ListListenerRulesRequest) (response ListListenerRulesResponse, err error) { @@ -2409,7 +2409,7 @@ func (client LoadBalancerClient) listListenerRules(ctx context.Context, request // ListLoadBalancerHealths Lists the summary health statuses for all load balancers in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListLoadBalancerHealths.go.html to see an example of how to use ListLoadBalancerHealths API. func (client LoadBalancerClient) ListLoadBalancerHealths(ctx context.Context, request ListLoadBalancerHealthsRequest) (response ListLoadBalancerHealthsResponse, err error) { @@ -2466,7 +2466,7 @@ func (client LoadBalancerClient) listLoadBalancerHealths(ctx context.Context, re // ListLoadBalancers Lists all load balancers in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListLoadBalancers.go.html to see an example of how to use ListLoadBalancers API. func (client LoadBalancerClient) ListLoadBalancers(ctx context.Context, request ListLoadBalancersRequest) (response ListLoadBalancersResponse, err error) { @@ -2523,7 +2523,7 @@ func (client LoadBalancerClient) listLoadBalancers(ctx context.Context, request // ListPathRouteSets Lists all path route sets associated with the specified load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListPathRouteSets.go.html to see an example of how to use ListPathRouteSets API. func (client LoadBalancerClient) ListPathRouteSets(ctx context.Context, request ListPathRouteSetsRequest) (response ListPathRouteSetsResponse, err error) { @@ -2580,7 +2580,7 @@ func (client LoadBalancerClient) listPathRouteSets(ctx context.Context, request // ListPolicies Lists the available load balancer policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListPolicies.go.html to see an example of how to use ListPolicies API. func (client LoadBalancerClient) ListPolicies(ctx context.Context, request ListPoliciesRequest) (response ListPoliciesResponse, err error) { @@ -2637,7 +2637,7 @@ func (client LoadBalancerClient) listPolicies(ctx context.Context, request commo // ListProtocols Lists all supported traffic protocols. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListProtocols.go.html to see an example of how to use ListProtocols API. func (client LoadBalancerClient) ListProtocols(ctx context.Context, request ListProtocolsRequest) (response ListProtocolsResponse, err error) { @@ -2694,7 +2694,7 @@ func (client LoadBalancerClient) listProtocols(ctx context.Context, request comm // ListRoutingPolicies Lists all routing policies associated with the specified load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListRoutingPolicies.go.html to see an example of how to use ListRoutingPolicies API. func (client LoadBalancerClient) ListRoutingPolicies(ctx context.Context, request ListRoutingPoliciesRequest) (response ListRoutingPoliciesResponse, err error) { @@ -2751,7 +2751,7 @@ func (client LoadBalancerClient) listRoutingPolicies(ctx context.Context, reques // ListRuleSets Lists all rule sets associated with the specified load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListRuleSets.go.html to see an example of how to use ListRuleSets API. func (client LoadBalancerClient) ListRuleSets(ctx context.Context, request ListRuleSetsRequest) (response ListRuleSetsResponse, err error) { @@ -2808,7 +2808,7 @@ func (client LoadBalancerClient) listRuleSets(ctx context.Context, request commo // ListSSLCipherSuites Lists all SSL cipher suites associated with the specified load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListSSLCipherSuites.go.html to see an example of how to use ListSSLCipherSuites API. func (client LoadBalancerClient) ListSSLCipherSuites(ctx context.Context, request ListSSLCipherSuitesRequest) (response ListSSLCipherSuitesResponse, err error) { @@ -2865,7 +2865,7 @@ func (client LoadBalancerClient) listSSLCipherSuites(ctx context.Context, reques // ListShapes Lists the valid load balancer shapes. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListShapes.go.html to see an example of how to use ListShapes API. func (client LoadBalancerClient) ListShapes(ctx context.Context, request ListShapesRequest) (response ListShapesResponse, err error) { @@ -2922,7 +2922,7 @@ func (client LoadBalancerClient) listShapes(ctx context.Context, request common. // ListWorkRequests Lists the work requests for a given load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client LoadBalancerClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -2979,7 +2979,7 @@ func (client LoadBalancerClient) listWorkRequests(ctx context.Context, request c // UpdateBackend Updates the configuration of a backend server within the specified backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateBackend.go.html to see an example of how to use UpdateBackend API. func (client LoadBalancerClient) UpdateBackend(ctx context.Context, request UpdateBackendRequest) (response UpdateBackendResponse, err error) { @@ -3041,7 +3041,7 @@ func (client LoadBalancerClient) updateBackend(ctx context.Context, request comm // UpdateBackendSet Updates a backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateBackendSet.go.html to see an example of how to use UpdateBackendSet API. func (client LoadBalancerClient) UpdateBackendSet(ctx context.Context, request UpdateBackendSetRequest) (response UpdateBackendSetResponse, err error) { @@ -3103,7 +3103,7 @@ func (client LoadBalancerClient) updateBackendSet(ctx context.Context, request c // UpdateHealthChecker Updates the health check policy for a given load balancer and backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateHealthChecker.go.html to see an example of how to use UpdateHealthChecker API. func (client LoadBalancerClient) UpdateHealthChecker(ctx context.Context, request UpdateHealthCheckerRequest) (response UpdateHealthCheckerResponse, err error) { @@ -3166,7 +3166,7 @@ func (client LoadBalancerClient) updateHealthChecker(ctx context.Context, reques // UpdateHostname Overwrites an existing hostname resource on the specified load balancer. Use this operation to change a // virtual hostname. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateHostname.go.html to see an example of how to use UpdateHostname API. func (client LoadBalancerClient) UpdateHostname(ctx context.Context, request UpdateHostnameRequest) (response UpdateHostnameResponse, err error) { @@ -3228,7 +3228,7 @@ func (client LoadBalancerClient) updateHostname(ctx context.Context, request com // UpdateListener Updates a listener for a given load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateListener.go.html to see an example of how to use UpdateListener API. func (client LoadBalancerClient) UpdateListener(ctx context.Context, request UpdateListenerRequest) (response UpdateListenerResponse, err error) { @@ -3290,7 +3290,7 @@ func (client LoadBalancerClient) updateListener(ctx context.Context, request com // UpdateLoadBalancer Updates a load balancer's configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateLoadBalancer.go.html to see an example of how to use UpdateLoadBalancer API. func (client LoadBalancerClient) UpdateLoadBalancer(ctx context.Context, request UpdateLoadBalancerRequest) (response UpdateLoadBalancerResponse, err error) { @@ -3357,7 +3357,7 @@ func (client LoadBalancerClient) updateLoadBalancer(ctx context.Context, request // start accepting larger bandwidth and when reshaping to a smaller one, the LB will be accepting smaller // bandwidth. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateLoadBalancerShape.go.html to see an example of how to use UpdateLoadBalancerShape API. func (client LoadBalancerClient) UpdateLoadBalancerShape(ctx context.Context, request UpdateLoadBalancerShapeRequest) (response UpdateLoadBalancerShapeResponse, err error) { @@ -3419,7 +3419,7 @@ func (client LoadBalancerClient) updateLoadBalancerShape(ctx context.Context, re // UpdateNetworkSecurityGroups Updates the network security groups associated with the specified load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateNetworkSecurityGroups.go.html to see an example of how to use UpdateNetworkSecurityGroups API. func (client LoadBalancerClient) UpdateNetworkSecurityGroups(ctx context.Context, request UpdateNetworkSecurityGroupsRequest) (response UpdateNetworkSecurityGroupsResponse, err error) { @@ -3485,7 +3485,7 @@ func (client LoadBalancerClient) updateNetworkSecurityGroups(ctx context.Context // UpdatePathRouteSetDetails object must include // both the new path route rule to add and the existing path route rules to retain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdatePathRouteSet.go.html to see an example of how to use UpdatePathRouteSet API. func (client LoadBalancerClient) UpdatePathRouteSet(ctx context.Context, request UpdatePathRouteSetRequest) (response UpdatePathRouteSetResponse, err error) { @@ -3549,7 +3549,7 @@ func (client LoadBalancerClient) updatePathRouteSet(ctx context.Context, request // routing policy rules in a routing policy. // To add a new routing rule to a routing policy, the body must include both the new routing rule to add and the existing rules to retain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateRoutingPolicy.go.html to see an example of how to use UpdateRoutingPolicy API. func (client LoadBalancerClient) UpdateRoutingPolicy(ctx context.Context, request UpdateRoutingPolicyRequest) (response UpdateRoutingPolicyResponse, err error) { @@ -3613,7 +3613,7 @@ func (client LoadBalancerClient) updateRoutingPolicy(ctx context.Context, reques // the rules in a rule set. // To add a new rule to a set, the body must include both the new rule to add and the existing rules to retain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateRuleSet.go.html to see an example of how to use UpdateRuleSet API. func (client LoadBalancerClient) UpdateRuleSet(ctx context.Context, request UpdateRuleSetRequest) (response UpdateRuleSetResponse, err error) { @@ -3675,7 +3675,7 @@ func (client LoadBalancerClient) updateRuleSet(ctx context.Context, request comm // UpdateSSLCipherSuite Updates an existing SSL cipher suite for the specified load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loadbalancer/UpdateSSLCipherSuite.go.html to see an example of how to use UpdateSSLCipherSuite API. func (client LoadBalancerClient) UpdateSSLCipherSuite(ctx context.Context, request UpdateSSLCipherSuiteRequest) (response UpdateSSLCipherSuiteResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/redirect_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/redirect_rule.go index 699cb5a3478..a980ec1c1c6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/redirect_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/redirect_rule.go @@ -21,12 +21,12 @@ import ( // object is configured for a particular listener and a designated path. // The default response code is `302 Found`. // **NOTES:** -// * This rule applies only to HTTP listeners. -// * You can specify this rule only with the RuleCondition -// type `PATH`. -// * A listener can have only one RedirectRule object for a given original path. The -// PathMatchCondition `attributeValue` specifies the -// original path. +// - This rule applies only to HTTP listeners. +// - You can specify this rule only with the RuleCondition +// type `PATH`. +// - A listener can have only one RedirectRule object for a given original path. The +// PathMatchCondition `attributeValue` specifies the +// original path. type RedirectRule struct { Conditions []RuleCondition `mandatory:"true" json:"conditions"` diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/ssl_cipher_suite.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/ssl_cipher_suite.go index a02cd8629dc..d34e8ad0dd3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/ssl_cipher_suite.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/ssl_cipher_suite.go @@ -27,151 +27,151 @@ import ( // cipher suites (https://docs.cloud.oracle.com/api/#/en/loadbalancer/20170115/SSLCipherSuite/CreateSSLCipherSuite) if the predefined cipher // suites do not meet your requirements. // -// * __oci-default-ssl-cipher-suite-v1__ -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA256" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA384" -// * __oci-modern-ssl-cipher-suite-v1__ -// "AES128-GCM-SHA256" -// "AES128-SHA256" -// "AES256-GCM-SHA384" -// "AES256-SHA256" -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA256" -// "ECDHE-ECDSA-AES128-GCM-SHA256" -// "ECDHE-ECDSA-AES128-SHA256" -// "ECDHE-ECDSA-AES256-GCM-SHA384" -// "ECDHE-ECDSA-AES256-SHA384" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA384" -// * __oci-compatible-ssl-cipher-suite-v1__ -// "AES128-GCM-SHA256" -// "AES128-SHA" -// "AES128-SHA256" -// "AES256-GCM-SHA384" -// "AES256-SHA" -// "AES256-SHA256" -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA256" -// "ECDHE-ECDSA-AES128-GCM-SHA256" -// "ECDHE-ECDSA-AES128-SHA" -// "ECDHE-ECDSA-AES128-SHA256" -// "ECDHE-ECDSA-AES256-GCM-SHA384" -// "ECDHE-ECDSA-AES256-SHA" -// "ECDHE-ECDSA-AES256-SHA384" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA" -// "ECDHE-RSA-AES256-SHA384" -// * __oci-wider-compatible-ssl-cipher-suite-v1__ -// "AES128-GCM-SHA256" -// "AES128-SHA" -// "AES128-SHA256" -// "AES256-GCM-SHA384" -// "AES256-SHA" -// "AES256-SHA256" -// "CAMELLIA128-SHA" -// "CAMELLIA256-SHA" -// "DES-CBC3-SHA" -// "DH-DSS-AES128-GCM-SHA256" -// "DH-DSS-AES128-SHA" -// "DH-DSS-AES128-SHA256" -// "DH-DSS-AES256-GCM-SHA384" -// "DH-DSS-AES256-SHA" -// "DH-DSS-AES256-SHA256" -// "DH-DSS-CAMELLIA128-SHA" -// "DH-DSS-CAMELLIA256-SHA" -// "DH-DSS-DES-CBC3-SHAv" -// "DH-DSS-SEED-SHA" -// "DH-RSA-AES128-GCM-SHA256" -// "DH-RSA-AES128-SHA" -// "DH-RSA-AES128-SHA256" -// "DH-RSA-AES256-GCM-SHA384" -// "DH-RSA-AES256-SHA" -// "DH-RSA-AES256-SHA256" -// "DH-RSA-CAMELLIA128-SHA" -// "DH-RSA-CAMELLIA256-SHA" -// "DH-RSA-DES-CBC3-SHA" -// "DH-RSA-SEED-SHA" -// "DHE-DSS-AES128-GCM-SHA256" -// "DHE-DSS-AES128-SHA" -// "DHE-DSS-AES128-SHA256" -// "DHE-DSS-AES256-GCM-SHA384" -// "DHE-DSS-AES256-SHA" -// "DHE-DSS-AES256-SHA256" -// "DHE-DSS-CAMELLIA128-SHA" -// "DHE-DSS-CAMELLIA256-SHA" -// "DHE-DSS-DES-CBC3-SHA" -// "DHE-DSS-SEED-SHA" -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA" -// "DHE-RSA-AES256-SHA256" -// "DHE-RSA-CAMELLIA128-SHA" -// "DHE-RSA-CAMELLIA256-SHA" -// "DHE-RSA-DES-CBC3-SHA" -// "DHE-RSA-SEED-SHA" -// "ECDH-ECDSA-AES128-GCM-SHA256" -// "ECDH-ECDSA-AES128-SHA" -// "ECDH-ECDSA-AES128-SHA256" -// "ECDH-ECDSA-AES256-GCM-SHA384" -// "ECDH-ECDSA-AES256-SHA" -// "ECDH-ECDSA-AES256-SHA384" -// "ECDH-ECDSA-DES-CBC3-SHA" -// "ECDH-ECDSA-RC4-SHA" -// "ECDH-RSA-AES128-GCM-SHA256" -// "ECDH-RSA-AES128-SHA" -// "ECDH-RSA-AES128-SHA256" -// "ECDH-RSA-AES256-GCM-SHA384" -// "ECDH-RSA-AES256-SHA" -// "ECDH-RSA-AES256-SHA384" -// "ECDH-RSA-DES-CBC3-SHA" -// "ECDH-RSA-RC4-SHA" -// "ECDHE-ECDSA-AES128-GCM-SHA256" -// "ECDHE-ECDSA-AES128-SHA" -// "ECDHE-ECDSA-AES128-SHA256" -// "ECDHE-ECDSA-AES256-GCM-SHA384" -// "ECDHE-ECDSA-AES256-SHA" -// "ECDHE-ECDSA-AES256-SHA384" -// "ECDHE-ECDSA-DES-CBC3-SHA" -// "ECDHE-ECDSA-RC4-SHA" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA" -// "ECDHE-RSA-AES256-SHA384" -// "ECDHE-RSA-DES-CBC3-SHA" -// "ECDHE-RSA-RC4-SHA" -// "IDEA-CBC-SHA" -// "KRB5-DES-CBC3-MD5" -// "KRB5-DES-CBC3-SHA" -// "KRB5-IDEA-CBC-MD5" -// "KRB5-IDEA-CBC-SHA" -// "KRB5-RC4-MD5" -// "KRB5-RC4-SHA" -// "PSK-3DES-EDE-CBC-SHA" -// "PSK-AES128-CBC-SHA" -// "PSK-AES256-CBC-SHA" -// "PSK-RC4-SHA" -// "RC4-MD5" -// "RC4-SHA" -// "SEED-SHA" +// - __oci-default-ssl-cipher-suite-v1__ +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA256" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA384" +// - __oci-modern-ssl-cipher-suite-v1__ +// "AES128-GCM-SHA256" +// "AES128-SHA256" +// "AES256-GCM-SHA384" +// "AES256-SHA256" +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA256" +// "ECDHE-ECDSA-AES128-GCM-SHA256" +// "ECDHE-ECDSA-AES128-SHA256" +// "ECDHE-ECDSA-AES256-GCM-SHA384" +// "ECDHE-ECDSA-AES256-SHA384" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA384" +// - __oci-compatible-ssl-cipher-suite-v1__ +// "AES128-GCM-SHA256" +// "AES128-SHA" +// "AES128-SHA256" +// "AES256-GCM-SHA384" +// "AES256-SHA" +// "AES256-SHA256" +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA256" +// "ECDHE-ECDSA-AES128-GCM-SHA256" +// "ECDHE-ECDSA-AES128-SHA" +// "ECDHE-ECDSA-AES128-SHA256" +// "ECDHE-ECDSA-AES256-GCM-SHA384" +// "ECDHE-ECDSA-AES256-SHA" +// "ECDHE-ECDSA-AES256-SHA384" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA" +// "ECDHE-RSA-AES256-SHA384" +// - __oci-wider-compatible-ssl-cipher-suite-v1__ +// "AES128-GCM-SHA256" +// "AES128-SHA" +// "AES128-SHA256" +// "AES256-GCM-SHA384" +// "AES256-SHA" +// "AES256-SHA256" +// "CAMELLIA128-SHA" +// "CAMELLIA256-SHA" +// "DES-CBC3-SHA" +// "DH-DSS-AES128-GCM-SHA256" +// "DH-DSS-AES128-SHA" +// "DH-DSS-AES128-SHA256" +// "DH-DSS-AES256-GCM-SHA384" +// "DH-DSS-AES256-SHA" +// "DH-DSS-AES256-SHA256" +// "DH-DSS-CAMELLIA128-SHA" +// "DH-DSS-CAMELLIA256-SHA" +// "DH-DSS-DES-CBC3-SHAv" +// "DH-DSS-SEED-SHA" +// "DH-RSA-AES128-GCM-SHA256" +// "DH-RSA-AES128-SHA" +// "DH-RSA-AES128-SHA256" +// "DH-RSA-AES256-GCM-SHA384" +// "DH-RSA-AES256-SHA" +// "DH-RSA-AES256-SHA256" +// "DH-RSA-CAMELLIA128-SHA" +// "DH-RSA-CAMELLIA256-SHA" +// "DH-RSA-DES-CBC3-SHA" +// "DH-RSA-SEED-SHA" +// "DHE-DSS-AES128-GCM-SHA256" +// "DHE-DSS-AES128-SHA" +// "DHE-DSS-AES128-SHA256" +// "DHE-DSS-AES256-GCM-SHA384" +// "DHE-DSS-AES256-SHA" +// "DHE-DSS-AES256-SHA256" +// "DHE-DSS-CAMELLIA128-SHA" +// "DHE-DSS-CAMELLIA256-SHA" +// "DHE-DSS-DES-CBC3-SHA" +// "DHE-DSS-SEED-SHA" +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA" +// "DHE-RSA-AES256-SHA256" +// "DHE-RSA-CAMELLIA128-SHA" +// "DHE-RSA-CAMELLIA256-SHA" +// "DHE-RSA-DES-CBC3-SHA" +// "DHE-RSA-SEED-SHA" +// "ECDH-ECDSA-AES128-GCM-SHA256" +// "ECDH-ECDSA-AES128-SHA" +// "ECDH-ECDSA-AES128-SHA256" +// "ECDH-ECDSA-AES256-GCM-SHA384" +// "ECDH-ECDSA-AES256-SHA" +// "ECDH-ECDSA-AES256-SHA384" +// "ECDH-ECDSA-DES-CBC3-SHA" +// "ECDH-ECDSA-RC4-SHA" +// "ECDH-RSA-AES128-GCM-SHA256" +// "ECDH-RSA-AES128-SHA" +// "ECDH-RSA-AES128-SHA256" +// "ECDH-RSA-AES256-GCM-SHA384" +// "ECDH-RSA-AES256-SHA" +// "ECDH-RSA-AES256-SHA384" +// "ECDH-RSA-DES-CBC3-SHA" +// "ECDH-RSA-RC4-SHA" +// "ECDHE-ECDSA-AES128-GCM-SHA256" +// "ECDHE-ECDSA-AES128-SHA" +// "ECDHE-ECDSA-AES128-SHA256" +// "ECDHE-ECDSA-AES256-GCM-SHA384" +// "ECDHE-ECDSA-AES256-SHA" +// "ECDHE-ECDSA-AES256-SHA384" +// "ECDHE-ECDSA-DES-CBC3-SHA" +// "ECDHE-ECDSA-RC4-SHA" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA" +// "ECDHE-RSA-AES256-SHA384" +// "ECDHE-RSA-DES-CBC3-SHA" +// "ECDHE-RSA-RC4-SHA" +// "IDEA-CBC-SHA" +// "KRB5-DES-CBC3-MD5" +// "KRB5-DES-CBC3-SHA" +// "KRB5-IDEA-CBC-MD5" +// "KRB5-IDEA-CBC-SHA" +// "KRB5-RC4-MD5" +// "KRB5-RC4-SHA" +// "PSK-3DES-EDE-CBC-SHA" +// "PSK-AES128-CBC-SHA" +// "PSK-AES256-CBC-SHA" +// "PSK-RC4-SHA" +// "RC4-MD5" +// "RC4-SHA" +// "SEED-SHA" type SslCipherSuite struct { // A friendly name for the SSL cipher suite. It must be unique and it cannot be changed. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/ssl_cipher_suite_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/ssl_cipher_suite_details.go index 9ec440fa181..6b47b7c92c3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/ssl_cipher_suite_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loadbalancer/ssl_cipher_suite_details.go @@ -27,151 +27,151 @@ import ( // cipher suites (https://docs.cloud.oracle.com/api/#/en/loadbalancer/20170115/SSLCipherSuite/CreateSSLCipherSuite) if the predefined cipher // suites do not meet your requirements. // -// * __oci-default-ssl-cipher-suite-v1__ -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA256" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA384" -// * __oci-modern-ssl-cipher-suite-v1__ -// "AES128-GCM-SHA256" -// "AES128-SHA256" -// "AES256-GCM-SHA384" -// "AES256-SHA256" -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA256" -// "ECDHE-ECDSA-AES128-GCM-SHA256" -// "ECDHE-ECDSA-AES128-SHA256" -// "ECDHE-ECDSA-AES256-GCM-SHA384" -// "ECDHE-ECDSA-AES256-SHA384" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA384" -// * __oci-compatible-ssl-cipher-suite-v1__ -// "AES128-GCM-SHA256" -// "AES128-SHA" -// "AES128-SHA256" -// "AES256-GCM-SHA384" -// "AES256-SHA" -// "AES256-SHA256" -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA256" -// "ECDHE-ECDSA-AES128-GCM-SHA256" -// "ECDHE-ECDSA-AES128-SHA" -// "ECDHE-ECDSA-AES128-SHA256" -// "ECDHE-ECDSA-AES256-GCM-SHA384" -// "ECDHE-ECDSA-AES256-SHA" -// "ECDHE-ECDSA-AES256-SHA384" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA" -// "ECDHE-RSA-AES256-SHA384" -// * __oci-wider-compatible-ssl-cipher-suite-v1__ -// "AES128-GCM-SHA256" -// "AES128-SHA" -// "AES128-SHA256" -// "AES256-GCM-SHA384" -// "AES256-SHA" -// "AES256-SHA256" -// "CAMELLIA128-SHA" -// "CAMELLIA256-SHA" -// "DES-CBC3-SHA" -// "DH-DSS-AES128-GCM-SHA256" -// "DH-DSS-AES128-SHA" -// "DH-DSS-AES128-SHA256" -// "DH-DSS-AES256-GCM-SHA384" -// "DH-DSS-AES256-SHA" -// "DH-DSS-AES256-SHA256" -// "DH-DSS-CAMELLIA128-SHA" -// "DH-DSS-CAMELLIA256-SHA" -// "DH-DSS-DES-CBC3-SHAv" -// "DH-DSS-SEED-SHA" -// "DH-RSA-AES128-GCM-SHA256" -// "DH-RSA-AES128-SHA" -// "DH-RSA-AES128-SHA256" -// "DH-RSA-AES256-GCM-SHA384" -// "DH-RSA-AES256-SHA" -// "DH-RSA-AES256-SHA256" -// "DH-RSA-CAMELLIA128-SHA" -// "DH-RSA-CAMELLIA256-SHA" -// "DH-RSA-DES-CBC3-SHA" -// "DH-RSA-SEED-SHA" -// "DHE-DSS-AES128-GCM-SHA256" -// "DHE-DSS-AES128-SHA" -// "DHE-DSS-AES128-SHA256" -// "DHE-DSS-AES256-GCM-SHA384" -// "DHE-DSS-AES256-SHA" -// "DHE-DSS-AES256-SHA256" -// "DHE-DSS-CAMELLIA128-SHA" -// "DHE-DSS-CAMELLIA256-SHA" -// "DHE-DSS-DES-CBC3-SHA" -// "DHE-DSS-SEED-SHA" -// "DHE-RSA-AES128-GCM-SHA256" -// "DHE-RSA-AES128-SHA" -// "DHE-RSA-AES128-SHA256" -// "DHE-RSA-AES256-GCM-SHA384" -// "DHE-RSA-AES256-SHA" -// "DHE-RSA-AES256-SHA256" -// "DHE-RSA-CAMELLIA128-SHA" -// "DHE-RSA-CAMELLIA256-SHA" -// "DHE-RSA-DES-CBC3-SHA" -// "DHE-RSA-SEED-SHA" -// "ECDH-ECDSA-AES128-GCM-SHA256" -// "ECDH-ECDSA-AES128-SHA" -// "ECDH-ECDSA-AES128-SHA256" -// "ECDH-ECDSA-AES256-GCM-SHA384" -// "ECDH-ECDSA-AES256-SHA" -// "ECDH-ECDSA-AES256-SHA384" -// "ECDH-ECDSA-DES-CBC3-SHA" -// "ECDH-ECDSA-RC4-SHA" -// "ECDH-RSA-AES128-GCM-SHA256" -// "ECDH-RSA-AES128-SHA" -// "ECDH-RSA-AES128-SHA256" -// "ECDH-RSA-AES256-GCM-SHA384" -// "ECDH-RSA-AES256-SHA" -// "ECDH-RSA-AES256-SHA384" -// "ECDH-RSA-DES-CBC3-SHA" -// "ECDH-RSA-RC4-SHA" -// "ECDHE-ECDSA-AES128-GCM-SHA256" -// "ECDHE-ECDSA-AES128-SHA" -// "ECDHE-ECDSA-AES128-SHA256" -// "ECDHE-ECDSA-AES256-GCM-SHA384" -// "ECDHE-ECDSA-AES256-SHA" -// "ECDHE-ECDSA-AES256-SHA384" -// "ECDHE-ECDSA-DES-CBC3-SHA" -// "ECDHE-ECDSA-RC4-SHA" -// "ECDHE-RSA-AES128-GCM-SHA256" -// "ECDHE-RSA-AES128-SHA" -// "ECDHE-RSA-AES128-SHA256" -// "ECDHE-RSA-AES256-GCM-SHA384" -// "ECDHE-RSA-AES256-SHA" -// "ECDHE-RSA-AES256-SHA384" -// "ECDHE-RSA-DES-CBC3-SHA" -// "ECDHE-RSA-RC4-SHA" -// "IDEA-CBC-SHA" -// "KRB5-DES-CBC3-MD5" -// "KRB5-DES-CBC3-SHA" -// "KRB5-IDEA-CBC-MD5" -// "KRB5-IDEA-CBC-SHA" -// "KRB5-RC4-MD5" -// "KRB5-RC4-SHA" -// "PSK-3DES-EDE-CBC-SHA" -// "PSK-AES128-CBC-SHA" -// "PSK-AES256-CBC-SHA" -// "PSK-RC4-SHA" -// "RC4-MD5" -// "RC4-SHA" -// "SEED-SHA" +// - __oci-default-ssl-cipher-suite-v1__ +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA256" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA384" +// - __oci-modern-ssl-cipher-suite-v1__ +// "AES128-GCM-SHA256" +// "AES128-SHA256" +// "AES256-GCM-SHA384" +// "AES256-SHA256" +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA256" +// "ECDHE-ECDSA-AES128-GCM-SHA256" +// "ECDHE-ECDSA-AES128-SHA256" +// "ECDHE-ECDSA-AES256-GCM-SHA384" +// "ECDHE-ECDSA-AES256-SHA384" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA384" +// - __oci-compatible-ssl-cipher-suite-v1__ +// "AES128-GCM-SHA256" +// "AES128-SHA" +// "AES128-SHA256" +// "AES256-GCM-SHA384" +// "AES256-SHA" +// "AES256-SHA256" +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA256" +// "ECDHE-ECDSA-AES128-GCM-SHA256" +// "ECDHE-ECDSA-AES128-SHA" +// "ECDHE-ECDSA-AES128-SHA256" +// "ECDHE-ECDSA-AES256-GCM-SHA384" +// "ECDHE-ECDSA-AES256-SHA" +// "ECDHE-ECDSA-AES256-SHA384" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA" +// "ECDHE-RSA-AES256-SHA384" +// - __oci-wider-compatible-ssl-cipher-suite-v1__ +// "AES128-GCM-SHA256" +// "AES128-SHA" +// "AES128-SHA256" +// "AES256-GCM-SHA384" +// "AES256-SHA" +// "AES256-SHA256" +// "CAMELLIA128-SHA" +// "CAMELLIA256-SHA" +// "DES-CBC3-SHA" +// "DH-DSS-AES128-GCM-SHA256" +// "DH-DSS-AES128-SHA" +// "DH-DSS-AES128-SHA256" +// "DH-DSS-AES256-GCM-SHA384" +// "DH-DSS-AES256-SHA" +// "DH-DSS-AES256-SHA256" +// "DH-DSS-CAMELLIA128-SHA" +// "DH-DSS-CAMELLIA256-SHA" +// "DH-DSS-DES-CBC3-SHAv" +// "DH-DSS-SEED-SHA" +// "DH-RSA-AES128-GCM-SHA256" +// "DH-RSA-AES128-SHA" +// "DH-RSA-AES128-SHA256" +// "DH-RSA-AES256-GCM-SHA384" +// "DH-RSA-AES256-SHA" +// "DH-RSA-AES256-SHA256" +// "DH-RSA-CAMELLIA128-SHA" +// "DH-RSA-CAMELLIA256-SHA" +// "DH-RSA-DES-CBC3-SHA" +// "DH-RSA-SEED-SHA" +// "DHE-DSS-AES128-GCM-SHA256" +// "DHE-DSS-AES128-SHA" +// "DHE-DSS-AES128-SHA256" +// "DHE-DSS-AES256-GCM-SHA384" +// "DHE-DSS-AES256-SHA" +// "DHE-DSS-AES256-SHA256" +// "DHE-DSS-CAMELLIA128-SHA" +// "DHE-DSS-CAMELLIA256-SHA" +// "DHE-DSS-DES-CBC3-SHA" +// "DHE-DSS-SEED-SHA" +// "DHE-RSA-AES128-GCM-SHA256" +// "DHE-RSA-AES128-SHA" +// "DHE-RSA-AES128-SHA256" +// "DHE-RSA-AES256-GCM-SHA384" +// "DHE-RSA-AES256-SHA" +// "DHE-RSA-AES256-SHA256" +// "DHE-RSA-CAMELLIA128-SHA" +// "DHE-RSA-CAMELLIA256-SHA" +// "DHE-RSA-DES-CBC3-SHA" +// "DHE-RSA-SEED-SHA" +// "ECDH-ECDSA-AES128-GCM-SHA256" +// "ECDH-ECDSA-AES128-SHA" +// "ECDH-ECDSA-AES128-SHA256" +// "ECDH-ECDSA-AES256-GCM-SHA384" +// "ECDH-ECDSA-AES256-SHA" +// "ECDH-ECDSA-AES256-SHA384" +// "ECDH-ECDSA-DES-CBC3-SHA" +// "ECDH-ECDSA-RC4-SHA" +// "ECDH-RSA-AES128-GCM-SHA256" +// "ECDH-RSA-AES128-SHA" +// "ECDH-RSA-AES128-SHA256" +// "ECDH-RSA-AES256-GCM-SHA384" +// "ECDH-RSA-AES256-SHA" +// "ECDH-RSA-AES256-SHA384" +// "ECDH-RSA-DES-CBC3-SHA" +// "ECDH-RSA-RC4-SHA" +// "ECDHE-ECDSA-AES128-GCM-SHA256" +// "ECDHE-ECDSA-AES128-SHA" +// "ECDHE-ECDSA-AES128-SHA256" +// "ECDHE-ECDSA-AES256-GCM-SHA384" +// "ECDHE-ECDSA-AES256-SHA" +// "ECDHE-ECDSA-AES256-SHA384" +// "ECDHE-ECDSA-DES-CBC3-SHA" +// "ECDHE-ECDSA-RC4-SHA" +// "ECDHE-RSA-AES128-GCM-SHA256" +// "ECDHE-RSA-AES128-SHA" +// "ECDHE-RSA-AES128-SHA256" +// "ECDHE-RSA-AES256-GCM-SHA384" +// "ECDHE-RSA-AES256-SHA" +// "ECDHE-RSA-AES256-SHA384" +// "ECDHE-RSA-DES-CBC3-SHA" +// "ECDHE-RSA-RC4-SHA" +// "IDEA-CBC-SHA" +// "KRB5-DES-CBC3-MD5" +// "KRB5-DES-CBC3-SHA" +// "KRB5-IDEA-CBC-MD5" +// "KRB5-IDEA-CBC-SHA" +// "KRB5-RC4-MD5" +// "KRB5-RC4-SHA" +// "PSK-3DES-EDE-CBC-SHA" +// "PSK-AES128-CBC-SHA" +// "PSK-AES256-CBC-SHA" +// "PSK-RC4-SHA" +// "RC4-MD5" +// "RC4-SHA" +// "SEED-SHA" type SslCipherSuiteDetails struct { // A friendly name for the SSL cipher suite. It must be unique and it cannot be changed. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/add_fields_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/add_fields_command_descriptor.go index e5c6f7cc0d5..45f65941caa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/add_fields_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/add_fields_command_descriptor.go @@ -41,32 +41,32 @@ type AddFieldsCommandDescriptor struct { SubQueries []ParseQueryOutput `mandatory:"false" json:"subQueries"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m AddFieldsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m AddFieldsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m AddFieldsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m AddFieldsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m AddFieldsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m AddFieldsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/add_insights_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/add_insights_command_descriptor.go index 9015a8b233f..02fd9f6e80d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/add_insights_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/add_insights_command_descriptor.go @@ -38,32 +38,32 @@ type AddInsightsCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m AddInsightsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m AddInsightsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m AddInsightsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m AddInsightsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m AddInsightsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m AddInsightsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/anomaly_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/anomaly_command_descriptor.go index 689c45480d1..a7726443428 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/anomaly_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/anomaly_command_descriptor.go @@ -38,32 +38,32 @@ type AnomalyCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m AnomalyCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m AnomalyCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m AnomalyCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m AnomalyCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m AnomalyCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m AnomalyCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/bottom_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/bottom_command_descriptor.go index 943cd02b538..6b2dac83f54 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/bottom_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/bottom_command_descriptor.go @@ -41,32 +41,32 @@ type BottomCommandDescriptor struct { Limit *int `mandatory:"false" json:"limit"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m BottomCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m BottomCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m BottomCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m BottomCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m BottomCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m BottomCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/bucket_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/bucket_command_descriptor.go index 6eebe8c2e78..8994050e73c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/bucket_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/bucket_command_descriptor.go @@ -50,32 +50,32 @@ type BucketCommandDescriptor struct { DefaultValue *string `mandatory:"false" json:"defaultValue"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m BucketCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m BucketCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m BucketCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m BucketCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m BucketCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m BucketCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/chart_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/chart_column.go index 8e399b0a9cf..d8c239858cb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/chart_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/chart_column.go @@ -65,57 +65,57 @@ type ChartColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ChartColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m ChartColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m ChartColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m ChartColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m ChartColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m ChartColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m ChartColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m ChartColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m ChartColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m ChartColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m ChartColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/chart_data_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/chart_data_column.go index da7c9af0993..e1394f728ec 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/chart_data_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/chart_data_column.go @@ -59,57 +59,57 @@ type ChartDataColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ChartDataColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m ChartDataColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m ChartDataColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m ChartDataColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m ChartDataColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m ChartDataColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m ChartDataColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m ChartDataColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m ChartDataColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m ChartDataColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m ChartDataColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/classify_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/classify_column.go index fbf7a3c76bb..c5a1e826a23 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/classify_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/classify_column.go @@ -74,57 +74,57 @@ type ClassifyColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ClassifyColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m ClassifyColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m ClassifyColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m ClassifyColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m ClassifyColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m ClassifyColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m ClassifyColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m ClassifyColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m ClassifyColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m ClassifyColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m ClassifyColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/classify_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/classify_command_descriptor.go index 19bc6597fdc..c5a6403944f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/classify_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/classify_command_descriptor.go @@ -47,32 +47,32 @@ type ClassifyCommandDescriptor struct { Correlate []FieldsAddRemoveField `mandatory:"false" json:"correlate"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m ClassifyCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m ClassifyCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m ClassifyCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m ClassifyCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m ClassifyCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m ClassifyCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_command_descriptor.go index f2248daf8c2..8effd96f812 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_command_descriptor.go @@ -38,32 +38,32 @@ type ClusterCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m ClusterCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m ClusterCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m ClusterCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m ClusterCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m ClusterCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m ClusterCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_compare_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_compare_command_descriptor.go index b0189e30d0d..ef9a007dddb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_compare_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_compare_command_descriptor.go @@ -56,32 +56,32 @@ type ClusterCompareCommandDescriptor struct { BaselineQuery *string `mandatory:"false" json:"baselineQuery"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m ClusterCompareCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m ClusterCompareCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m ClusterCompareCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m ClusterCompareCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m ClusterCompareCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m ClusterCompareCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_details_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_details_command_descriptor.go index 2b713f3a928..90fcdda78ba 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_details_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_details_command_descriptor.go @@ -38,32 +38,32 @@ type ClusterDetailsCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m ClusterDetailsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m ClusterDetailsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m ClusterDetailsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m ClusterDetailsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m ClusterDetailsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m ClusterDetailsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_split_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_split_command_descriptor.go index 9f697035d6f..116f4b8e3c3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_split_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cluster_split_command_descriptor.go @@ -38,32 +38,32 @@ type ClusterSplitCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m ClusterSplitCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m ClusterSplitCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m ClusterSplitCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m ClusterSplitCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m ClusterSplitCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m ClusterSplitCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/column.go index e39af2cc2ba..049068973dd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/column.go @@ -53,57 +53,57 @@ type Column struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m Column) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m Column) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m Column) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m Column) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m Column) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m Column) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m Column) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m Column) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m Column) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m Column) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m Column) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/command_descriptor.go index 879dd5bbc8c..e1a4caca928 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/command_descriptor.go @@ -38,32 +38,32 @@ type CommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m CommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m CommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m CommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m CommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m CommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m CommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/compare_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/compare_command_descriptor.go index 603fe16a18e..736a6d058db 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/compare_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/compare_command_descriptor.go @@ -38,32 +38,32 @@ type CompareCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m CompareCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m CompareCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m CompareCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m CompareCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m CompareCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m CompareCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_acceleration_task_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_acceleration_task_details.go index 8f323949c5b..0bb9a058417 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_acceleration_task_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_acceleration_task_details.go @@ -42,22 +42,22 @@ type CreateAccelerationTaskDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAccelerationTaskDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateAccelerationTaskDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAccelerationTaskDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAccelerationTaskDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_standard_task_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_standard_task_details.go index 639d21f3bdf..50b784c9e3c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_standard_task_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_standard_task_details.go @@ -48,22 +48,22 @@ type CreateStandardTaskDetails struct { TaskType TaskTypeEnum `mandatory:"true" json:"taskType"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateStandardTaskDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateStandardTaskDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateStandardTaskDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateStandardTaskDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_view_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_view_command_descriptor.go index 99540e242b1..c04c03687c5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_view_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/create_view_command_descriptor.go @@ -38,32 +38,32 @@ type CreateViewCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m CreateViewCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m CreateViewCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m CreateViewCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m CreateViewCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m CreateViewCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m CreateViewCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cron_schedule.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cron_schedule.go index b2642641598..8953c16465e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cron_schedule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/cron_schedule.go @@ -33,12 +33,12 @@ type CronSchedule struct { MisfirePolicy ScheduleMisfirePolicyEnum `mandatory:"false" json:"misfirePolicy,omitempty"` } -//GetMisfirePolicy returns MisfirePolicy +// GetMisfirePolicy returns MisfirePolicy func (m CronSchedule) GetMisfirePolicy() ScheduleMisfirePolicyEnum { return m.MisfirePolicy } -//GetTimeOfFirstExecution returns TimeOfFirstExecution +// GetTimeOfFirstExecution returns TimeOfFirstExecution func (m CronSchedule) GetTimeOfFirstExecution() *common.SDKTime { return m.TimeOfFirstExecution } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/dedup_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/dedup_command_descriptor.go index a9a2851ed05..c2aca795016 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/dedup_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/dedup_command_descriptor.go @@ -38,32 +38,32 @@ type DedupCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m DedupCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m DedupCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m DedupCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m DedupCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m DedupCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m DedupCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/delete_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/delete_command_descriptor.go index 89fb5b80190..876b88c73da 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/delete_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/delete_command_descriptor.go @@ -41,32 +41,32 @@ type DeleteCommandDescriptor struct { IsDryRun *bool `mandatory:"false" json:"isDryRun"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m DeleteCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m DeleteCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m DeleteCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m DeleteCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m DeleteCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m DeleteCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/delta_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/delta_command_descriptor.go index 9daededd733..1192789f0c9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/delta_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/delta_command_descriptor.go @@ -41,32 +41,32 @@ type DeltaCommandDescriptor struct { Step *int `mandatory:"false" json:"step"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m DeltaCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m DeltaCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m DeltaCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m DeltaCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m DeltaCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m DeltaCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/demo_mode_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/demo_mode_command_descriptor.go index 801c66e62e8..09625b771be 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/demo_mode_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/demo_mode_command_descriptor.go @@ -38,32 +38,32 @@ type DemoModeCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m DemoModeCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m DemoModeCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m DemoModeCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m DemoModeCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m DemoModeCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m DemoModeCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/distinct_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/distinct_command_descriptor.go index f7021dfbc8a..41fb6350090 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/distinct_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/distinct_command_descriptor.go @@ -38,32 +38,32 @@ type DistinctCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m DistinctCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m DistinctCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m DistinctCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m DistinctCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m DistinctCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m DistinctCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/eval_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/eval_command_descriptor.go index 4ff0d949073..b992ce12956 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/eval_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/eval_command_descriptor.go @@ -38,32 +38,32 @@ type EvalCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m EvalCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m EvalCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m EvalCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m EvalCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m EvalCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m EvalCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/event_stats_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/event_stats_command_descriptor.go index 77ed418f092..51faf617b45 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/event_stats_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/event_stats_command_descriptor.go @@ -44,32 +44,32 @@ type EventStatsCommandDescriptor struct { Functions []FunctionField `mandatory:"false" json:"functions"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m EventStatsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m EventStatsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m EventStatsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m EventStatsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m EventStatsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m EventStatsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/extract_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/extract_command_descriptor.go index 21ad6562afe..2c4648fbd02 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/extract_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/extract_command_descriptor.go @@ -38,32 +38,32 @@ type ExtractCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m ExtractCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m ExtractCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m ExtractCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m ExtractCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m ExtractCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m ExtractCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/field.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/field.go index d3da5f59469..a1a5c72bec8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/field.go @@ -51,52 +51,52 @@ type Field struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m Field) GetDisplayName() *string { return m.DisplayName } -//GetIsDeclared returns IsDeclared +// GetIsDeclared returns IsDeclared func (m Field) GetIsDeclared() *bool { return m.IsDeclared } -//GetOriginalDisplayNames returns OriginalDisplayNames +// GetOriginalDisplayNames returns OriginalDisplayNames func (m Field) GetOriginalDisplayNames() []string { return m.OriginalDisplayNames } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m Field) GetInternalName() *string { return m.InternalName } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m Field) GetValueType() ValueTypeEnum { return m.ValueType } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m Field) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsDuration returns IsDuration +// GetIsDuration returns IsDuration func (m Field) GetIsDuration() *bool { return m.IsDuration } -//GetAlias returns Alias +// GetAlias returns Alias func (m Field) GetAlias() *string { return m.Alias } -//GetFilterQueryString returns FilterQueryString +// GetFilterQueryString returns FilterQueryString func (m Field) GetFilterQueryString() *string { return m.FilterQueryString } -//GetUnitType returns UnitType +// GetUnitType returns UnitType func (m Field) GetUnitType() *string { return m.UnitType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/field_summary_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/field_summary_command_descriptor.go index 1959b3a980a..44b3729ac3e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/field_summary_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/field_summary_command_descriptor.go @@ -41,32 +41,32 @@ type FieldSummaryCommandDescriptor struct { MaxValues *int `mandatory:"false" json:"maxValues"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m FieldSummaryCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m FieldSummaryCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m FieldSummaryCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m FieldSummaryCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m FieldSummaryCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m FieldSummaryCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fields_add_remove_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fields_add_remove_field.go index a2510c675d1..c803eb32c6f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fields_add_remove_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fields_add_remove_field.go @@ -54,52 +54,52 @@ type FieldsAddRemoveField struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m FieldsAddRemoveField) GetDisplayName() *string { return m.DisplayName } -//GetIsDeclared returns IsDeclared +// GetIsDeclared returns IsDeclared func (m FieldsAddRemoveField) GetIsDeclared() *bool { return m.IsDeclared } -//GetOriginalDisplayNames returns OriginalDisplayNames +// GetOriginalDisplayNames returns OriginalDisplayNames func (m FieldsAddRemoveField) GetOriginalDisplayNames() []string { return m.OriginalDisplayNames } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m FieldsAddRemoveField) GetInternalName() *string { return m.InternalName } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m FieldsAddRemoveField) GetValueType() ValueTypeEnum { return m.ValueType } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m FieldsAddRemoveField) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsDuration returns IsDuration +// GetIsDuration returns IsDuration func (m FieldsAddRemoveField) GetIsDuration() *bool { return m.IsDuration } -//GetAlias returns Alias +// GetAlias returns Alias func (m FieldsAddRemoveField) GetAlias() *string { return m.Alias } -//GetFilterQueryString returns FilterQueryString +// GetFilterQueryString returns FilterQueryString func (m FieldsAddRemoveField) GetFilterQueryString() *string { return m.FilterQueryString } -//GetUnitType returns UnitType +// GetUnitType returns UnitType func (m FieldsAddRemoveField) GetUnitType() *string { return m.UnitType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fields_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fields_command_descriptor.go index 632c8d6736f..9d4425e184e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fields_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fields_command_descriptor.go @@ -38,32 +38,32 @@ type FieldsCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m FieldsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m FieldsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m FieldsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m FieldsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m FieldsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m FieldsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fixed_frequency_schedule.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fixed_frequency_schedule.go index a35eac1b1e5..c92f736c909 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fixed_frequency_schedule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/fixed_frequency_schedule.go @@ -38,12 +38,12 @@ type FixedFrequencySchedule struct { MisfirePolicy ScheduleMisfirePolicyEnum `mandatory:"false" json:"misfirePolicy,omitempty"` } -//GetMisfirePolicy returns MisfirePolicy +// GetMisfirePolicy returns MisfirePolicy func (m FixedFrequencySchedule) GetMisfirePolicy() ScheduleMisfirePolicyEnum { return m.MisfirePolicy } -//GetTimeOfFirstExecution returns TimeOfFirstExecution +// GetTimeOfFirstExecution returns TimeOfFirstExecution func (m FixedFrequencySchedule) GetTimeOfFirstExecution() *common.SDKTime { return m.TimeOfFirstExecution } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/frequent_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/frequent_command_descriptor.go index c7220b15e81..9f0bdd890df 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/frequent_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/frequent_command_descriptor.go @@ -38,32 +38,32 @@ type FrequentCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m FrequentCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m FrequentCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m FrequentCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m FrequentCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m FrequentCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m FrequentCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/function_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/function_field.go index bf49d0d6317..e52f7cea96e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/function_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/function_field.go @@ -57,52 +57,52 @@ type FunctionField struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m FunctionField) GetDisplayName() *string { return m.DisplayName } -//GetIsDeclared returns IsDeclared +// GetIsDeclared returns IsDeclared func (m FunctionField) GetIsDeclared() *bool { return m.IsDeclared } -//GetOriginalDisplayNames returns OriginalDisplayNames +// GetOriginalDisplayNames returns OriginalDisplayNames func (m FunctionField) GetOriginalDisplayNames() []string { return m.OriginalDisplayNames } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m FunctionField) GetInternalName() *string { return m.InternalName } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m FunctionField) GetValueType() ValueTypeEnum { return m.ValueType } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m FunctionField) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsDuration returns IsDuration +// GetIsDuration returns IsDuration func (m FunctionField) GetIsDuration() *bool { return m.IsDuration } -//GetAlias returns Alias +// GetAlias returns Alias func (m FunctionField) GetAlias() *string { return m.Alias } -//GetFilterQueryString returns FilterQueryString +// GetFilterQueryString returns FilterQueryString func (m FunctionField) GetFilterQueryString() *string { return m.FilterQueryString } -//GetUnitType returns UnitType +// GetUnitType returns UnitType func (m FunctionField) GetUnitType() *string { return m.UnitType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/geo_stats_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/geo_stats_command_descriptor.go index c266574ab72..d65f410690c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/geo_stats_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/geo_stats_command_descriptor.go @@ -62,32 +62,32 @@ type GeoStatsCommandDescriptor struct { Include GeoStatsCommandDescriptorIncludeEnum `mandatory:"false" json:"include,omitempty"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m GeoStatsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m GeoStatsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m GeoStatsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m GeoStatsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m GeoStatsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m GeoStatsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/head_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/head_command_descriptor.go index ce34c1a2a75..0040758e386 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/head_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/head_command_descriptor.go @@ -41,32 +41,32 @@ type HeadCommandDescriptor struct { Limit *int `mandatory:"false" json:"limit"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m HeadCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m HeadCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m HeadCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m HeadCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m HeadCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m HeadCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_command_descriptor.go index 853f7c9309f..393178abfdd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_command_descriptor.go @@ -47,32 +47,32 @@ type HighlightCommandDescriptor struct { Keywords []string `mandatory:"false" json:"keywords"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m HighlightCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m HighlightCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m HighlightCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m HighlightCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m HighlightCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m HighlightCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_groups_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_groups_command_descriptor.go index f7de95d8ed2..6405bd9e26a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_groups_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_groups_command_descriptor.go @@ -56,32 +56,32 @@ type HighlightGroupsCommandDescriptor struct { SubQueries []ParseQueryOutput `mandatory:"false" json:"subQueries"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m HighlightGroupsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m HighlightGroupsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m HighlightGroupsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m HighlightGroupsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m HighlightGroupsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m HighlightGroupsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_rows_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_rows_command_descriptor.go index eac525a6b5f..3bbe4692a69 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_rows_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/highlight_rows_command_descriptor.go @@ -44,32 +44,32 @@ type HighlightRowsCommandDescriptor struct { Keywords []string `mandatory:"false" json:"keywords"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m HighlightRowsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m HighlightRowsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m HighlightRowsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m HighlightRowsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m HighlightRowsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m HighlightRowsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/json_extract_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/json_extract_command_descriptor.go index 5c53546761d..0efe8395934 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/json_extract_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/json_extract_command_descriptor.go @@ -38,32 +38,32 @@ type JsonExtractCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m JsonExtractCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m JsonExtractCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m JsonExtractCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m JsonExtractCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m JsonExtractCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m JsonExtractCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/link_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/link_command_descriptor.go index bcdd43656d5..60592660cbc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/link_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/link_command_descriptor.go @@ -47,32 +47,32 @@ type LinkCommandDescriptor struct { Span *string `mandatory:"false" json:"span"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m LinkCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m LinkCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m LinkCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m LinkCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m LinkCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m LinkCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/link_details_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/link_details_command_descriptor.go index 8d350a7ba1e..a8b44c7fd55 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/link_details_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/link_details_command_descriptor.go @@ -38,32 +38,32 @@ type LinkDetailsCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m LinkDetailsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m LinkDetailsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m LinkDetailsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m LinkDetailsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m LinkDetailsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m LinkDetailsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/loganalytics_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/loganalytics_client.go index 2669da50673..b932d817d51 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/loganalytics_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/loganalytics_client.go @@ -93,7 +93,7 @@ func (client *LogAnalyticsClient) ConfigurationProvider() *common.ConfigurationP // AddEntityAssociation Adds association between input source log analytics entity and one or more existing destination entities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/AddEntityAssociation.go.html to see an example of how to use AddEntityAssociation API. // A default retry strategy applies to this operation AddEntityAssociation() @@ -158,7 +158,7 @@ func (client LogAnalyticsClient) addEntityAssociation(ctx context.Context, reque // AddSourceEventTypes Add one or more event types to a source. An event type and version can be enabled only on one source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/AddSourceEventTypes.go.html to see an example of how to use AddSourceEventTypes API. // A default retry strategy applies to this operation AddSourceEventTypes() @@ -223,7 +223,7 @@ func (client LogAnalyticsClient) addSourceEventTypes(ctx context.Context, reques // AppendLookupData Appends data to the lookup content. The csv file containing the content to be appended is passed in as binary data in the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/AppendLookupData.go.html to see an example of how to use AppendLookupData API. // A default retry strategy applies to this operation AppendLookupData() @@ -288,7 +288,7 @@ func (client LogAnalyticsClient) appendLookupData(ctx context.Context, request c // AssignEncryptionKey This API submits a work request to assign customer encryption key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/AssignEncryptionKey.go.html to see an example of how to use AssignEncryptionKey API. func (client LogAnalyticsClient) AssignEncryptionKey(ctx context.Context, request AssignEncryptionKeyRequest) (response AssignEncryptionKeyResponse, err error) { @@ -352,7 +352,7 @@ func (client LogAnalyticsClient) assignEncryptionKey(ctx context.Context, reques // BatchGetBasicInfo Lists basic information about a specified set of labels in batch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/BatchGetBasicInfo.go.html to see an example of how to use BatchGetBasicInfo API. // A default retry strategy applies to this operation BatchGetBasicInfo() @@ -412,7 +412,7 @@ func (client LogAnalyticsClient) batchGetBasicInfo(ctx context.Context, request // CancelQueryWorkRequest Cancel/Remove query job work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/CancelQueryWorkRequest.go.html to see an example of how to use CancelQueryWorkRequest API. // A default retry strategy applies to this operation CancelQueryWorkRequest() @@ -470,7 +470,7 @@ func (client LogAnalyticsClient) cancelQueryWorkRequest(ctx context.Context, req // ChangeIngestTimeRuleCompartment Moves the specified ingest time rule to a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ChangeIngestTimeRuleCompartment.go.html to see an example of how to use ChangeIngestTimeRuleCompartment API. // A default retry strategy applies to this operation ChangeIngestTimeRuleCompartment() @@ -535,7 +535,7 @@ func (client LogAnalyticsClient) changeIngestTimeRuleCompartment(ctx context.Con // ChangeLogAnalyticsEmBridgeCompartment Update the compartment of the log analytics enterprise manager bridge with the given id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ChangeLogAnalyticsEmBridgeCompartment.go.html to see an example of how to use ChangeLogAnalyticsEmBridgeCompartment API. // A default retry strategy applies to this operation ChangeLogAnalyticsEmBridgeCompartment() @@ -600,7 +600,7 @@ func (client LogAnalyticsClient) changeLogAnalyticsEmBridgeCompartment(ctx conte // ChangeLogAnalyticsEntityCompartment Update the compartment of the log analytics entity with the given id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ChangeLogAnalyticsEntityCompartment.go.html to see an example of how to use ChangeLogAnalyticsEntityCompartment API. // A default retry strategy applies to this operation ChangeLogAnalyticsEntityCompartment() @@ -665,7 +665,7 @@ func (client LogAnalyticsClient) changeLogAnalyticsEntityCompartment(ctx context // ChangeLogAnalyticsLogGroupCompartment Moves the specified log group to a different compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ChangeLogAnalyticsLogGroupCompartment.go.html to see an example of how to use ChangeLogAnalyticsLogGroupCompartment API. // A default retry strategy applies to this operation ChangeLogAnalyticsLogGroupCompartment() @@ -730,7 +730,7 @@ func (client LogAnalyticsClient) changeLogAnalyticsLogGroupCompartment(ctx conte // ChangeLogAnalyticsObjectCollectionRuleCompartment Move the rule from it's current compartment to the given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ChangeLogAnalyticsObjectCollectionRuleCompartment.go.html to see an example of how to use ChangeLogAnalyticsObjectCollectionRuleCompartment API. func (client LogAnalyticsClient) ChangeLogAnalyticsObjectCollectionRuleCompartment(ctx context.Context, request ChangeLogAnalyticsObjectCollectionRuleCompartmentRequest) (response ChangeLogAnalyticsObjectCollectionRuleCompartmentResponse, err error) { @@ -789,7 +789,7 @@ func (client LogAnalyticsClient) changeLogAnalyticsObjectCollectionRuleCompartme // ChangeScheduledTaskCompartment Move the scheduled task into a different compartment within the same tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ChangeScheduledTaskCompartment.go.html to see an example of how to use ChangeScheduledTaskCompartment API. func (client LogAnalyticsClient) ChangeScheduledTaskCompartment(ctx context.Context, request ChangeScheduledTaskCompartmentRequest) (response ChangeScheduledTaskCompartmentResponse, err error) { @@ -854,7 +854,7 @@ func (client LogAnalyticsClient) changeScheduledTaskCompartment(ctx context.Cont // Clean Clean accumulated acceleration data stored for the accelerated saved search. // The ScheduledTask taskType must be ACCELERATION. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/Clean.go.html to see an example of how to use Clean API. // A default retry strategy applies to this operation Clean() @@ -917,7 +917,7 @@ func (client LogAnalyticsClient) clean(ctx context.Context, request common.OCIRe // CompareContent Returns the difference between the two input payloads, including intraline differences. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/CompareContent.go.html to see an example of how to use CompareContent API. // A default retry strategy applies to this operation CompareContent() @@ -977,7 +977,7 @@ func (client LogAnalyticsClient) compareContent(ctx context.Context, request com // CreateIngestTimeRule Creates a new ingest time rule in the specified compartment. You may also specify optional information such as description, defined tags, and free-form tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/CreateIngestTimeRule.go.html to see an example of how to use CreateIngestTimeRule API. // A default retry strategy applies to this operation CreateIngestTimeRule() @@ -1042,7 +1042,7 @@ func (client LogAnalyticsClient) createIngestTimeRule(ctx context.Context, reque // CreateLogAnalyticsEmBridge Add configuration for enterprise manager bridge. Enterprise manager bridge is used to automatically add selected entities from enterprise manager cloud control. A corresponding OCI bridge configuration is required in enterprise manager. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/CreateLogAnalyticsEmBridge.go.html to see an example of how to use CreateLogAnalyticsEmBridge API. // A default retry strategy applies to this operation CreateLogAnalyticsEmBridge() @@ -1107,7 +1107,7 @@ func (client LogAnalyticsClient) createLogAnalyticsEmBridge(ctx context.Context, // CreateLogAnalyticsEntity Create a new log analytics entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/CreateLogAnalyticsEntity.go.html to see an example of how to use CreateLogAnalyticsEntity API. // A default retry strategy applies to this operation CreateLogAnalyticsEntity() @@ -1172,7 +1172,7 @@ func (client LogAnalyticsClient) createLogAnalyticsEntity(ctx context.Context, r // CreateLogAnalyticsEntityType Add custom log analytics entity type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/CreateLogAnalyticsEntityType.go.html to see an example of how to use CreateLogAnalyticsEntityType API. // A default retry strategy applies to this operation CreateLogAnalyticsEntityType() @@ -1237,7 +1237,7 @@ func (client LogAnalyticsClient) createLogAnalyticsEntityType(ctx context.Contex // CreateLogAnalyticsLogGroup Creates a new log group in the specified compartment with the input display name. You may also specify optional information such as description, defined tags, and free-form tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/CreateLogAnalyticsLogGroup.go.html to see an example of how to use CreateLogAnalyticsLogGroup API. // A default retry strategy applies to this operation CreateLogAnalyticsLogGroup() @@ -1302,7 +1302,7 @@ func (client LogAnalyticsClient) createLogAnalyticsLogGroup(ctx context.Context, // CreateLogAnalyticsObjectCollectionRule Creates a rule to collect logs from an object storage bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/CreateLogAnalyticsObjectCollectionRule.go.html to see an example of how to use CreateLogAnalyticsObjectCollectionRule API. func (client LogAnalyticsClient) CreateLogAnalyticsObjectCollectionRule(ctx context.Context, request CreateLogAnalyticsObjectCollectionRuleRequest) (response CreateLogAnalyticsObjectCollectionRuleResponse, err error) { @@ -1361,7 +1361,7 @@ func (client LogAnalyticsClient) createLogAnalyticsObjectCollectionRule(ctx cont // CreateScheduledTask Schedule a task as specified and return task info. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/CreateScheduledTask.go.html to see an example of how to use CreateScheduledTask API. func (client LogAnalyticsClient) CreateScheduledTask(ctx context.Context, request CreateScheduledTaskRequest) (response CreateScheduledTaskResponse, err error) { @@ -1425,7 +1425,7 @@ func (client LogAnalyticsClient) createScheduledTask(ctx context.Context, reques // DeleteAssociations Deletes the associations between the sources and entities specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteAssociations.go.html to see an example of how to use DeleteAssociations API. // A default retry strategy applies to this operation DeleteAssociations() @@ -1490,7 +1490,7 @@ func (client LogAnalyticsClient) deleteAssociations(ctx context.Context, request // DeleteField Deletes field with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteField.go.html to see an example of how to use DeleteField API. // A default retry strategy applies to this operation DeleteField() @@ -1553,7 +1553,7 @@ func (client LogAnalyticsClient) deleteField(ctx context.Context, request common // DeleteIngestTimeRule Deletes the specified ingest time rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteIngestTimeRule.go.html to see an example of how to use DeleteIngestTimeRule API. // A default retry strategy applies to this operation DeleteIngestTimeRule() @@ -1611,7 +1611,7 @@ func (client LogAnalyticsClient) deleteIngestTimeRule(ctx context.Context, reque // DeleteLabel Deletes label with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteLabel.go.html to see an example of how to use DeleteLabel API. // A default retry strategy applies to this operation DeleteLabel() @@ -1674,7 +1674,7 @@ func (client LogAnalyticsClient) deleteLabel(ctx context.Context, request common // DeleteLogAnalyticsEmBridge Delete log analytics enterprise manager bridge with the given id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteLogAnalyticsEmBridge.go.html to see an example of how to use DeleteLogAnalyticsEmBridge API. func (client LogAnalyticsClient) DeleteLogAnalyticsEmBridge(ctx context.Context, request DeleteLogAnalyticsEmBridgeRequest) (response DeleteLogAnalyticsEmBridgeResponse, err error) { @@ -1731,7 +1731,7 @@ func (client LogAnalyticsClient) deleteLogAnalyticsEmBridge(ctx context.Context, // DeleteLogAnalyticsEntity Delete log analytics entity with the given id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteLogAnalyticsEntity.go.html to see an example of how to use DeleteLogAnalyticsEntity API. func (client LogAnalyticsClient) DeleteLogAnalyticsEntity(ctx context.Context, request DeleteLogAnalyticsEntityRequest) (response DeleteLogAnalyticsEntityResponse, err error) { @@ -1788,7 +1788,7 @@ func (client LogAnalyticsClient) deleteLogAnalyticsEntity(ctx context.Context, r // DeleteLogAnalyticsEntityType Delete log analytics entity type with the given name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteLogAnalyticsEntityType.go.html to see an example of how to use DeleteLogAnalyticsEntityType API. func (client LogAnalyticsClient) DeleteLogAnalyticsEntityType(ctx context.Context, request DeleteLogAnalyticsEntityTypeRequest) (response DeleteLogAnalyticsEntityTypeResponse, err error) { @@ -1845,7 +1845,7 @@ func (client LogAnalyticsClient) deleteLogAnalyticsEntityType(ctx context.Contex // DeleteLogAnalyticsLogGroup Deletes the specified log group. The log group cannot be part of an active association or have an active upload. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteLogAnalyticsLogGroup.go.html to see an example of how to use DeleteLogAnalyticsLogGroup API. // A default retry strategy applies to this operation DeleteLogAnalyticsLogGroup() @@ -1904,7 +1904,7 @@ func (client LogAnalyticsClient) deleteLogAnalyticsLogGroup(ctx context.Context, // DeleteLogAnalyticsObjectCollectionRule Deletes the configured object storage bucket based collection rule and stop the log collection. // It will not delete the existing processed data associated with this bucket from logging analytics storage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteLogAnalyticsObjectCollectionRule.go.html to see an example of how to use DeleteLogAnalyticsObjectCollectionRule API. func (client LogAnalyticsClient) DeleteLogAnalyticsObjectCollectionRule(ctx context.Context, request DeleteLogAnalyticsObjectCollectionRuleRequest) (response DeleteLogAnalyticsObjectCollectionRuleResponse, err error) { @@ -1961,7 +1961,7 @@ func (client LogAnalyticsClient) deleteLogAnalyticsObjectCollectionRule(ctx cont // DeleteLookup Deletes lookup with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteLookup.go.html to see an example of how to use DeleteLookup API. // A default retry strategy applies to this operation DeleteLookup() @@ -2024,7 +2024,7 @@ func (client LogAnalyticsClient) deleteLookup(ctx context.Context, request commo // DeleteParser Deletes parser with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteParser.go.html to see an example of how to use DeleteParser API. // A default retry strategy applies to this operation DeleteParser() @@ -2087,7 +2087,7 @@ func (client LogAnalyticsClient) deleteParser(ctx context.Context, request commo // DeleteScheduledTask Delete the scheduled task. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteScheduledTask.go.html to see an example of how to use DeleteScheduledTask API. // A default retry strategy applies to this operation DeleteScheduledTask() @@ -2145,7 +2145,7 @@ func (client LogAnalyticsClient) deleteScheduledTask(ctx context.Context, reques // DeleteSource Deletes source with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteSource.go.html to see an example of how to use DeleteSource API. // A default retry strategy applies to this operation DeleteSource() @@ -2209,7 +2209,7 @@ func (client LogAnalyticsClient) deleteSource(ctx context.Context, request commo // DeleteUpload Deletes an Upload by its reference. // It deletes all the logs in storage asscoiated with the upload and the corresponding upload metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteUpload.go.html to see an example of how to use DeleteUpload API. func (client LogAnalyticsClient) DeleteUpload(ctx context.Context, request DeleteUploadRequest) (response DeleteUploadResponse, err error) { @@ -2267,7 +2267,7 @@ func (client LogAnalyticsClient) deleteUpload(ctx context.Context, request commo // DeleteUploadFile Deletes a specific log file inside an upload by upload file reference. // It deletes all the logs from storage associated with the file and the corresponding metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteUploadFile.go.html to see an example of how to use DeleteUploadFile API. func (client LogAnalyticsClient) DeleteUploadFile(ctx context.Context, request DeleteUploadFileRequest) (response DeleteUploadFileResponse, err error) { @@ -2324,7 +2324,7 @@ func (client LogAnalyticsClient) deleteUploadFile(ctx context.Context, request c // DeleteUploadWarning Suppresses a specific warning inside an upload. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DeleteUploadWarning.go.html to see an example of how to use DeleteUploadWarning API. func (client LogAnalyticsClient) DeleteUploadWarning(ctx context.Context, request DeleteUploadWarningRequest) (response DeleteUploadWarningResponse, err error) { @@ -2381,7 +2381,7 @@ func (client LogAnalyticsClient) deleteUploadWarning(ctx context.Context, reques // DisableArchiving This API disables archiving. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DisableArchiving.go.html to see an example of how to use DisableArchiving API. // A default retry strategy applies to this operation DisableArchiving() @@ -2441,7 +2441,7 @@ func (client LogAnalyticsClient) disableArchiving(ctx context.Context, request c // associated with any entity that becomes eligible for association. In addition, you may also optionally // remove all existing associations for this log source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DisableAutoAssociation.go.html to see an example of how to use DisableAutoAssociation API. // A default retry strategy applies to this operation DisableAutoAssociation() @@ -2506,7 +2506,7 @@ func (client LogAnalyticsClient) disableAutoAssociation(ctx context.Context, req // DisableIngestTimeRule Disables the specified ingest time rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DisableIngestTimeRule.go.html to see an example of how to use DisableIngestTimeRule API. // A default retry strategy applies to this operation DisableIngestTimeRule() @@ -2564,7 +2564,7 @@ func (client LogAnalyticsClient) disableIngestTimeRule(ctx context.Context, requ // DisableSourceEventTypes Disable one or more event types in a source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/DisableSourceEventTypes.go.html to see an example of how to use DisableSourceEventTypes API. // A default retry strategy applies to this operation DisableSourceEventTypes() @@ -2629,7 +2629,7 @@ func (client LogAnalyticsClient) disableSourceEventTypes(ctx context.Context, re // EnableArchiving THis API enables archiving. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/EnableArchiving.go.html to see an example of how to use EnableArchiving API. // A default retry strategy applies to this operation EnableArchiving() @@ -2689,7 +2689,7 @@ func (client LogAnalyticsClient) enableArchiving(ctx context.Context, request co // to any eligible entities it is not already associated with, and would also ensure the log source gets // associated with entities that are added or become eligible in the future. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/EnableAutoAssociation.go.html to see an example of how to use EnableAutoAssociation API. // A default retry strategy applies to this operation EnableAutoAssociation() @@ -2754,7 +2754,7 @@ func (client LogAnalyticsClient) enableAutoAssociation(ctx context.Context, requ // EnableIngestTimeRule Enables the specified ingest time rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/EnableIngestTimeRule.go.html to see an example of how to use EnableIngestTimeRule API. // A default retry strategy applies to this operation EnableIngestTimeRule() @@ -2812,7 +2812,7 @@ func (client LogAnalyticsClient) enableIngestTimeRule(ctx context.Context, reque // EnableSourceEventTypes Enable one or more event types in a source. An event type and version can be enabled only in one source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/EnableSourceEventTypes.go.html to see an example of how to use EnableSourceEventTypes API. // A default retry strategy applies to this operation EnableSourceEventTypes() @@ -2877,7 +2877,7 @@ func (client LogAnalyticsClient) enableSourceEventTypes(ctx context.Context, req // EstimatePurgeDataSize This API estimates the size of data to be purged based based on time interval, purge query etc. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/EstimatePurgeDataSize.go.html to see an example of how to use EstimatePurgeDataSize API. // A default retry strategy applies to this operation EstimatePurgeDataSize() @@ -2942,7 +2942,7 @@ func (client LogAnalyticsClient) estimatePurgeDataSize(ctx context.Context, requ // EstimateRecallDataSize This API gives an active storage usage estimate for archived data to be recalled and the time range of such data. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/EstimateRecallDataSize.go.html to see an example of how to use EstimateRecallDataSize API. // A default retry strategy applies to this operation EstimateRecallDataSize() @@ -3002,7 +3002,7 @@ func (client LogAnalyticsClient) estimateRecallDataSize(ctx context.Context, req // EstimateReleaseDataSize This API gives an active storage usage estimate for recalled data to be released and the time range of such data. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/EstimateReleaseDataSize.go.html to see an example of how to use EstimateReleaseDataSize API. // A default retry strategy applies to this operation EstimateReleaseDataSize() @@ -3062,7 +3062,7 @@ func (client LogAnalyticsClient) estimateReleaseDataSize(ctx context.Context, re // ExportCustomContent Exports all custom details of the specified sources, parsers, fields and labels, in zip format. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ExportCustomContent.go.html to see an example of how to use ExportCustomContent API. // A default retry strategy applies to this operation ExportCustomContent() @@ -3126,7 +3126,7 @@ func (client LogAnalyticsClient) exportCustomContent(ctx context.Context, reques // ExportQueryResult Export data based on query. Endpoint returns a stream of data. Endpoint is synchronous. Queries must deliver first result within 60 seconds or calls are subject to timeout. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ExportQueryResult.go.html to see an example of how to use ExportQueryResult API. // A default retry strategy applies to this operation ExportQueryResult() @@ -3185,7 +3185,7 @@ func (client LogAnalyticsClient) exportQueryResult(ctx context.Context, request // ExtractStructuredLogFieldPaths Extracts the field paths from the example json or xml content. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ExtractStructuredLogFieldPaths.go.html to see an example of how to use ExtractStructuredLogFieldPaths API. // A default retry strategy applies to this operation ExtractStructuredLogFieldPaths() @@ -3250,7 +3250,7 @@ func (client LogAnalyticsClient) extractStructuredLogFieldPaths(ctx context.Cont // ExtractStructuredLogHeaderPaths Extracts the header paths from the example json or xml content. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ExtractStructuredLogHeaderPaths.go.html to see an example of how to use ExtractStructuredLogHeaderPaths API. // A default retry strategy applies to this operation ExtractStructuredLogHeaderPaths() @@ -3315,7 +3315,7 @@ func (client LogAnalyticsClient) extractStructuredLogHeaderPaths(ctx context.Con // Filter Each filter specifies an operator, a field and one or more values to be inserted into the provided query as criteria. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/Filter.go.html to see an example of how to use Filter API. // A default retry strategy applies to this operation Filter() @@ -3375,7 +3375,7 @@ func (client LogAnalyticsClient) filter(ctx context.Context, request common.OCIR // GetAssociationSummary Returns the count of source associations for entities in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetAssociationSummary.go.html to see an example of how to use GetAssociationSummary API. // A default retry strategy applies to this operation GetAssociationSummary() @@ -3433,7 +3433,7 @@ func (client LogAnalyticsClient) getAssociationSummary(ctx context.Context, requ // GetCategory Gets detailed information about the category with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetCategory.go.html to see an example of how to use GetCategory API. // A default retry strategy applies to this operation GetCategory() @@ -3491,7 +3491,7 @@ func (client LogAnalyticsClient) getCategory(ctx context.Context, request common // GetColumnNames Extracts column names from the input SQL query. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetColumnNames.go.html to see an example of how to use GetColumnNames API. // A default retry strategy applies to this operation GetColumnNames() @@ -3554,7 +3554,7 @@ func (client LogAnalyticsClient) getColumnNames(ctx context.Context, request com // GetConfigWorkRequest Returns detailed information about the configuration work request with the specified id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetConfigWorkRequest.go.html to see an example of how to use GetConfigWorkRequest API. // A default retry strategy applies to this operation GetConfigWorkRequest() @@ -3612,7 +3612,7 @@ func (client LogAnalyticsClient) getConfigWorkRequest(ctx context.Context, reque // GetField Gets detailed information about the field with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetField.go.html to see an example of how to use GetField API. // A default retry strategy applies to this operation GetField() @@ -3670,7 +3670,7 @@ func (client LogAnalyticsClient) getField(ctx context.Context, request common.OC // GetFieldsSummary Returns the count of fields. You may optionally specify isShowDetail=true to view a summary of each field data type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetFieldsSummary.go.html to see an example of how to use GetFieldsSummary API. // A default retry strategy applies to this operation GetFieldsSummary() @@ -3728,7 +3728,7 @@ func (client LogAnalyticsClient) getFieldsSummary(ctx context.Context, request c // GetIngestTimeRule Gets detailed information about the specified ingest time rule such as description, defined tags, and free-form tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetIngestTimeRule.go.html to see an example of how to use GetIngestTimeRule API. // A default retry strategy applies to this operation GetIngestTimeRule() @@ -3786,7 +3786,7 @@ func (client LogAnalyticsClient) getIngestTimeRule(ctx context.Context, request // GetLabel Gets detailed information about the label with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLabel.go.html to see an example of how to use GetLabel API. // A default retry strategy applies to this operation GetLabel() @@ -3844,7 +3844,7 @@ func (client LogAnalyticsClient) getLabel(ctx context.Context, request common.OC // GetLabelSummary Returns the count of labels. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLabelSummary.go.html to see an example of how to use GetLabelSummary API. // A default retry strategy applies to this operation GetLabelSummary() @@ -3902,7 +3902,7 @@ func (client LogAnalyticsClient) getLabelSummary(ctx context.Context, request co // GetLogAnalyticsEmBridge Retrieve the log analytics enterprise manager bridge with the given id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLogAnalyticsEmBridge.go.html to see an example of how to use GetLogAnalyticsEmBridge API. func (client LogAnalyticsClient) GetLogAnalyticsEmBridge(ctx context.Context, request GetLogAnalyticsEmBridgeRequest) (response GetLogAnalyticsEmBridgeResponse, err error) { @@ -3959,7 +3959,7 @@ func (client LogAnalyticsClient) getLogAnalyticsEmBridge(ctx context.Context, re // GetLogAnalyticsEmBridgeSummary Returns log analytics enterprise manager bridges summary report. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLogAnalyticsEmBridgeSummary.go.html to see an example of how to use GetLogAnalyticsEmBridgeSummary API. func (client LogAnalyticsClient) GetLogAnalyticsEmBridgeSummary(ctx context.Context, request GetLogAnalyticsEmBridgeSummaryRequest) (response GetLogAnalyticsEmBridgeSummaryResponse, err error) { @@ -4016,7 +4016,7 @@ func (client LogAnalyticsClient) getLogAnalyticsEmBridgeSummary(ctx context.Cont // GetLogAnalyticsEntitiesSummary Returns log analytics entities count summary report. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLogAnalyticsEntitiesSummary.go.html to see an example of how to use GetLogAnalyticsEntitiesSummary API. func (client LogAnalyticsClient) GetLogAnalyticsEntitiesSummary(ctx context.Context, request GetLogAnalyticsEntitiesSummaryRequest) (response GetLogAnalyticsEntitiesSummaryResponse, err error) { @@ -4073,7 +4073,7 @@ func (client LogAnalyticsClient) getLogAnalyticsEntitiesSummary(ctx context.Cont // GetLogAnalyticsEntity Retrieve the log analytics entity with the given id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLogAnalyticsEntity.go.html to see an example of how to use GetLogAnalyticsEntity API. func (client LogAnalyticsClient) GetLogAnalyticsEntity(ctx context.Context, request GetLogAnalyticsEntityRequest) (response GetLogAnalyticsEntityResponse, err error) { @@ -4130,7 +4130,7 @@ func (client LogAnalyticsClient) getLogAnalyticsEntity(ctx context.Context, requ // GetLogAnalyticsEntityType Retrieve the log analytics entity type with the given name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLogAnalyticsEntityType.go.html to see an example of how to use GetLogAnalyticsEntityType API. func (client LogAnalyticsClient) GetLogAnalyticsEntityType(ctx context.Context, request GetLogAnalyticsEntityTypeRequest) (response GetLogAnalyticsEntityTypeResponse, err error) { @@ -4187,7 +4187,7 @@ func (client LogAnalyticsClient) getLogAnalyticsEntityType(ctx context.Context, // GetLogAnalyticsLogGroup Gets detailed information about the specified log group such as display name, description, defined tags, and free-form tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLogAnalyticsLogGroup.go.html to see an example of how to use GetLogAnalyticsLogGroup API. // A default retry strategy applies to this operation GetLogAnalyticsLogGroup() @@ -4245,7 +4245,7 @@ func (client LogAnalyticsClient) getLogAnalyticsLogGroup(ctx context.Context, re // GetLogAnalyticsLogGroupsSummary Returns the count of log groups in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLogAnalyticsLogGroupsSummary.go.html to see an example of how to use GetLogAnalyticsLogGroupsSummary API. // A default retry strategy applies to this operation GetLogAnalyticsLogGroupsSummary() @@ -4303,7 +4303,7 @@ func (client LogAnalyticsClient) getLogAnalyticsLogGroupsSummary(ctx context.Con // GetLogAnalyticsObjectCollectionRule Gets a configured object storage based collection rule by given id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLogAnalyticsObjectCollectionRule.go.html to see an example of how to use GetLogAnalyticsObjectCollectionRule API. // A default retry strategy applies to this operation GetLogAnalyticsObjectCollectionRule() @@ -4361,7 +4361,7 @@ func (client LogAnalyticsClient) getLogAnalyticsObjectCollectionRule(ctx context // GetLogSetsCount This API returns the count of distinct log sets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLogSetsCount.go.html to see an example of how to use GetLogSetsCount API. // A default retry strategy applies to this operation GetLogSetsCount() @@ -4419,7 +4419,7 @@ func (client LogAnalyticsClient) getLogSetsCount(ctx context.Context, request co // GetLookup Gets detailed information about the lookup with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLookup.go.html to see an example of how to use GetLookup API. // A default retry strategy applies to this operation GetLookup() @@ -4477,7 +4477,7 @@ func (client LogAnalyticsClient) getLookup(ctx context.Context, request common.O // GetLookupSummary Returns the count of user created and oracle defined lookups. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetLookupSummary.go.html to see an example of how to use GetLookupSummary API. // A default retry strategy applies to this operation GetLookupSummary() @@ -4535,7 +4535,7 @@ func (client LogAnalyticsClient) getLookupSummary(ctx context.Context, request c // GetNamespace This API gets the namespace details of a tenancy already onboarded in Logging Analytics Application // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetNamespace.go.html to see an example of how to use GetNamespace API. // A default retry strategy applies to this operation GetNamespace() @@ -4593,7 +4593,7 @@ func (client LogAnalyticsClient) getNamespace(ctx context.Context, request commo // GetParser Gets detailed information about the parser with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetParser.go.html to see an example of how to use GetParser API. // A default retry strategy applies to this operation GetParser() @@ -4651,7 +4651,7 @@ func (client LogAnalyticsClient) getParser(ctx context.Context, request common.O // GetParserSummary Returns the count of parsers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetParserSummary.go.html to see an example of how to use GetParserSummary API. // A default retry strategy applies to this operation GetParserSummary() @@ -4709,7 +4709,7 @@ func (client LogAnalyticsClient) getParserSummary(ctx context.Context, request c // GetPreferences Lists the tenant preferences such as DEFAULT_HOMEPAGE and collection properties. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetPreferences.go.html to see an example of how to use GetPreferences API. // A default retry strategy applies to this operation GetPreferences() @@ -4768,7 +4768,7 @@ func (client LogAnalyticsClient) getPreferences(ctx context.Context, request com // GetQueryResult Returns the intermediate results for a query that was specified to run asynchronously if the query has not completed, // otherwise the final query results identified by a queryWorkRequestId returned when submitting the query execute asynchronously. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetQueryResult.go.html to see an example of how to use GetQueryResult API. // A default retry strategy applies to this operation GetQueryResult() @@ -4826,7 +4826,7 @@ func (client LogAnalyticsClient) getQueryResult(ctx context.Context, request com // GetQueryWorkRequest Retrieve work request details by workRequestId. This endpoint can be polled for status tracking of work request. Clients should poll using the interval returned in the retry-after header. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetQueryWorkRequest.go.html to see an example of how to use GetQueryWorkRequest API. // A default retry strategy applies to this operation GetQueryWorkRequest() @@ -4884,7 +4884,7 @@ func (client LogAnalyticsClient) getQueryWorkRequest(ctx context.Context, reques // GetRecallCount This API gets the number of recalls made and the maximum recalls that can be made // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetRecallCount.go.html to see an example of how to use GetRecallCount API. // A default retry strategy applies to this operation GetRecallCount() @@ -4942,7 +4942,7 @@ func (client LogAnalyticsClient) getRecallCount(ctx context.Context, request com // GetRecalledDataSize This API gets the datasize of recalls for a given timeframe // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetRecalledDataSize.go.html to see an example of how to use GetRecalledDataSize API. // A default retry strategy applies to this operation GetRecalledDataSize() @@ -5000,7 +5000,7 @@ func (client LogAnalyticsClient) getRecalledDataSize(ctx context.Context, reques // GetRulesSummary Returns the count of detection rules in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetRulesSummary.go.html to see an example of how to use GetRulesSummary API. // A default retry strategy applies to this operation GetRulesSummary() @@ -5058,7 +5058,7 @@ func (client LogAnalyticsClient) getRulesSummary(ctx context.Context, request co // GetScheduledTask Get the scheduled task for the specified task identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetScheduledTask.go.html to see an example of how to use GetScheduledTask API. // A default retry strategy applies to this operation GetScheduledTask() @@ -5116,7 +5116,7 @@ func (client LogAnalyticsClient) getScheduledTask(ctx context.Context, request c // GetSource Gets detailed information about the source with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetSource.go.html to see an example of how to use GetSource API. // A default retry strategy applies to this operation GetSource() @@ -5174,7 +5174,7 @@ func (client LogAnalyticsClient) getSource(ctx context.Context, request common.O // GetSourceSummary Returns the count of sources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetSourceSummary.go.html to see an example of how to use GetSourceSummary API. // A default retry strategy applies to this operation GetSourceSummary() @@ -5232,7 +5232,7 @@ func (client LogAnalyticsClient) getSourceSummary(ctx context.Context, request c // GetStorage This API gets the storage configuration of a tenancy // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetStorage.go.html to see an example of how to use GetStorage API. // A default retry strategy applies to this operation GetStorage() @@ -5291,7 +5291,7 @@ func (client LogAnalyticsClient) getStorage(ctx context.Context, request common. // GetStorageUsage This API gets storage usage information of a tenancy. Storage usage information includes active, archived or recalled // data. The unit of return data is in bytes. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetStorageUsage.go.html to see an example of how to use GetStorageUsage API. // A default retry strategy applies to this operation GetStorageUsage() @@ -5350,7 +5350,7 @@ func (client LogAnalyticsClient) getStorageUsage(ctx context.Context, request co // GetStorageWorkRequest This API returns work request details specified by {workRequestId}. This API can be polled for status tracking of // work request. Clients should poll using the interval returned in retry-after header. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetStorageWorkRequest.go.html to see an example of how to use GetStorageWorkRequest API. // A default retry strategy applies to this operation GetStorageWorkRequest() @@ -5408,7 +5408,7 @@ func (client LogAnalyticsClient) getStorageWorkRequest(ctx context.Context, requ // GetUnprocessedDataBucket This API retrieves details of the configured bucket that stores unprocessed payloads. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetUnprocessedDataBucket.go.html to see an example of how to use GetUnprocessedDataBucket API. // A default retry strategy applies to this operation GetUnprocessedDataBucket() @@ -5466,7 +5466,7 @@ func (client LogAnalyticsClient) getUnprocessedDataBucket(ctx context.Context, r // GetUpload Gets an On-Demand Upload info by reference. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetUpload.go.html to see an example of how to use GetUpload API. // A default retry strategy applies to this operation GetUpload() @@ -5524,7 +5524,7 @@ func (client LogAnalyticsClient) getUpload(ctx context.Context, request common.O // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client LogAnalyticsClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -5581,7 +5581,7 @@ func (client LogAnalyticsClient) getWorkRequest(ctx context.Context, request com // ImportCustomContent Imports the specified custom content from the input in zip format. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ImportCustomContent.go.html to see an example of how to use ImportCustomContent API. // A default retry strategy applies to this operation ImportCustomContent() @@ -5646,7 +5646,7 @@ func (client LogAnalyticsClient) importCustomContent(ctx context.Context, reques // ListAssociableEntities Lists the entities in the specified compartment which are (in)eligible for association with this source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListAssociableEntities.go.html to see an example of how to use ListAssociableEntities API. // A default retry strategy applies to this operation ListAssociableEntities() @@ -5704,7 +5704,7 @@ func (client LogAnalyticsClient) listAssociableEntities(ctx context.Context, req // ListAssociatedEntities Lists the association details of entities in the specified compartment that are associated with at least one source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListAssociatedEntities.go.html to see an example of how to use ListAssociatedEntities API. // A default retry strategy applies to this operation ListAssociatedEntities() @@ -5762,7 +5762,7 @@ func (client LogAnalyticsClient) listAssociatedEntities(ctx context.Context, req // ListAutoAssociations Gets information related to auto association for the source with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListAutoAssociations.go.html to see an example of how to use ListAutoAssociations API. // A default retry strategy applies to this operation ListAutoAssociations() @@ -5820,7 +5820,7 @@ func (client LogAnalyticsClient) listAutoAssociations(ctx context.Context, reque // ListCategories Returns a list of categories, containing detailed information about them. You may limit the number of results, provide sorting order, and filter by information such as category name or description. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListCategories.go.html to see an example of how to use ListCategories API. // A default retry strategy applies to this operation ListCategories() @@ -5878,7 +5878,7 @@ func (client LogAnalyticsClient) listCategories(ctx context.Context, request com // ListConfigWorkRequests Returns the list of configuration work requests such as association or lookup operations, containing detailed information about them. You may paginate or limit the number of results. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListConfigWorkRequests.go.html to see an example of how to use ListConfigWorkRequests API. // A default retry strategy applies to this operation ListConfigWorkRequests() @@ -5936,7 +5936,7 @@ func (client LogAnalyticsClient) listConfigWorkRequests(ctx context.Context, req // ListEffectiveProperties Returns a list of effective properties for the specified resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListEffectiveProperties.go.html to see an example of how to use ListEffectiveProperties API. // A default retry strategy applies to this operation ListEffectiveProperties() @@ -5994,7 +5994,7 @@ func (client LogAnalyticsClient) listEffectiveProperties(ctx context.Context, re // ListEncryptionKeyInfo This API returns the list of customer owned encryption key info. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListEncryptionKeyInfo.go.html to see an example of how to use ListEncryptionKeyInfo API. // A default retry strategy applies to this operation ListEncryptionKeyInfo() @@ -6052,7 +6052,7 @@ func (client LogAnalyticsClient) listEncryptionKeyInfo(ctx context.Context, requ // ListEntityAssociations Return a list of log analytics entities associated with input source log analytics entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListEntityAssociations.go.html to see an example of how to use ListEntityAssociations API. func (client LogAnalyticsClient) ListEntityAssociations(ctx context.Context, request ListEntityAssociationsRequest) (response ListEntityAssociationsResponse, err error) { @@ -6109,7 +6109,7 @@ func (client LogAnalyticsClient) listEntityAssociations(ctx context.Context, req // ListEntitySourceAssociations Returns the list of source associations for the specified entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListEntitySourceAssociations.go.html to see an example of how to use ListEntitySourceAssociations API. // A default retry strategy applies to this operation ListEntitySourceAssociations() @@ -6167,7 +6167,7 @@ func (client LogAnalyticsClient) listEntitySourceAssociations(ctx context.Contex // ListFields Returns a list of log fields, containing detailed information about them. You may limit the number of results, provide sorting order, and filter by specifying various options including parser and source names. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListFields.go.html to see an example of how to use ListFields API. // A default retry strategy applies to this operation ListFields() @@ -6225,7 +6225,7 @@ func (client LogAnalyticsClient) listFields(ctx context.Context, request common. // ListIngestTimeRules Returns a list of ingest time rules in a compartment. You may limit the number of rules, provide sorting options, and filter the results. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListIngestTimeRules.go.html to see an example of how to use ListIngestTimeRules API. // A default retry strategy applies to this operation ListIngestTimeRules() @@ -6283,7 +6283,7 @@ func (client LogAnalyticsClient) listIngestTimeRules(ctx context.Context, reques // ListLabelPriorities Lists the available problem priorities that could be associated with a label. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLabelPriorities.go.html to see an example of how to use ListLabelPriorities API. // A default retry strategy applies to this operation ListLabelPriorities() @@ -6341,7 +6341,7 @@ func (client LogAnalyticsClient) listLabelPriorities(ctx context.Context, reques // ListLabelSourceDetails Lists sources using the label, along with configuration details like base field, operator and condition. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLabelSourceDetails.go.html to see an example of how to use ListLabelSourceDetails API. // A default retry strategy applies to this operation ListLabelSourceDetails() @@ -6399,7 +6399,7 @@ func (client LogAnalyticsClient) listLabelSourceDetails(ctx context.Context, req // ListLabels Returns a list of labels, containing detailed information about them. You may limit the number of results, provide sorting order, and filter by information such as label name, display name, description and priority. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLabels.go.html to see an example of how to use ListLabels API. // A default retry strategy applies to this operation ListLabels() @@ -6457,7 +6457,7 @@ func (client LogAnalyticsClient) listLabels(ctx context.Context, request common. // ListLogAnalyticsEmBridges Return a list of log analytics enterprise manager bridges. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLogAnalyticsEmBridges.go.html to see an example of how to use ListLogAnalyticsEmBridges API. func (client LogAnalyticsClient) ListLogAnalyticsEmBridges(ctx context.Context, request ListLogAnalyticsEmBridgesRequest) (response ListLogAnalyticsEmBridgesResponse, err error) { @@ -6514,7 +6514,7 @@ func (client LogAnalyticsClient) listLogAnalyticsEmBridges(ctx context.Context, // ListLogAnalyticsEntities Return a list of log analytics entities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLogAnalyticsEntities.go.html to see an example of how to use ListLogAnalyticsEntities API. func (client LogAnalyticsClient) ListLogAnalyticsEntities(ctx context.Context, request ListLogAnalyticsEntitiesRequest) (response ListLogAnalyticsEntitiesResponse, err error) { @@ -6571,7 +6571,7 @@ func (client LogAnalyticsClient) listLogAnalyticsEntities(ctx context.Context, r // ListLogAnalyticsEntityTopology Return a log analytics entity topology collection that contains a set of log analytics entities and a set of relationships between those, for the input source entity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLogAnalyticsEntityTopology.go.html to see an example of how to use ListLogAnalyticsEntityTopology API. func (client LogAnalyticsClient) ListLogAnalyticsEntityTopology(ctx context.Context, request ListLogAnalyticsEntityTopologyRequest) (response ListLogAnalyticsEntityTopologyResponse, err error) { @@ -6628,7 +6628,7 @@ func (client LogAnalyticsClient) listLogAnalyticsEntityTopology(ctx context.Cont // ListLogAnalyticsEntityTypes Return a list of log analytics entity types. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLogAnalyticsEntityTypes.go.html to see an example of how to use ListLogAnalyticsEntityTypes API. func (client LogAnalyticsClient) ListLogAnalyticsEntityTypes(ctx context.Context, request ListLogAnalyticsEntityTypesRequest) (response ListLogAnalyticsEntityTypesResponse, err error) { @@ -6685,7 +6685,7 @@ func (client LogAnalyticsClient) listLogAnalyticsEntityTypes(ctx context.Context // ListLogAnalyticsLogGroups Returns a list of log groups in a compartment. You may limit the number of log groups, provide sorting options, and filter the results by specifying a display name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLogAnalyticsLogGroups.go.html to see an example of how to use ListLogAnalyticsLogGroups API. // A default retry strategy applies to this operation ListLogAnalyticsLogGroups() @@ -6743,7 +6743,7 @@ func (client LogAnalyticsClient) listLogAnalyticsLogGroups(ctx context.Context, // ListLogAnalyticsObjectCollectionRules Gets list of collection rules. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLogAnalyticsObjectCollectionRules.go.html to see an example of how to use ListLogAnalyticsObjectCollectionRules API. // A default retry strategy applies to this operation ListLogAnalyticsObjectCollectionRules() @@ -6801,7 +6801,7 @@ func (client LogAnalyticsClient) listLogAnalyticsObjectCollectionRules(ctx conte // ListLogSets This API returns a list of log sets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLogSets.go.html to see an example of how to use ListLogSets API. // A default retry strategy applies to this operation ListLogSets() @@ -6859,7 +6859,7 @@ func (client LogAnalyticsClient) listLogSets(ctx context.Context, request common // ListLookups Returns a list of lookups, containing detailed information about them. You may limit the number of results, provide sorting order, and filter by information such as lookup name, description and type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListLookups.go.html to see an example of how to use ListLookups API. // A default retry strategy applies to this operation ListLookups() @@ -6917,7 +6917,7 @@ func (client LogAnalyticsClient) listLookups(ctx context.Context, request common // ListMetaSourceTypes Lists the types of log sources supported. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListMetaSourceTypes.go.html to see an example of how to use ListMetaSourceTypes API. // A default retry strategy applies to this operation ListMetaSourceTypes() @@ -6976,7 +6976,7 @@ func (client LogAnalyticsClient) listMetaSourceTypes(ctx context.Context, reques // ListNamespaces Given a tenancy OCID, this API returns the namespace of the tenancy if it is valid and subscribed to the region. The // result also indicates if the tenancy is onboarded with Logging Analytics. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListNamespaces.go.html to see an example of how to use ListNamespaces API. // A default retry strategy applies to this operation ListNamespaces() @@ -7034,7 +7034,7 @@ func (client LogAnalyticsClient) listNamespaces(ctx context.Context, request com // ListOverlappingRecalls This API gets the list of overlapping recalls made in the given timeframe // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListOverlappingRecalls.go.html to see an example of how to use ListOverlappingRecalls API. // A default retry strategy applies to this operation ListOverlappingRecalls() @@ -7092,7 +7092,7 @@ func (client LogAnalyticsClient) listOverlappingRecalls(ctx context.Context, req // ListParserFunctions Lists the parser functions defined for the specified parser. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListParserFunctions.go.html to see an example of how to use ListParserFunctions API. // A default retry strategy applies to this operation ListParserFunctions() @@ -7150,7 +7150,7 @@ func (client LogAnalyticsClient) listParserFunctions(ctx context.Context, reques // ListParserMetaPlugins Lists the parser meta plugins available for defining parser functions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListParserMetaPlugins.go.html to see an example of how to use ListParserMetaPlugins API. // A default retry strategy applies to this operation ListParserMetaPlugins() @@ -7208,7 +7208,7 @@ func (client LogAnalyticsClient) listParserMetaPlugins(ctx context.Context, requ // ListParsers Returns a list of parsers, containing detailed information about them. You may limit the number of results, provide sorting order, and filter by information such as parser name, type, display name and description. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListParsers.go.html to see an example of how to use ListParsers API. // A default retry strategy applies to this operation ListParsers() @@ -7266,7 +7266,7 @@ func (client LogAnalyticsClient) listParsers(ctx context.Context, request common // ListPropertiesMetadata Returns a list of properties along with their metadata. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListPropertiesMetadata.go.html to see an example of how to use ListPropertiesMetadata API. // A default retry strategy applies to this operation ListPropertiesMetadata() @@ -7324,7 +7324,7 @@ func (client LogAnalyticsClient) listPropertiesMetadata(ctx context.Context, req // ListQueryWorkRequests List active asynchronous queries. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListQueryWorkRequests.go.html to see an example of how to use ListQueryWorkRequests API. // A default retry strategy applies to this operation ListQueryWorkRequests() @@ -7382,7 +7382,7 @@ func (client LogAnalyticsClient) listQueryWorkRequests(ctx context.Context, requ // ListRecalledData This API returns the list of recalled data of a tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListRecalledData.go.html to see an example of how to use ListRecalledData API. // A default retry strategy applies to this operation ListRecalledData() @@ -7441,7 +7441,7 @@ func (client LogAnalyticsClient) listRecalledData(ctx context.Context, request c // ListResourceCategories Returns a list of resources and their category assignments. // You may limit the number of results, provide sorting order, and filter by information such as resource type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListResourceCategories.go.html to see an example of how to use ListResourceCategories API. // A default retry strategy applies to this operation ListResourceCategories() @@ -7499,7 +7499,7 @@ func (client LogAnalyticsClient) listResourceCategories(ctx context.Context, req // ListRules Returns a list of ingest time rules and scheduled tasks in a compartment. You may limit the number of items returned, provide sorting options, and filter the results. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListRules.go.html to see an example of how to use ListRules API. // A default retry strategy applies to this operation ListRules() @@ -7557,7 +7557,7 @@ func (client LogAnalyticsClient) listRules(ctx context.Context, request common.O // ListScheduledTasks Lists scheduled tasks. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListScheduledTasks.go.html to see an example of how to use ListScheduledTasks API. // A default retry strategy applies to this operation ListScheduledTasks() @@ -7615,7 +7615,7 @@ func (client LogAnalyticsClient) listScheduledTasks(ctx context.Context, request // ListSourceAssociations Returns the list of entity associations in the input compartment for the specified source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListSourceAssociations.go.html to see an example of how to use ListSourceAssociations API. // A default retry strategy applies to this operation ListSourceAssociations() @@ -7673,7 +7673,7 @@ func (client LogAnalyticsClient) listSourceAssociations(ctx context.Context, req // ListSourceEventTypes Lists the event types mapped to the source with the specified name. The event type string could be the fully qualified name or a prefix that matches the event type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListSourceEventTypes.go.html to see an example of how to use ListSourceEventTypes API. // A default retry strategy applies to this operation ListSourceEventTypes() @@ -7731,7 +7731,7 @@ func (client LogAnalyticsClient) listSourceEventTypes(ctx context.Context, reque // ListSourceExtendedFieldDefinitions Lists the extended field definitions for the source with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListSourceExtendedFieldDefinitions.go.html to see an example of how to use ListSourceExtendedFieldDefinitions API. // A default retry strategy applies to this operation ListSourceExtendedFieldDefinitions() @@ -7789,7 +7789,7 @@ func (client LogAnalyticsClient) listSourceExtendedFieldDefinitions(ctx context. // ListSourceLabelOperators Lists the supported conditional operators that could be used for matching log field values to generate a label. You may use patterns to specify a condition. If a log entry matches that condition, it is tagged with the corresponding label. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListSourceLabelOperators.go.html to see an example of how to use ListSourceLabelOperators API. // A default retry strategy applies to this operation ListSourceLabelOperators() @@ -7847,7 +7847,7 @@ func (client LogAnalyticsClient) listSourceLabelOperators(ctx context.Context, r // ListSourceMetaFunctions Lists the functions that could be used to enrich log entries based on meaningful information extracted from the log fields. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListSourceMetaFunctions.go.html to see an example of how to use ListSourceMetaFunctions API. // A default retry strategy applies to this operation ListSourceMetaFunctions() @@ -7905,7 +7905,7 @@ func (client LogAnalyticsClient) listSourceMetaFunctions(ctx context.Context, re // ListSourcePatterns Lists the source patterns for the source with the specified name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListSourcePatterns.go.html to see an example of how to use ListSourcePatterns API. // A default retry strategy applies to this operation ListSourcePatterns() @@ -7963,7 +7963,7 @@ func (client LogAnalyticsClient) listSourcePatterns(ctx context.Context, request // ListSources Returns a list of sources, containing detailed information about them. You may limit the number of results, provide sorting order, and filter by information such as display name, description and entity type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListSources.go.html to see an example of how to use ListSources API. // A default retry strategy applies to this operation ListSources() @@ -8021,7 +8021,7 @@ func (client LogAnalyticsClient) listSources(ctx context.Context, request common // ListStorageWorkRequestErrors This API returns the list of work request errors if any. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListStorageWorkRequestErrors.go.html to see an example of how to use ListStorageWorkRequestErrors API. // A default retry strategy applies to this operation ListStorageWorkRequestErrors() @@ -8079,7 +8079,7 @@ func (client LogAnalyticsClient) listStorageWorkRequestErrors(ctx context.Contex // ListStorageWorkRequests This API lists storage work requests. Use query parameters to narrow down or sort the result list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListStorageWorkRequests.go.html to see an example of how to use ListStorageWorkRequests API. // A default retry strategy applies to this operation ListStorageWorkRequests() @@ -8137,7 +8137,7 @@ func (client LogAnalyticsClient) listStorageWorkRequests(ctx context.Context, re // ListSupportedCharEncodings Gets list of character encodings which are supported by on-demand upload. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListSupportedCharEncodings.go.html to see an example of how to use ListSupportedCharEncodings API. // A default retry strategy applies to this operation ListSupportedCharEncodings() @@ -8195,7 +8195,7 @@ func (client LogAnalyticsClient) listSupportedCharEncodings(ctx context.Context, // ListSupportedTimezones Gets list of timezones which are supported by on-demand upload. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListSupportedTimezones.go.html to see an example of how to use ListSupportedTimezones API. // A default retry strategy applies to this operation ListSupportedTimezones() @@ -8253,7 +8253,7 @@ func (client LogAnalyticsClient) listSupportedTimezones(ctx context.Context, req // ListUploadFiles Gets list of files in an upload along with its processing state. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListUploadFiles.go.html to see an example of how to use ListUploadFiles API. // A default retry strategy applies to this operation ListUploadFiles() @@ -8311,7 +8311,7 @@ func (client LogAnalyticsClient) listUploadFiles(ctx context.Context, request co // ListUploadWarnings Gets list of warnings in an upload caused by incorrect configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListUploadWarnings.go.html to see an example of how to use ListUploadWarnings API. // A default retry strategy applies to this operation ListUploadWarnings() @@ -8370,7 +8370,7 @@ func (client LogAnalyticsClient) listUploadWarnings(ctx context.Context, request // ListUploads Gets a list of all On-demand uploads. // To use this and other API operations, you must be authorized in an IAM policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListUploads.go.html to see an example of how to use ListUploads API. // A default retry strategy applies to this operation ListUploads() @@ -8428,7 +8428,7 @@ func (client LogAnalyticsClient) listUploads(ctx context.Context, request common // ListWarnings Returns a list of collection warnings, containing detailed information about them. You may limit the number of results, provide sorting order, and filter by information such as start time, end time, warning type, warning state, source name, source pattern and entity name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListWarnings.go.html to see an example of how to use ListWarnings API. // A default retry strategy applies to this operation ListWarnings() @@ -8486,7 +8486,7 @@ func (client LogAnalyticsClient) listWarnings(ctx context.Context, request commo // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client LogAnalyticsClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -8543,7 +8543,7 @@ func (client LogAnalyticsClient) listWorkRequestErrors(ctx context.Context, requ // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client LogAnalyticsClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -8600,7 +8600,7 @@ func (client LogAnalyticsClient) listWorkRequestLogs(ctx context.Context, reques // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client LogAnalyticsClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -8657,7 +8657,7 @@ func (client LogAnalyticsClient) listWorkRequests(ctx context.Context, request c // OffboardNamespace Off-boards a tenant from Logging Analytics // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/OffboardNamespace.go.html to see an example of how to use OffboardNamespace API. func (client LogAnalyticsClient) OffboardNamespace(ctx context.Context, request OffboardNamespaceRequest) (response OffboardNamespaceResponse, err error) { @@ -8719,7 +8719,7 @@ func (client LogAnalyticsClient) offboardNamespace(ctx context.Context, request // OnboardNamespace On-boards a tenant to Logging Analytics. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/OnboardNamespace.go.html to see an example of how to use OnboardNamespace API. func (client LogAnalyticsClient) OnboardNamespace(ctx context.Context, request OnboardNamespaceRequest) (response OnboardNamespaceResponse, err error) { @@ -8781,7 +8781,7 @@ func (client LogAnalyticsClient) onboardNamespace(ctx context.Context, request c // ParseQuery Describe query // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ParseQuery.go.html to see an example of how to use ParseQuery API. // A default retry strategy applies to this operation ParseQuery() @@ -8841,7 +8841,7 @@ func (client LogAnalyticsClient) parseQuery(ctx context.Context, request common. // PauseScheduledTask Pause the scheduled task specified by {scheduledTaskId}. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/PauseScheduledTask.go.html to see an example of how to use PauseScheduledTask API. // A default retry strategy applies to this operation PauseScheduledTask() @@ -8900,7 +8900,7 @@ func (client LogAnalyticsClient) pauseScheduledTask(ctx context.Context, request // PurgeStorageData This API submits a work request to purge data. Only data from log groups that the user has permission to delete // will be purged. To purge all data, the user must have permission to all log groups. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/PurgeStorageData.go.html to see an example of how to use PurgeStorageData API. func (client LogAnalyticsClient) PurgeStorageData(ctx context.Context, request PurgeStorageDataRequest) (response PurgeStorageDataResponse, err error) { @@ -8964,7 +8964,7 @@ func (client LogAnalyticsClient) purgeStorageData(ctx context.Context, request c // PutQueryWorkRequestBackground Put the work request specified by {workRequestId} into the background. Backgrounded queries will preserve query results on query completion for up to 7 days for recall. After 7 days the results and query expire. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/PutQueryWorkRequestBackground.go.html to see an example of how to use PutQueryWorkRequestBackground API. func (client LogAnalyticsClient) PutQueryWorkRequestBackground(ctx context.Context, request PutQueryWorkRequestBackgroundRequest) (response PutQueryWorkRequestBackgroundResponse, err error) { @@ -9021,7 +9021,7 @@ func (client LogAnalyticsClient) putQueryWorkRequestBackground(ctx context.Conte // Query Performs a log analytics search, if shouldRunAsync is false returns the query results once they become available subject to 60 second timeout. If a query is subject to exceed that time then it should be run asynchronously. Asynchronous query submissions return the queryWorkRequestId to use for execution tracking, query submission lifecycle actions and to poll for query results. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/Query.go.html to see an example of how to use Query API. // A default retry strategy applies to this operation Query() @@ -9081,7 +9081,7 @@ func (client LogAnalyticsClient) query(ctx context.Context, request common.OCIRe // RecallArchivedData This API submits a work request to recall archived data based on time interval and data type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/RecallArchivedData.go.html to see an example of how to use RecallArchivedData API. func (client LogAnalyticsClient) RecallArchivedData(ctx context.Context, request RecallArchivedDataRequest) (response RecallArchivedDataResponse, err error) { @@ -9145,7 +9145,7 @@ func (client LogAnalyticsClient) recallArchivedData(ctx context.Context, request // RegisterLookup Creates a lookup with the specified name, type and description. The csv file containing the lookup content is passed in as binary data in the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/RegisterLookup.go.html to see an example of how to use RegisterLookup API. // A default retry strategy applies to this operation RegisterLookup() @@ -9210,7 +9210,7 @@ func (client LogAnalyticsClient) registerLookup(ctx context.Context, request com // ReleaseRecalledData This API submits a work request to release recalled data based on time interval and data type. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ReleaseRecalledData.go.html to see an example of how to use ReleaseRecalledData API. func (client LogAnalyticsClient) ReleaseRecalledData(ctx context.Context, request ReleaseRecalledDataRequest) (response ReleaseRecalledDataResponse, err error) { @@ -9274,7 +9274,7 @@ func (client LogAnalyticsClient) releaseRecalledData(ctx context.Context, reques // RemoveEntityAssociations Delete association between input source log analytics entity and destination entities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/RemoveEntityAssociations.go.html to see an example of how to use RemoveEntityAssociations API. // A default retry strategy applies to this operation RemoveEntityAssociations() @@ -9339,7 +9339,7 @@ func (client LogAnalyticsClient) removeEntityAssociations(ctx context.Context, r // RemovePreferences Removes the tenant preferences such as DEFAULT_HOMEPAGE and collection properties. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/RemovePreferences.go.html to see an example of how to use RemovePreferences API. // A default retry strategy applies to this operation RemovePreferences() @@ -9404,7 +9404,7 @@ func (client LogAnalyticsClient) removePreferences(ctx context.Context, request // RemoveResourceCategories Removes the category assignments of DASHBOARD and SAVEDSEARCH resources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/RemoveResourceCategories.go.html to see an example of how to use RemoveResourceCategories API. // A default retry strategy applies to this operation RemoveResourceCategories() @@ -9464,7 +9464,7 @@ func (client LogAnalyticsClient) removeResourceCategories(ctx context.Context, r // RemoveSourceEventTypes Remove one or more event types from a source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/RemoveSourceEventTypes.go.html to see an example of how to use RemoveSourceEventTypes API. // A default retry strategy applies to this operation RemoveSourceEventTypes() @@ -9529,7 +9529,7 @@ func (client LogAnalyticsClient) removeSourceEventTypes(ctx context.Context, req // ResumeScheduledTask Resume the scheduled task specified by {scheduledTaskId}. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ResumeScheduledTask.go.html to see an example of how to use ResumeScheduledTask API. // A default retry strategy applies to this operation ResumeScheduledTask() @@ -9589,7 +9589,7 @@ func (client LogAnalyticsClient) resumeScheduledTask(ctx context.Context, reques // The ScheduledTask taskType must be ACCELERATION. // Optionally specify time range (timeStart and timeEnd). The default is all time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/Run.go.html to see an example of how to use Run API. func (client LogAnalyticsClient) Run(ctx context.Context, request RunRequest) (response RunResponse, err error) { @@ -9653,7 +9653,7 @@ func (client LogAnalyticsClient) run(ctx context.Context, request common.OCIRequ // While processing there could be reasons a payload cannot be processed (mismatched structure, corrupted archive format, etc), // if configured the payload would be uploaded to the bucket for verification. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/SetUnprocessedDataBucket.go.html to see an example of how to use SetUnprocessedDataBucket API. func (client LogAnalyticsClient) SetUnprocessedDataBucket(ctx context.Context, request SetUnprocessedDataBucketRequest) (response SetUnprocessedDataBucketResponse, err error) { @@ -9710,7 +9710,7 @@ func (client LogAnalyticsClient) setUnprocessedDataBucket(ctx context.Context, r // Suggest Returns a context specific list of either commands, fields, or values to append to the end of the specified query string if applicable. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/Suggest.go.html to see an example of how to use Suggest API. // A default retry strategy applies to this operation Suggest() @@ -9770,7 +9770,7 @@ func (client LogAnalyticsClient) suggest(ctx context.Context, request common.OCI // SuppressWarning Supresses a list of warnings. Any unsuppressed warnings in the input list would be suppressed. Warnings in the input list which are already suppressed will not be modified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/SuppressWarning.go.html to see an example of how to use SuppressWarning API. // A default retry strategy applies to this operation SuppressWarning() @@ -9835,7 +9835,7 @@ func (client LogAnalyticsClient) suppressWarning(ctx context.Context, request co // TestParser Tests the parser definition against the specified example content to ensure fields are successfully extracted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/TestParser.go.html to see an example of how to use TestParser API. // A default retry strategy applies to this operation TestParser() @@ -9900,7 +9900,7 @@ func (client LogAnalyticsClient) testParser(ctx context.Context, request common. // UnsuppressWarning Unsupresses a list of warnings. Any suppressed warnings in the input list would be unsuppressed. Warnings in the input list which are already unsuppressed will not be modified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UnsuppressWarning.go.html to see an example of how to use UnsuppressWarning API. // A default retry strategy applies to this operation UnsuppressWarning() @@ -9965,7 +9965,7 @@ func (client LogAnalyticsClient) unsuppressWarning(ctx context.Context, request // UpdateIngestTimeRule Updates the specified ingest time rule's description, defined tags, and free-form tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateIngestTimeRule.go.html to see an example of how to use UpdateIngestTimeRule API. // A default retry strategy applies to this operation UpdateIngestTimeRule() @@ -10025,7 +10025,7 @@ func (client LogAnalyticsClient) updateIngestTimeRule(ctx context.Context, reque // UpdateLogAnalyticsEmBridge Update log analytics enterprise manager bridge with the given id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateLogAnalyticsEmBridge.go.html to see an example of how to use UpdateLogAnalyticsEmBridge API. func (client LogAnalyticsClient) UpdateLogAnalyticsEmBridge(ctx context.Context, request UpdateLogAnalyticsEmBridgeRequest) (response UpdateLogAnalyticsEmBridgeResponse, err error) { @@ -10084,7 +10084,7 @@ func (client LogAnalyticsClient) updateLogAnalyticsEmBridge(ctx context.Context, // UpdateLogAnalyticsEntity Update the log analytics entity with the given id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateLogAnalyticsEntity.go.html to see an example of how to use UpdateLogAnalyticsEntity API. func (client LogAnalyticsClient) UpdateLogAnalyticsEntity(ctx context.Context, request UpdateLogAnalyticsEntityRequest) (response UpdateLogAnalyticsEntityResponse, err error) { @@ -10143,7 +10143,7 @@ func (client LogAnalyticsClient) updateLogAnalyticsEntity(ctx context.Context, r // UpdateLogAnalyticsEntityType Update custom log analytics entity type. Out of box entity types cannot be udpated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateLogAnalyticsEntityType.go.html to see an example of how to use UpdateLogAnalyticsEntityType API. func (client LogAnalyticsClient) UpdateLogAnalyticsEntityType(ctx context.Context, request UpdateLogAnalyticsEntityTypeRequest) (response UpdateLogAnalyticsEntityTypeResponse, err error) { @@ -10202,7 +10202,7 @@ func (client LogAnalyticsClient) updateLogAnalyticsEntityType(ctx context.Contex // UpdateLogAnalyticsLogGroup Updates the specified log group's display name, description, defined tags, and free-form tags. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateLogAnalyticsLogGroup.go.html to see an example of how to use UpdateLogAnalyticsLogGroup API. // A default retry strategy applies to this operation UpdateLogAnalyticsLogGroup() @@ -10262,7 +10262,7 @@ func (client LogAnalyticsClient) updateLogAnalyticsLogGroup(ctx context.Context, // UpdateLogAnalyticsObjectCollectionRule Updates configuration of the object collection rule for the given id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateLogAnalyticsObjectCollectionRule.go.html to see an example of how to use UpdateLogAnalyticsObjectCollectionRule API. func (client LogAnalyticsClient) UpdateLogAnalyticsObjectCollectionRule(ctx context.Context, request UpdateLogAnalyticsObjectCollectionRuleRequest) (response UpdateLogAnalyticsObjectCollectionRuleResponse, err error) { @@ -10321,7 +10321,7 @@ func (client LogAnalyticsClient) updateLogAnalyticsObjectCollectionRule(ctx cont // UpdateLookup Updates the metadata of the specified lookup, such as the lookup description. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateLookup.go.html to see an example of how to use UpdateLookup API. // A default retry strategy applies to this operation UpdateLookup() @@ -10386,7 +10386,7 @@ func (client LogAnalyticsClient) updateLookup(ctx context.Context, request commo // UpdateLookupData Updates the lookup content. The csv file containing the content to be updated is passed in as binary data in the request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateLookupData.go.html to see an example of how to use UpdateLookupData API. // A default retry strategy applies to this operation UpdateLookupData() @@ -10451,7 +10451,7 @@ func (client LogAnalyticsClient) updateLookupData(ctx context.Context, request c // UpdatePreferences Updates the tenant preferences such as DEFAULT_HOMEPAGE and collection properties. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdatePreferences.go.html to see an example of how to use UpdatePreferences API. // A default retry strategy applies to this operation UpdatePreferences() @@ -10516,7 +10516,7 @@ func (client LogAnalyticsClient) updatePreferences(ctx context.Context, request // UpdateResourceCategories Updates the category assignments of DASHBOARD and SAVEDSEARCH resources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateResourceCategories.go.html to see an example of how to use UpdateResourceCategories API. // A default retry strategy applies to this operation UpdateResourceCategories() @@ -10576,7 +10576,7 @@ func (client LogAnalyticsClient) updateResourceCategories(ctx context.Context, r // UpdateScheduledTask Update the scheduled task. Schedules may be updated only for taskType SAVED_SEARCH and PURGE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateScheduledTask.go.html to see an example of how to use UpdateScheduledTask API. // A default retry strategy applies to this operation UpdateScheduledTask() @@ -10636,7 +10636,7 @@ func (client LogAnalyticsClient) updateScheduledTask(ctx context.Context, reques // UpdateStorage This API updates the archiving configuration // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpdateStorage.go.html to see an example of how to use UpdateStorage API. // A default retry strategy applies to this operation UpdateStorage() @@ -10696,7 +10696,7 @@ func (client LogAnalyticsClient) updateStorage(ctx context.Context, request comm // UploadLogEventsFile Accepts log events for processing by Logging Analytics. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UploadLogEventsFile.go.html to see an example of how to use UploadLogEventsFile API. // A default retry strategy applies to this operation UploadLogEventsFile() @@ -10771,7 +10771,7 @@ func (client LogAnalyticsClient) uploadLogEventsFile(ctx context.Context, reques // UploadLogFile Accepts log data for processing by Logging Analytics. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UploadLogFile.go.html to see an example of how to use UploadLogFile API. // A default retry strategy applies to this operation UploadLogFile() @@ -10846,7 +10846,7 @@ func (client LogAnalyticsClient) uploadLogFile(ctx context.Context, request comm // UpsertAssociations Creates or updates associations between sources and entities. All entities should belong to the specified input compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpsertAssociations.go.html to see an example of how to use UpsertAssociations API. // A default retry strategy applies to this operation UpsertAssociations() @@ -10911,7 +10911,7 @@ func (client LogAnalyticsClient) upsertAssociations(ctx context.Context, request // UpsertField Creates or updates a field that could be used in parser expressions to extract and assign value. To create a field, specify its display name. A name would be generated for the field. For subsequent calls to update the field, include the name attribute. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpsertField.go.html to see an example of how to use UpsertField API. // A default retry strategy applies to this operation UpsertField() @@ -10976,7 +10976,7 @@ func (client LogAnalyticsClient) upsertField(ctx context.Context, request common // UpsertLabel Creates or updates a label that could be used to tag a log entry. You may optionally designate the label as a problem, and assign it a priority. You may also provide its related terms (aliases). To create a label, specify its display name. A name would be generated for the label. For subsequent calls to update the label, include the name attribute. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpsertLabel.go.html to see an example of how to use UpsertLabel API. // A default retry strategy applies to this operation UpsertLabel() @@ -11041,7 +11041,7 @@ func (client LogAnalyticsClient) upsertLabel(ctx context.Context, request common // UpsertParser Creates or updates a parser, which defines how fields are extracted from a log entry. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpsertParser.go.html to see an example of how to use UpsertParser API. // A default retry strategy applies to this operation UpsertParser() @@ -11106,7 +11106,7 @@ func (client LogAnalyticsClient) upsertParser(ctx context.Context, request commo // UpsertSource Creates or updates a log source. You may also specify parsers, labels, extended fields etc., for the source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/UpsertSource.go.html to see an example of how to use UpsertSource API. // A default retry strategy applies to this operation UpsertSource() @@ -11171,7 +11171,7 @@ func (client LogAnalyticsClient) upsertSource(ctx context.Context, request commo // ValidateAssociationParameters Checks if the passed in entities could be associated with the specified sources. The validation is performed to ensure that the entities have the relevant property values that are used in the corresponding source patterns. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ValidateAssociationParameters.go.html to see an example of how to use ValidateAssociationParameters API. // A default retry strategy applies to this operation ValidateAssociationParameters() @@ -11236,7 +11236,7 @@ func (client LogAnalyticsClient) validateAssociationParameters(ctx context.Conte // ValidateEndpoint Validates the REST endpoint configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ValidateEndpoint.go.html to see an example of how to use ValidateEndpoint API. // A default retry strategy applies to this operation ValidateEndpoint() @@ -11296,7 +11296,7 @@ func (client LogAnalyticsClient) validateEndpoint(ctx context.Context, request c // ValidateFile Validates a log file to check whether it is eligible to be uploaded or not. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ValidateFile.go.html to see an example of how to use ValidateFile API. // A default retry strategy applies to this operation ValidateFile() @@ -11358,7 +11358,7 @@ func (client LogAnalyticsClient) validateFile(ctx context.Context, request commo // representation of the other structure too. Additionally, if field values // are passed, the condition specification would be evaluated against them. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ValidateLabelCondition.go.html to see an example of how to use ValidateLabelCondition API. // A default retry strategy applies to this operation ValidateLabelCondition() @@ -11418,7 +11418,7 @@ func (client LogAnalyticsClient) validateLabelCondition(ctx context.Context, req // ValidateSource Checks if the specified input is a valid log source definition. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ValidateSource.go.html to see an example of how to use ValidateSource API. // A default retry strategy applies to this operation ValidateSource() @@ -11483,7 +11483,7 @@ func (client LogAnalyticsClient) validateSource(ctx context.Context, request com // ValidateSourceExtendedFieldDetails Checks if the specified input contains valid extended field definitions against the provided example content. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ValidateSourceExtendedFieldDetails.go.html to see an example of how to use ValidateSourceExtendedFieldDetails API. // A default retry strategy applies to this operation ValidateSourceExtendedFieldDetails() @@ -11548,7 +11548,7 @@ func (client LogAnalyticsClient) validateSourceExtendedFieldDetails(ctx context. // ValidateSourceMapping Validates the source mapping for a given file and provides match status and the parsed representation of log data. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/ValidateSourceMapping.go.html to see an example of how to use ValidateSourceMapping API. // A default retry strategy applies to this operation ValidateSourceMapping() @@ -11609,7 +11609,7 @@ func (client LogAnalyticsClient) validateSourceMapping(ctx context.Context, requ // Optionally specify whether to return accelerated search results; the default is false. // The ScheduledTask taskType must be ACCELERATION. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/loganalytics/Verify.go.html to see an example of how to use Verify API. // A default retry strategy applies to this operation Verify() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/lookup_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/lookup_command_descriptor.go index f3b6bf408f6..3f3ef4218af 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/lookup_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/lookup_command_descriptor.go @@ -38,32 +38,32 @@ type LookupCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m LookupCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m LookupCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m LookupCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m LookupCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m LookupCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m LookupCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/macro_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/macro_command_descriptor.go index 1ae71e98e7d..4cb33b1034c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/macro_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/macro_command_descriptor.go @@ -38,32 +38,32 @@ type MacroCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m MacroCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m MacroCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m MacroCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m MacroCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m MacroCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m MacroCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/map_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/map_command_descriptor.go index ca9f22aea37..624414d0496 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/map_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/map_command_descriptor.go @@ -38,32 +38,32 @@ type MapCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m MapCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m MapCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m MapCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m MapCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m MapCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m MapCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/module_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/module_command_descriptor.go index 18c5a5c7a25..038d70ff0c9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/module_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/module_command_descriptor.go @@ -38,32 +38,32 @@ type ModuleCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m ModuleCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m ModuleCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m ModuleCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m ModuleCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m ModuleCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m ModuleCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/multi_search_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/multi_search_command_descriptor.go index b714737deaf..83257a0d113 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/multi_search_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/multi_search_command_descriptor.go @@ -41,32 +41,32 @@ type MultiSearchCommandDescriptor struct { SubQueries []ParseQueryOutput `mandatory:"false" json:"subQueries"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m MultiSearchCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m MultiSearchCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m MultiSearchCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m MultiSearchCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m MultiSearchCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m MultiSearchCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/nlp_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/nlp_command_descriptor.go index 240ccf7efc4..9f2f3adaec1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/nlp_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/nlp_command_descriptor.go @@ -38,32 +38,32 @@ type NlpCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m NlpCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m NlpCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m NlpCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m NlpCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m NlpCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m NlpCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/outlier_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/outlier_command_descriptor.go index 4683d7ff50b..930759d148f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/outlier_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/outlier_command_descriptor.go @@ -38,32 +38,32 @@ type OutlierCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m OutlierCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m OutlierCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m OutlierCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m OutlierCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m OutlierCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m OutlierCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/rare_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/rare_command_descriptor.go index ecc7a4bcfd2..956bc58c764 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/rare_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/rare_command_descriptor.go @@ -38,32 +38,32 @@ type RareCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m RareCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m RareCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m RareCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m RareCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m RareCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m RareCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/regex_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/regex_command_descriptor.go index 543f3bf0464..9e8cf9e2a24 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/regex_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/regex_command_descriptor.go @@ -38,32 +38,32 @@ type RegexCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m RegexCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m RegexCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m RegexCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m RegexCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m RegexCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m RegexCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/rename_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/rename_command_descriptor.go index 85e9e48be57..62da8335d0c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/rename_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/rename_command_descriptor.go @@ -38,32 +38,32 @@ type RenameCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m RenameCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m RenameCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m RenameCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m RenameCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m RenameCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m RenameCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/search_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/search_command_descriptor.go index 9f156a964aa..292805d641f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/search_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/search_command_descriptor.go @@ -41,32 +41,32 @@ type SearchCommandDescriptor struct { SubQueries []ParseQueryOutput `mandatory:"false" json:"subQueries"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m SearchCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m SearchCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m SearchCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m SearchCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m SearchCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m SearchCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/search_lookup_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/search_lookup_command_descriptor.go index 1e95cb80843..adce5099260 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/search_lookup_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/search_lookup_command_descriptor.go @@ -38,32 +38,32 @@ type SearchLookupCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m SearchLookupCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m SearchLookupCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m SearchLookupCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m SearchLookupCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m SearchLookupCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m SearchLookupCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/sort_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/sort_command_descriptor.go index 42e9f382ef7..28861e67012 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/sort_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/sort_command_descriptor.go @@ -38,32 +38,32 @@ type SortCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m SortCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m SortCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m SortCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m SortCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m SortCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m SortCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/sort_field.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/sort_field.go index 4b563944e3f..3fb24edb8cb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/sort_field.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/sort_field.go @@ -54,52 +54,52 @@ type SortField struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m SortField) GetDisplayName() *string { return m.DisplayName } -//GetIsDeclared returns IsDeclared +// GetIsDeclared returns IsDeclared func (m SortField) GetIsDeclared() *bool { return m.IsDeclared } -//GetOriginalDisplayNames returns OriginalDisplayNames +// GetOriginalDisplayNames returns OriginalDisplayNames func (m SortField) GetOriginalDisplayNames() []string { return m.OriginalDisplayNames } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m SortField) GetInternalName() *string { return m.InternalName } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m SortField) GetValueType() ValueTypeEnum { return m.ValueType } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m SortField) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsDuration returns IsDuration +// GetIsDuration returns IsDuration func (m SortField) GetIsDuration() *bool { return m.IsDuration } -//GetAlias returns Alias +// GetAlias returns Alias func (m SortField) GetAlias() *string { return m.Alias } -//GetFilterQueryString returns FilterQueryString +// GetFilterQueryString returns FilterQueryString func (m SortField) GetFilterQueryString() *string { return m.FilterQueryString } -//GetUnitType returns UnitType +// GetUnitType returns UnitType func (m SortField) GetUnitType() *string { return m.UnitType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/standard_task.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/standard_task.go index d16f6432f4d..27450cbf8a6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/standard_task.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/standard_task.go @@ -79,82 +79,82 @@ type StandardTask struct { LifecycleState ScheduledTaskLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m StandardTask) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m StandardTask) GetDisplayName() *string { return m.DisplayName } -//GetTaskType returns TaskType +// GetTaskType returns TaskType func (m StandardTask) GetTaskType() TaskTypeEnum { return m.TaskType } -//GetSchedules returns Schedules +// GetSchedules returns Schedules func (m StandardTask) GetSchedules() []Schedule { return m.Schedules } -//GetAction returns Action +// GetAction returns Action func (m StandardTask) GetAction() Action { return m.Action } -//GetTaskStatus returns TaskStatus +// GetTaskStatus returns TaskStatus func (m StandardTask) GetTaskStatus() ScheduledTaskTaskStatusEnum { return m.TaskStatus } -//GetPauseReason returns PauseReason +// GetPauseReason returns PauseReason func (m StandardTask) GetPauseReason() ScheduledTaskPauseReasonEnum { return m.PauseReason } -//GetWorkRequestId returns WorkRequestId +// GetWorkRequestId returns WorkRequestId func (m StandardTask) GetWorkRequestId() *string { return m.WorkRequestId } -//GetNumOccurrences returns NumOccurrences +// GetNumOccurrences returns NumOccurrences func (m StandardTask) GetNumOccurrences() *int64 { return m.NumOccurrences } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m StandardTask) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m StandardTask) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m StandardTask) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetTimeOfNextExecution returns TimeOfNextExecution +// GetTimeOfNextExecution returns TimeOfNextExecution func (m StandardTask) GetTimeOfNextExecution() *common.SDKTime { return m.TimeOfNextExecution } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m StandardTask) GetLifecycleState() ScheduledTaskLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m StandardTask) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m StandardTask) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/stats_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/stats_command_descriptor.go index 7ea9d15b760..6c5030077e1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/stats_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/stats_command_descriptor.go @@ -44,32 +44,32 @@ type StatsCommandDescriptor struct { Functions []FunctionField `mandatory:"false" json:"functions"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m StatsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m StatsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m StatsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m StatsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m StatsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m StatsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/table_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/table_column.go index 8500232e773..8d5989a28a2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/table_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/table_column.go @@ -59,57 +59,57 @@ type TableColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m TableColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m TableColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m TableColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m TableColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m TableColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m TableColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m TableColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m TableColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m TableColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m TableColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m TableColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/tail_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/tail_command_descriptor.go index 50b4a6ea9d7..0400f725d11 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/tail_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/tail_command_descriptor.go @@ -41,32 +41,32 @@ type TailCommandDescriptor struct { Limit *int `mandatory:"false" json:"limit"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m TailCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m TailCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m TailCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m TailCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m TailCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m TailCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_column.go index be26b3bea63..9b33db09da7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_column.go @@ -68,57 +68,57 @@ type TimeClusterColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m TimeClusterColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m TimeClusterColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m TimeClusterColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m TimeClusterColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m TimeClusterColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m TimeClusterColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m TimeClusterColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m TimeClusterColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m TimeClusterColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m TimeClusterColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m TimeClusterColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_command_descriptor.go index a8cd7d668be..765b9f3fa8e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_command_descriptor.go @@ -50,32 +50,32 @@ type TimeClusterCommandDescriptor struct { Functions []FunctionField `mandatory:"false" json:"functions"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m TimeClusterCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m TimeClusterCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m TimeClusterCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m TimeClusterCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m TimeClusterCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m TimeClusterCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_data_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_data_column.go index 865bdcfbcd5..e9dec66557d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_data_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_cluster_data_column.go @@ -59,57 +59,57 @@ type TimeClusterDataColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m TimeClusterDataColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m TimeClusterDataColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m TimeClusterDataColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m TimeClusterDataColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m TimeClusterDataColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m TimeClusterDataColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m TimeClusterDataColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m TimeClusterDataColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m TimeClusterDataColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m TimeClusterDataColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m TimeClusterDataColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_column.go index 98c2f84a282..edbd41015f8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_column.go @@ -59,57 +59,57 @@ type TimeColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m TimeColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m TimeColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m TimeColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m TimeColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m TimeColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m TimeColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m TimeColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m TimeColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m TimeColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m TimeColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m TimeColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_compare_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_compare_command_descriptor.go index 1aa8d04582a..48629c3fc9a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_compare_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_compare_command_descriptor.go @@ -38,32 +38,32 @@ type TimeCompareCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m TimeCompareCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m TimeCompareCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m TimeCompareCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m TimeCompareCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m TimeCompareCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m TimeCompareCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_column.go index ab34e90211a..24c2933f264 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_column.go @@ -62,57 +62,57 @@ type TimeStatsColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m TimeStatsColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m TimeStatsColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m TimeStatsColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m TimeStatsColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m TimeStatsColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m TimeStatsColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m TimeStatsColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m TimeStatsColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m TimeStatsColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m TimeStatsColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m TimeStatsColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_command_descriptor.go index f4eb8184589..37e5ab22111 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_command_descriptor.go @@ -50,32 +50,32 @@ type TimeStatsCommandDescriptor struct { Functions []FunctionField `mandatory:"false" json:"functions"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m TimeStatsCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m TimeStatsCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m TimeStatsCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m TimeStatsCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m TimeStatsCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m TimeStatsCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_data_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_data_column.go index 3f74dd9b97e..89b55319701 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_data_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/time_stats_data_column.go @@ -68,57 +68,57 @@ type TimeStatsDataColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m TimeStatsDataColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m TimeStatsDataColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m TimeStatsDataColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m TimeStatsDataColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m TimeStatsDataColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m TimeStatsDataColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m TimeStatsDataColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m TimeStatsDataColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m TimeStatsDataColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m TimeStatsDataColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m TimeStatsDataColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/top_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/top_command_descriptor.go index 3fd0eeac47f..caf7ce8cfab 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/top_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/top_command_descriptor.go @@ -41,32 +41,32 @@ type TopCommandDescriptor struct { Limit *int `mandatory:"false" json:"limit"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m TopCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m TopCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m TopCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m TopCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m TopCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m TopCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/trend_column.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/trend_column.go index 97ada724156..d59b651a8ad 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/trend_column.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/trend_column.go @@ -71,57 +71,57 @@ type TrendColumn struct { ValueType ValueTypeEnum `mandatory:"false" json:"valueType,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m TrendColumn) GetDisplayName() *string { return m.DisplayName } -//GetSubSystem returns SubSystem +// GetSubSystem returns SubSystem func (m TrendColumn) GetSubSystem() SubSystemNameEnum { return m.SubSystem } -//GetValues returns Values +// GetValues returns Values func (m TrendColumn) GetValues() []FieldValue { return m.Values } -//GetIsListOfValues returns IsListOfValues +// GetIsListOfValues returns IsListOfValues func (m TrendColumn) GetIsListOfValues() *bool { return m.IsListOfValues } -//GetIsMultiValued returns IsMultiValued +// GetIsMultiValued returns IsMultiValued func (m TrendColumn) GetIsMultiValued() *bool { return m.IsMultiValued } -//GetIsCaseSensitive returns IsCaseSensitive +// GetIsCaseSensitive returns IsCaseSensitive func (m TrendColumn) GetIsCaseSensitive() *bool { return m.IsCaseSensitive } -//GetIsGroupable returns IsGroupable +// GetIsGroupable returns IsGroupable func (m TrendColumn) GetIsGroupable() *bool { return m.IsGroupable } -//GetIsEvaluable returns IsEvaluable +// GetIsEvaluable returns IsEvaluable func (m TrendColumn) GetIsEvaluable() *bool { return m.IsEvaluable } -//GetValueType returns ValueType +// GetValueType returns ValueType func (m TrendColumn) GetValueType() ValueTypeEnum { return m.ValueType } -//GetOriginalDisplayName returns OriginalDisplayName +// GetOriginalDisplayName returns OriginalDisplayName func (m TrendColumn) GetOriginalDisplayName() *string { return m.OriginalDisplayName } -//GetInternalName returns InternalName +// GetInternalName returns InternalName func (m TrendColumn) GetInternalName() *string { return m.InternalName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/update_standard_task_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/update_standard_task_details.go index 0d16152b343..a824d2c2fd8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/update_standard_task_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/update_standard_task_details.go @@ -40,22 +40,22 @@ type UpdateStandardTaskDetails struct { Action Action `mandatory:"false" json:"action"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateStandardTaskDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateStandardTaskDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateStandardTaskDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSchedules returns Schedules +// GetSchedules returns Schedules func (m UpdateStandardTaskDetails) GetSchedules() []Schedule { return m.Schedules } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/where_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/where_command_descriptor.go index 9ec22bdf531..70ba478a809 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/where_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/where_command_descriptor.go @@ -38,32 +38,32 @@ type WhereCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m WhereCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m WhereCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m WhereCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m WhereCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m WhereCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m WhereCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/xml_extract_command_descriptor.go b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/xml_extract_command_descriptor.go index 2b80526fa6d..2dd91a3b296 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/xml_extract_command_descriptor.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/loganalytics/xml_extract_command_descriptor.go @@ -38,32 +38,32 @@ type XmlExtractCommandDescriptor struct { IsHidden *bool `mandatory:"false" json:"isHidden"` } -//GetDisplayQueryString returns DisplayQueryString +// GetDisplayQueryString returns DisplayQueryString func (m XmlExtractCommandDescriptor) GetDisplayQueryString() *string { return m.DisplayQueryString } -//GetInternalQueryString returns InternalQueryString +// GetInternalQueryString returns InternalQueryString func (m XmlExtractCommandDescriptor) GetInternalQueryString() *string { return m.InternalQueryString } -//GetCategory returns Category +// GetCategory returns Category func (m XmlExtractCommandDescriptor) GetCategory() *string { return m.Category } -//GetReferencedFields returns ReferencedFields +// GetReferencedFields returns ReferencedFields func (m XmlExtractCommandDescriptor) GetReferencedFields() []AbstractField { return m.ReferencedFields } -//GetDeclaredFields returns DeclaredFields +// GetDeclaredFields returns DeclaredFields func (m XmlExtractCommandDescriptor) GetDeclaredFields() []AbstractField { return m.DeclaredFields } -//GetIsHidden returns IsHidden +// GetIsHidden returns IsHidden func (m XmlExtractCommandDescriptor) GetIsHidden() *bool { return m.IsHidden } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/logging_loggingmanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/logging_loggingmanagement_client.go index 76847b4653e..2f1c3adb9ee 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/logging_loggingmanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/logging_loggingmanagement_client.go @@ -97,7 +97,7 @@ func (client *LoggingManagementClient) ConfigurationProvider() *common.Configura // ChangeLogGroupCompartment Moves a log group into a different compartment within the same tenancy. When provided, the If-Match is checked against the resource ETag values. // For information about moving resources between compartments, see Moving Resources Between Compartments (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ChangeLogGroupCompartment.go.html to see an example of how to use ChangeLogGroupCompartment API. func (client LoggingManagementClient) ChangeLogGroupCompartment(ctx context.Context, request ChangeLogGroupCompartmentRequest) (response ChangeLogGroupCompartmentResponse, err error) { @@ -154,7 +154,7 @@ func (client LoggingManagementClient) changeLogGroupCompartment(ctx context.Cont // ChangeLogLogGroup Moves a log into a different log group within the same tenancy. When provided, the If-Match is checked against the ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ChangeLogLogGroup.go.html to see an example of how to use ChangeLogLogGroup API. func (client LoggingManagementClient) ChangeLogLogGroup(ctx context.Context, request ChangeLogLogGroupRequest) (response ChangeLogLogGroupResponse, err error) { @@ -212,7 +212,7 @@ func (client LoggingManagementClient) changeLogLogGroup(ctx context.Context, req // ChangeLogSavedSearchCompartment Moves a saved search into a different compartment within the same tenancy. For information about moving // resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ChangeLogSavedSearchCompartment.go.html to see an example of how to use ChangeLogSavedSearchCompartment API. func (client LoggingManagementClient) ChangeLogSavedSearchCompartment(ctx context.Context, request ChangeLogSavedSearchCompartmentRequest) (response ChangeLogSavedSearchCompartmentResponse, err error) { @@ -275,7 +275,7 @@ func (client LoggingManagementClient) changeLogSavedSearchCompartment(ctx contex // ChangeUnifiedAgentConfigurationCompartment Moves the unified agent configuration into a different compartment within the same tenancy. When provided, the If-Match is checked against the ETag values of the resource. // For information about moving resources between compartments, see Moving Resources Between Compartments (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ChangeUnifiedAgentConfigurationCompartment.go.html to see an example of how to use ChangeUnifiedAgentConfigurationCompartment API. func (client LoggingManagementClient) ChangeUnifiedAgentConfigurationCompartment(ctx context.Context, request ChangeUnifiedAgentConfigurationCompartmentRequest) (response ChangeUnifiedAgentConfigurationCompartmentResponse, err error) { @@ -338,7 +338,7 @@ func (client LoggingManagementClient) changeUnifiedAgentConfigurationCompartment // CreateLog Creates a log within the specified log group. This call fails if a log group has already been created // with the same displayName or (service, resource, category) triplet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/CreateLog.go.html to see an example of how to use CreateLog API. func (client LoggingManagementClient) CreateLog(ctx context.Context, request CreateLogRequest) (response CreateLogResponse, err error) { @@ -401,7 +401,7 @@ func (client LoggingManagementClient) createLog(ctx context.Context, request com // CreateLogGroup Create a new log group with a unique display name. This call fails // if the log group is already created with the same displayName in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/CreateLogGroup.go.html to see an example of how to use CreateLogGroup API. func (client LoggingManagementClient) CreateLogGroup(ctx context.Context, request CreateLogGroupRequest) (response CreateLogGroupResponse, err error) { @@ -463,7 +463,7 @@ func (client LoggingManagementClient) createLogGroup(ctx context.Context, reques // CreateLogSavedSearch Creates a new LogSavedSearch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/CreateLogSavedSearch.go.html to see an example of how to use CreateLogSavedSearch API. func (client LoggingManagementClient) CreateLogSavedSearch(ctx context.Context, request CreateLogSavedSearchRequest) (response CreateLogSavedSearchResponse, err error) { @@ -525,7 +525,7 @@ func (client LoggingManagementClient) createLogSavedSearch(ctx context.Context, // CreateUnifiedAgentConfiguration Create unified agent configuration registration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/CreateUnifiedAgentConfiguration.go.html to see an example of how to use CreateUnifiedAgentConfiguration API. func (client LoggingManagementClient) CreateUnifiedAgentConfiguration(ctx context.Context, request CreateUnifiedAgentConfigurationRequest) (response CreateUnifiedAgentConfigurationResponse, err error) { @@ -587,7 +587,7 @@ func (client LoggingManagementClient) createUnifiedAgentConfiguration(ctx contex // DeleteLog Deletes the log object in a log group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/DeleteLog.go.html to see an example of how to use DeleteLog API. func (client LoggingManagementClient) DeleteLog(ctx context.Context, request DeleteLogRequest) (response DeleteLogResponse, err error) { @@ -644,7 +644,7 @@ func (client LoggingManagementClient) deleteLog(ctx context.Context, request com // DeleteLogGroup Deletes the specified log group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/DeleteLogGroup.go.html to see an example of how to use DeleteLogGroup API. func (client LoggingManagementClient) DeleteLogGroup(ctx context.Context, request DeleteLogGroupRequest) (response DeleteLogGroupResponse, err error) { @@ -701,7 +701,7 @@ func (client LoggingManagementClient) deleteLogGroup(ctx context.Context, reques // DeleteLogSavedSearch Deletes the specified LogSavedSearch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/DeleteLogSavedSearch.go.html to see an example of how to use DeleteLogSavedSearch API. func (client LoggingManagementClient) DeleteLogSavedSearch(ctx context.Context, request DeleteLogSavedSearchRequest) (response DeleteLogSavedSearchResponse, err error) { @@ -758,7 +758,7 @@ func (client LoggingManagementClient) deleteLogSavedSearch(ctx context.Context, // DeleteUnifiedAgentConfiguration Delete unified agent configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/DeleteUnifiedAgentConfiguration.go.html to see an example of how to use DeleteUnifiedAgentConfiguration API. func (client LoggingManagementClient) DeleteUnifiedAgentConfiguration(ctx context.Context, request DeleteUnifiedAgentConfigurationRequest) (response DeleteUnifiedAgentConfigurationResponse, err error) { @@ -815,7 +815,7 @@ func (client LoggingManagementClient) deleteUnifiedAgentConfiguration(ctx contex // DeleteWorkRequest Cancel a work request that has not started yet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/DeleteWorkRequest.go.html to see an example of how to use DeleteWorkRequest API. func (client LoggingManagementClient) DeleteWorkRequest(ctx context.Context, request DeleteWorkRequestRequest) (response DeleteWorkRequestResponse, err error) { @@ -872,7 +872,7 @@ func (client LoggingManagementClient) deleteWorkRequest(ctx context.Context, req // GetLog Gets the log object configuration for the log object OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/GetLog.go.html to see an example of how to use GetLog API. func (client LoggingManagementClient) GetLog(ctx context.Context, request GetLogRequest) (response GetLogResponse, err error) { @@ -929,7 +929,7 @@ func (client LoggingManagementClient) getLog(ctx context.Context, request common // GetLogGroup Get the specified log group's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/GetLogGroup.go.html to see an example of how to use GetLogGroup API. func (client LoggingManagementClient) GetLogGroup(ctx context.Context, request GetLogGroupRequest) (response GetLogGroupResponse, err error) { @@ -986,7 +986,7 @@ func (client LoggingManagementClient) getLogGroup(ctx context.Context, request c // GetLogSavedSearch Retrieves a LogSavedSearch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/GetLogSavedSearch.go.html to see an example of how to use GetLogSavedSearch API. func (client LoggingManagementClient) GetLogSavedSearch(ctx context.Context, request GetLogSavedSearchRequest) (response GetLogSavedSearchResponse, err error) { @@ -1043,7 +1043,7 @@ func (client LoggingManagementClient) getLogSavedSearch(ctx context.Context, req // GetUnifiedAgentConfiguration Get the unified agent configuration for an ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/GetUnifiedAgentConfiguration.go.html to see an example of how to use GetUnifiedAgentConfiguration API. func (client LoggingManagementClient) GetUnifiedAgentConfiguration(ctx context.Context, request GetUnifiedAgentConfigurationRequest) (response GetUnifiedAgentConfigurationResponse, err error) { @@ -1100,7 +1100,7 @@ func (client LoggingManagementClient) getUnifiedAgentConfiguration(ctx context.C // GetWorkRequest Gets the details of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client LoggingManagementClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -1157,7 +1157,7 @@ func (client LoggingManagementClient) getWorkRequest(ctx context.Context, reques // ListLogGroups Lists all log groups for the specified compartment or tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ListLogGroups.go.html to see an example of how to use ListLogGroups API. func (client LoggingManagementClient) ListLogGroups(ctx context.Context, request ListLogGroupsRequest) (response ListLogGroupsResponse, err error) { @@ -1214,7 +1214,7 @@ func (client LoggingManagementClient) listLogGroups(ctx context.Context, request // ListLogSavedSearches Lists LogSavedSearches for this compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ListLogSavedSearches.go.html to see an example of how to use ListLogSavedSearches API. func (client LoggingManagementClient) ListLogSavedSearches(ctx context.Context, request ListLogSavedSearchesRequest) (response ListLogSavedSearchesResponse, err error) { @@ -1271,7 +1271,7 @@ func (client LoggingManagementClient) listLogSavedSearches(ctx context.Context, // ListLogs Lists the specified log group's log objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ListLogs.go.html to see an example of how to use ListLogs API. func (client LoggingManagementClient) ListLogs(ctx context.Context, request ListLogsRequest) (response ListLogsResponse, err error) { @@ -1328,7 +1328,7 @@ func (client LoggingManagementClient) listLogs(ctx context.Context, request comm // ListServices Lists all services that support logging. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ListServices.go.html to see an example of how to use ListServices API. func (client LoggingManagementClient) ListServices(ctx context.Context, request ListServicesRequest) (response ListServicesResponse, err error) { @@ -1385,7 +1385,7 @@ func (client LoggingManagementClient) listServices(ctx context.Context, request // ListUnifiedAgentConfigurations Lists all unified agent configurations in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ListUnifiedAgentConfigurations.go.html to see an example of how to use ListUnifiedAgentConfigurations API. func (client LoggingManagementClient) ListUnifiedAgentConfigurations(ctx context.Context, request ListUnifiedAgentConfigurationsRequest) (response ListUnifiedAgentConfigurationsResponse, err error) { @@ -1442,7 +1442,7 @@ func (client LoggingManagementClient) listUnifiedAgentConfigurations(ctx context // ListWorkRequestErrors Return a list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client LoggingManagementClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -1499,7 +1499,7 @@ func (client LoggingManagementClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Return a list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client LoggingManagementClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -1556,7 +1556,7 @@ func (client LoggingManagementClient) listWorkRequestLogs(ctx context.Context, r // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client LoggingManagementClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -1612,9 +1612,10 @@ func (client LoggingManagementClient) listWorkRequests(ctx context.Context, requ } // UpdateLog Updates the existing log object with the associated configuration. This call -// fails if the log object does not exist. // -// See also +// fails if the log object does not exist. +// +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/UpdateLog.go.html to see an example of how to use UpdateLog API. func (client LoggingManagementClient) UpdateLog(ctx context.Context, request UpdateLogRequest) (response UpdateLogResponse, err error) { @@ -1670,9 +1671,10 @@ func (client LoggingManagementClient) updateLog(ctx context.Context, request com } // UpdateLogGroup Updates the existing log group with the associated configuration. This call -// fails if the log group does not exist. // -// See also +// fails if the log group does not exist. +// +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/UpdateLogGroup.go.html to see an example of how to use UpdateLogGroup API. func (client LoggingManagementClient) UpdateLogGroup(ctx context.Context, request UpdateLogGroupRequest) (response UpdateLogGroupResponse, err error) { @@ -1729,7 +1731,7 @@ func (client LoggingManagementClient) updateLogGroup(ctx context.Context, reques // UpdateLogSavedSearch Updates an existing LogSavedSearch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/UpdateLogSavedSearch.go.html to see an example of how to use UpdateLogSavedSearch API. func (client LoggingManagementClient) UpdateLogSavedSearch(ctx context.Context, request UpdateLogSavedSearchRequest) (response UpdateLogSavedSearchResponse, err error) { @@ -1785,9 +1787,10 @@ func (client LoggingManagementClient) updateLogSavedSearch(ctx context.Context, } // UpdateUnifiedAgentConfiguration Update an existing unified agent configuration. This call -// fails if the log group does not exist. // -// See also +// fails if the log group does not exist. +// +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/logging/UpdateUnifiedAgentConfiguration.go.html to see an example of how to use UpdateUnifiedAgentConfiguration API. func (client LoggingManagementClient) UpdateUnifiedAgentConfiguration(ctx context.Context, request UpdateUnifiedAgentConfigurationRequest) (response UpdateUnifiedAgentConfigurationResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_apache2_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_apache2_parser.go index 94c8ff0860c..393ef65c2b3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_apache2_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_apache2_parser.go @@ -61,37 +61,37 @@ type UnifiedAgentApache2Parser struct { TimeoutInMilliseconds *int `mandatory:"false" json:"timeoutInMilliseconds"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentApache2Parser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentApache2Parser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentApache2Parser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentApache2Parser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentApache2Parser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentApache2Parser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentApache2Parser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_apache_error_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_apache_error_parser.go index 4ad060eb73b..5e8b5edf855 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_apache_error_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_apache_error_parser.go @@ -61,37 +61,37 @@ type UnifiedAgentApacheErrorParser struct { TimeoutInMilliseconds *int `mandatory:"false" json:"timeoutInMilliseconds"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentApacheErrorParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentApacheErrorParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentApacheErrorParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentApacheErrorParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentApacheErrorParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentApacheErrorParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentApacheErrorParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_auditd_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_auditd_parser.go index cbe908f37ac..d79208db584 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_auditd_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_auditd_parser.go @@ -61,37 +61,37 @@ type UnifiedAgentAuditdParser struct { TimeoutInMilliseconds *int `mandatory:"false" json:"timeoutInMilliseconds"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentAuditdParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentAuditdParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentAuditdParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentAuditdParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentAuditdParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentAuditdParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentAuditdParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_cri_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_cri_parser.go index d5845810bc3..af845ca1e00 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_cri_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_cri_parser.go @@ -67,37 +67,37 @@ type UnifiedAgentCriParser struct { NestedParser *UnifiedJsonParser `mandatory:"false" json:"nestedParser"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentCriParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentCriParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentCriParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentCriParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentCriParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentCriParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentCriParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_csv_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_csv_parser.go index 2cda6f95be8..2d7788cbef4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_csv_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_csv_parser.go @@ -67,37 +67,37 @@ type UnifiedAgentCsvParser struct { Delimiter *string `mandatory:"false" json:"delimiter"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentCsvParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentCsvParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentCsvParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentCsvParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentCsvParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentCsvParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentCsvParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_grok_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_grok_parser.go index f4c874dd7e6..9ddf01c3315 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_grok_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_grok_parser.go @@ -70,37 +70,37 @@ type UnifiedAgentGrokParser struct { GrokFailureKey *string `mandatory:"false" json:"grokFailureKey"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentGrokParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentGrokParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentGrokParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentGrokParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentGrokParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentGrokParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentGrokParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_msgpack_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_msgpack_parser.go index d09bb006737..57440d1caf4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_msgpack_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_msgpack_parser.go @@ -61,37 +61,37 @@ type UnifiedAgentMsgpackParser struct { TimeoutInMilliseconds *int `mandatory:"false" json:"timeoutInMilliseconds"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentMsgpackParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentMsgpackParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentMsgpackParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentMsgpackParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentMsgpackParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentMsgpackParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentMsgpackParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_multiline_grok_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_multiline_grok_parser.go index 50771a1f0f1..8c9c830b9de 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_multiline_grok_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_multiline_grok_parser.go @@ -73,37 +73,37 @@ type UnifiedAgentMultilineGrokParser struct { MultiLineStartRegexp *string `mandatory:"false" json:"multiLineStartRegexp"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentMultilineGrokParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentMultilineGrokParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentMultilineGrokParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentMultilineGrokParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentMultilineGrokParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentMultilineGrokParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentMultilineGrokParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_multiline_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_multiline_parser.go index 00e8b5e75b2..eab858a24fd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_multiline_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_multiline_parser.go @@ -67,37 +67,37 @@ type UnifiedAgentMultilineParser struct { FormatFirstline *string `mandatory:"false" json:"formatFirstline"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentMultilineParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentMultilineParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentMultilineParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentMultilineParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentMultilineParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentMultilineParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentMultilineParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_none_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_none_parser.go index f285dae6726..baa58f90af0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_none_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_none_parser.go @@ -64,37 +64,37 @@ type UnifiedAgentNoneParser struct { MessageKey *string `mandatory:"false" json:"messageKey"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentNoneParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentNoneParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentNoneParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentNoneParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentNoneParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentNoneParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentNoneParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_regex_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_regex_parser.go index 76f4bad6eab..7e72c1eea89 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_regex_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_regex_parser.go @@ -67,37 +67,37 @@ type UnifiedAgentRegexParser struct { TimeFormat *string `mandatory:"false" json:"timeFormat"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentRegexParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentRegexParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentRegexParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentRegexParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentRegexParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentRegexParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentRegexParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_syslog_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_syslog_parser.go index 5acb68305f0..b8f51f1fb89 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_syslog_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_syslog_parser.go @@ -79,37 +79,37 @@ type UnifiedAgentSyslogParser struct { SyslogParserType UnifiedAgentSyslogParserSyslogParserTypeEnum `mandatory:"false" json:"syslogParserType,omitempty"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentSyslogParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentSyslogParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentSyslogParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentSyslogParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentSyslogParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentSyslogParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentSyslogParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_tail_log_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_tail_log_source.go index 0df1245085d..110a816d260 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_tail_log_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_tail_log_source.go @@ -31,7 +31,7 @@ type UnifiedAgentTailLogSource struct { Parser UnifiedAgentParser `mandatory:"false" json:"parser"` } -//GetName returns Name +// GetName returns Name func (m UnifiedAgentTailLogSource) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_tsv_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_tsv_parser.go index df35ce452a7..78497acd421 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_tsv_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_tsv_parser.go @@ -67,37 +67,37 @@ type UnifiedAgentTsvParser struct { Delimiter *string `mandatory:"false" json:"delimiter"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedAgentTsvParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedAgentTsvParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedAgentTsvParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedAgentTsvParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedAgentTsvParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedAgentTsvParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedAgentTsvParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_windows_event_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_windows_event_source.go index 54fdc016ec6..4a607a671a1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_windows_event_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_agent_windows_event_source.go @@ -29,7 +29,7 @@ type UnifiedAgentWindowsEventSource struct { Channels []string `mandatory:"true" json:"channels"` } -//GetName returns Name +// GetName returns Name func (m UnifiedAgentWindowsEventSource) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_json_parser.go b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_json_parser.go index 8c48e695e1c..bad2a1806dc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_json_parser.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/logging/unified_json_parser.go @@ -67,37 +67,37 @@ type UnifiedJsonParser struct { TimeType UnifiedJsonParserTimeTypeEnum `mandatory:"false" json:"timeType,omitempty"` } -//GetFieldTimeKey returns FieldTimeKey +// GetFieldTimeKey returns FieldTimeKey func (m UnifiedJsonParser) GetFieldTimeKey() *string { return m.FieldTimeKey } -//GetTypes returns Types +// GetTypes returns Types func (m UnifiedJsonParser) GetTypes() map[string]string { return m.Types } -//GetNullValuePattern returns NullValuePattern +// GetNullValuePattern returns NullValuePattern func (m UnifiedJsonParser) GetNullValuePattern() *string { return m.NullValuePattern } -//GetIsNullEmptyString returns IsNullEmptyString +// GetIsNullEmptyString returns IsNullEmptyString func (m UnifiedJsonParser) GetIsNullEmptyString() *bool { return m.IsNullEmptyString } -//GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent +// GetIsEstimateCurrentEvent returns IsEstimateCurrentEvent func (m UnifiedJsonParser) GetIsEstimateCurrentEvent() *bool { return m.IsEstimateCurrentEvent } -//GetIsKeepTimeKey returns IsKeepTimeKey +// GetIsKeepTimeKey returns IsKeepTimeKey func (m UnifiedJsonParser) GetIsKeepTimeKey() *bool { return m.IsKeepTimeKey } -//GetTimeoutInMilliseconds returns TimeoutInMilliseconds +// GetTimeoutInMilliseconds returns TimeoutInMilliseconds func (m UnifiedJsonParser) GetTimeoutInMilliseconds() *int { return m.TimeoutInMilliseconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/managementagent/managementagent_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/managementagent/managementagent_client.go index 805ecb542ff..8ef1c415d8f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/managementagent/managementagent_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/managementagent/managementagent_client.go @@ -94,7 +94,7 @@ func (client *ManagementAgentClient) ConfigurationProvider() *common.Configurati // CreateManagementAgentInstallKey User creates a new install key as part of this API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/CreateManagementAgentInstallKey.go.html to see an example of how to use CreateManagementAgentInstallKey API. func (client ManagementAgentClient) CreateManagementAgentInstallKey(ctx context.Context, request CreateManagementAgentInstallKeyRequest) (response CreateManagementAgentInstallKeyResponse, err error) { @@ -156,7 +156,7 @@ func (client ManagementAgentClient) createManagementAgentInstallKey(ctx context. // DeleteManagementAgent Deletes a Management Agent resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/DeleteManagementAgent.go.html to see an example of how to use DeleteManagementAgent API. func (client ManagementAgentClient) DeleteManagementAgent(ctx context.Context, request DeleteManagementAgentRequest) (response DeleteManagementAgentResponse, err error) { @@ -213,7 +213,7 @@ func (client ManagementAgentClient) deleteManagementAgent(ctx context.Context, r // DeleteManagementAgentInstallKey Deletes a Management Agent install Key resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/DeleteManagementAgentInstallKey.go.html to see an example of how to use DeleteManagementAgentInstallKey API. func (client ManagementAgentClient) DeleteManagementAgentInstallKey(ctx context.Context, request DeleteManagementAgentInstallKeyRequest) (response DeleteManagementAgentInstallKeyResponse, err error) { @@ -270,7 +270,7 @@ func (client ManagementAgentClient) deleteManagementAgentInstallKey(ctx context. // DeleteWorkRequest Cancel the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/DeleteWorkRequest.go.html to see an example of how to use DeleteWorkRequest API. func (client ManagementAgentClient) DeleteWorkRequest(ctx context.Context, request DeleteWorkRequestRequest) (response DeleteWorkRequestResponse, err error) { @@ -327,7 +327,7 @@ func (client ManagementAgentClient) deleteWorkRequest(ctx context.Context, reque // DeployPlugins Deploys Plugins to a given list of agentIds. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/DeployPlugins.go.html to see an example of how to use DeployPlugins API. func (client ManagementAgentClient) DeployPlugins(ctx context.Context, request DeployPluginsRequest) (response DeployPluginsResponse, err error) { @@ -390,7 +390,7 @@ func (client ManagementAgentClient) deployPlugins(ctx context.Context, request c // GetAutoUpgradableConfig Get the AutoUpgradable configuration for all agents in a tenancy. // The supplied compartmentId must be a tenancy root. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/GetAutoUpgradableConfig.go.html to see an example of how to use GetAutoUpgradableConfig API. func (client ManagementAgentClient) GetAutoUpgradableConfig(ctx context.Context, request GetAutoUpgradableConfigRequest) (response GetAutoUpgradableConfigResponse, err error) { @@ -447,7 +447,7 @@ func (client ManagementAgentClient) getAutoUpgradableConfig(ctx context.Context, // GetManagementAgent Gets complete details of the inventory of a given agent id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/GetManagementAgent.go.html to see an example of how to use GetManagementAgent API. func (client ManagementAgentClient) GetManagementAgent(ctx context.Context, request GetManagementAgentRequest) (response GetManagementAgentResponse, err error) { @@ -504,7 +504,7 @@ func (client ManagementAgentClient) getManagementAgent(ctx context.Context, requ // GetManagementAgentInstallKey Gets complete details of the Agent install Key for a given key id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/GetManagementAgentInstallKey.go.html to see an example of how to use GetManagementAgentInstallKey API. func (client ManagementAgentClient) GetManagementAgentInstallKey(ctx context.Context, request GetManagementAgentInstallKeyRequest) (response GetManagementAgentInstallKeyResponse, err error) { @@ -561,7 +561,7 @@ func (client ManagementAgentClient) getManagementAgentInstallKey(ctx context.Con // GetManagementAgentInstallKeyContent Returns a file with Management Agent install Key in it // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/GetManagementAgentInstallKeyContent.go.html to see an example of how to use GetManagementAgentInstallKeyContent API. func (client ManagementAgentClient) GetManagementAgentInstallKeyContent(ctx context.Context, request GetManagementAgentInstallKeyContentRequest) (response GetManagementAgentInstallKeyContentResponse, err error) { @@ -617,7 +617,7 @@ func (client ManagementAgentClient) getManagementAgentInstallKeyContent(ctx cont // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client ManagementAgentClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -674,7 +674,7 @@ func (client ManagementAgentClient) getWorkRequest(ctx context.Context, request // ListAvailabilityHistories Lists the availability history records of Management Agent // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/ListAvailabilityHistories.go.html to see an example of how to use ListAvailabilityHistories API. func (client ManagementAgentClient) ListAvailabilityHistories(ctx context.Context, request ListAvailabilityHistoriesRequest) (response ListAvailabilityHistoriesResponse, err error) { @@ -731,7 +731,7 @@ func (client ManagementAgentClient) listAvailabilityHistories(ctx context.Contex // ListManagementAgentImages Get supported agent image information // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/ListManagementAgentImages.go.html to see an example of how to use ListManagementAgentImages API. func (client ManagementAgentClient) ListManagementAgentImages(ctx context.Context, request ListManagementAgentImagesRequest) (response ListManagementAgentImagesResponse, err error) { @@ -793,7 +793,7 @@ func (client ManagementAgentClient) listManagementAgentImages(ctx context.Contex // ListManagementAgentInstallKeys Returns a list of Management Agent installed Keys. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/ListManagementAgentInstallKeys.go.html to see an example of how to use ListManagementAgentInstallKeys API. func (client ManagementAgentClient) ListManagementAgentInstallKeys(ctx context.Context, request ListManagementAgentInstallKeysRequest) (response ListManagementAgentInstallKeysResponse, err error) { @@ -850,7 +850,7 @@ func (client ManagementAgentClient) listManagementAgentInstallKeys(ctx context.C // ListManagementAgentPlugins Returns a list of managementAgentPlugins. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/ListManagementAgentPlugins.go.html to see an example of how to use ListManagementAgentPlugins API. func (client ManagementAgentClient) ListManagementAgentPlugins(ctx context.Context, request ListManagementAgentPluginsRequest) (response ListManagementAgentPluginsResponse, err error) { @@ -909,7 +909,7 @@ func (client ManagementAgentClient) listManagementAgentPlugins(ctx context.Conte // If no explicit page size limit is specified, it will default to 1000 when compartmentIdInSubtree is true and 5000 otherwise. // The response is limited to maximum 1000 records when compartmentIdInSubtree is true. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/ListManagementAgents.go.html to see an example of how to use ListManagementAgents API. func (client ManagementAgentClient) ListManagementAgents(ctx context.Context, request ListManagementAgentsRequest) (response ListManagementAgentsResponse, err error) { @@ -966,7 +966,7 @@ func (client ManagementAgentClient) listManagementAgents(ctx context.Context, re // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client ManagementAgentClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -1023,7 +1023,7 @@ func (client ManagementAgentClient) listWorkRequestErrors(ctx context.Context, r // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client ManagementAgentClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -1080,7 +1080,7 @@ func (client ManagementAgentClient) listWorkRequestLogs(ctx context.Context, req // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client ManagementAgentClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -1138,7 +1138,7 @@ func (client ManagementAgentClient) listWorkRequests(ctx context.Context, reques // SetAutoUpgradableConfig Sets the AutoUpgradable configuration for all agents in a tenancy. // The supplied compartmentId must be a tenancy root. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/SetAutoUpgradableConfig.go.html to see an example of how to use SetAutoUpgradableConfig API. func (client ManagementAgentClient) SetAutoUpgradableConfig(ctx context.Context, request SetAutoUpgradableConfigRequest) (response SetAutoUpgradableConfigResponse, err error) { @@ -1201,7 +1201,7 @@ func (client ManagementAgentClient) setAutoUpgradableConfig(ctx context.Context, // SummarizeManagementAgentCounts Gets count of the inventory of agents for a given compartment id, group by, and isPluginDeployed parameters. // Supported groupBy parameters: availabilityStatus, platformType, version // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/SummarizeManagementAgentCounts.go.html to see an example of how to use SummarizeManagementAgentCounts API. func (client ManagementAgentClient) SummarizeManagementAgentCounts(ctx context.Context, request SummarizeManagementAgentCountsRequest) (response SummarizeManagementAgentCountsResponse, err error) { @@ -1259,7 +1259,7 @@ func (client ManagementAgentClient) summarizeManagementAgentCounts(ctx context.C // SummarizeManagementAgentPluginCounts Gets count of the inventory of management agent plugins for a given compartment id and group by parameter. // Supported groupBy parameter: pluginName // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/SummarizeManagementAgentPluginCounts.go.html to see an example of how to use SummarizeManagementAgentPluginCounts API. func (client ManagementAgentClient) SummarizeManagementAgentPluginCounts(ctx context.Context, request SummarizeManagementAgentPluginCountsRequest) (response SummarizeManagementAgentPluginCountsResponse, err error) { @@ -1316,7 +1316,7 @@ func (client ManagementAgentClient) summarizeManagementAgentPluginCounts(ctx con // UpdateManagementAgent API to update the console managed properties of the Management Agent. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/UpdateManagementAgent.go.html to see an example of how to use UpdateManagementAgent API. func (client ManagementAgentClient) UpdateManagementAgent(ctx context.Context, request UpdateManagementAgentRequest) (response UpdateManagementAgentResponse, err error) { @@ -1378,7 +1378,7 @@ func (client ManagementAgentClient) updateManagementAgent(ctx context.Context, r // UpdateManagementAgentInstallKey API to update the modifiable properties of the Management Agent install key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementagent/UpdateManagementAgentInstallKey.go.html to see an example of how to use UpdateManagementAgentInstallKey API. func (client ManagementAgentClient) UpdateManagementAgentInstallKey(ctx context.Context, request UpdateManagementAgentInstallKeyRequest) (response UpdateManagementAgentInstallKeyResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/managementdashboard/managementdashboard_dashxapis_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/managementdashboard/managementdashboard_dashxapis_client.go index 8d4115033de..b1d3ce96ceb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/managementdashboard/managementdashboard_dashxapis_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/managementdashboard/managementdashboard_dashxapis_client.go @@ -94,7 +94,7 @@ func (client *DashxApisClient) ConfigurationProvider() *common.ConfigurationProv // ChangeManagementDashboardsCompartment Moves the dashboard from the existing compartment to a new compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/ChangeManagementDashboardsCompartment.go.html to see an example of how to use ChangeManagementDashboardsCompartment API. func (client DashxApisClient) ChangeManagementDashboardsCompartment(ctx context.Context, request ChangeManagementDashboardsCompartmentRequest) (response ChangeManagementDashboardsCompartmentResponse, err error) { @@ -156,7 +156,7 @@ func (client DashxApisClient) changeManagementDashboardsCompartment(ctx context. // ChangeManagementSavedSearchesCompartment Moves the saved search from the existing compartment to a new compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/ChangeManagementSavedSearchesCompartment.go.html to see an example of how to use ChangeManagementSavedSearchesCompartment API. func (client DashxApisClient) ChangeManagementSavedSearchesCompartment(ctx context.Context, request ChangeManagementSavedSearchesCompartmentRequest) (response ChangeManagementSavedSearchesCompartmentResponse, err error) { @@ -221,7 +221,7 @@ func (client DashxApisClient) changeManagementSavedSearchesCompartment(ctx conte // `oci management-dashboard dashboard get --management-dashboard-id "ocid1.managementdashboard.oc1..dashboardId1" --query data > Create.json.` // You can then modify the Create.json file by removing the `id` attribute and making other required changes, and use the `oci management-dashboard dashboard create` command. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/CreateManagementDashboard.go.html to see an example of how to use CreateManagementDashboard API. func (client DashxApisClient) CreateManagementDashboard(ctx context.Context, request CreateManagementDashboardRequest) (response CreateManagementDashboardResponse, err error) { @@ -286,7 +286,7 @@ func (client DashxApisClient) createManagementDashboard(ctx context.Context, req // `oci management-dashboard saved-search get --management-saved-search-id ocid1.managementsavedsearch.oc1..savedsearchId1 --query data > Create.json`. // You can then modify the Create.json file by removing the `id` attribute and making other required changes, and use the `oci management-dashboard saved-search create` command. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/CreateManagementSavedSearch.go.html to see an example of how to use CreateManagementSavedSearch API. func (client DashxApisClient) CreateManagementSavedSearch(ctx context.Context, request CreateManagementSavedSearchRequest) (response CreateManagementSavedSearchResponse, err error) { @@ -348,7 +348,7 @@ func (client DashxApisClient) createManagementSavedSearch(ctx context.Context, r // DeleteManagementDashboard Deletes a Dashboard by ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/DeleteManagementDashboard.go.html to see an example of how to use DeleteManagementDashboard API. func (client DashxApisClient) DeleteManagementDashboard(ctx context.Context, request DeleteManagementDashboardRequest) (response DeleteManagementDashboardResponse, err error) { @@ -405,7 +405,7 @@ func (client DashxApisClient) deleteManagementDashboard(ctx context.Context, req // DeleteManagementSavedSearch Deletes a saved search by ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/DeleteManagementSavedSearch.go.html to see an example of how to use DeleteManagementSavedSearch API. func (client DashxApisClient) DeleteManagementSavedSearch(ctx context.Context, request DeleteManagementSavedSearchRequest) (response DeleteManagementSavedSearchResponse, err error) { @@ -464,7 +464,7 @@ func (client DashxApisClient) deleteManagementSavedSearch(ctx context.Context, r // Here's an example of how you can use CLI to export a dashboard: // `$oci management-dashboard dashboard export --query data --export-dashboard-id "{\"dashboardIds\":[\"ocid1.managementdashboard.oc1..dashboardId1\"]}" > dashboards.json` // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/ExportDashboard.go.html to see an example of how to use ExportDashboard API. func (client DashxApisClient) ExportDashboard(ctx context.Context, request ExportDashboardRequest) (response ExportDashboardResponse, err error) { @@ -526,7 +526,7 @@ func (client DashxApisClient) exportDashboard(ctx context.Context, request commo // GetManagementDashboard Gets a dashboard and its saved searches by ID. Deleted or unauthorized saved searches are marked by tile's state property. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/GetManagementDashboard.go.html to see an example of how to use GetManagementDashboard API. func (client DashxApisClient) GetManagementDashboard(ctx context.Context, request GetManagementDashboardRequest) (response GetManagementDashboardResponse, err error) { @@ -588,7 +588,7 @@ func (client DashxApisClient) getManagementDashboard(ctx context.Context, reques // GetManagementSavedSearch Gets a saved search by ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/GetManagementSavedSearch.go.html to see an example of how to use GetManagementSavedSearch API. func (client DashxApisClient) GetManagementSavedSearch(ctx context.Context, request GetManagementSavedSearchRequest) (response GetManagementSavedSearchResponse, err error) { @@ -655,7 +655,7 @@ func (client DashxApisClient) getManagementSavedSearch(ctx context.Context, requ // Here's an example of how you can use CLI to import: // `oci management-dashboard dashboard import --from-json file://Import.json` // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/ImportDashboard.go.html to see an example of how to use ImportDashboard API. func (client DashxApisClient) ImportDashboard(ctx context.Context, request ImportDashboardRequest) (response ImportDashboardResponse, err error) { @@ -717,7 +717,7 @@ func (client DashxApisClient) importDashboard(ctx context.Context, request commo // ListManagementDashboards Gets the list of dashboards in a compartment with pagination. Returned properties are the summary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/ListManagementDashboards.go.html to see an example of how to use ListManagementDashboards API. func (client DashxApisClient) ListManagementDashboards(ctx context.Context, request ListManagementDashboardsRequest) (response ListManagementDashboardsResponse, err error) { @@ -774,7 +774,7 @@ func (client DashxApisClient) listManagementDashboards(ctx context.Context, requ // ListManagementSavedSearches Gets the list of saved searches in a compartment with pagination. Returned properties are the summary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/ListManagementSavedSearches.go.html to see an example of how to use ListManagementSavedSearches API. func (client DashxApisClient) ListManagementSavedSearches(ctx context.Context, request ListManagementSavedSearchesRequest) (response ListManagementSavedSearchesResponse, err error) { @@ -831,7 +831,7 @@ func (client DashxApisClient) listManagementSavedSearches(ctx context.Context, r // UpdateManagementDashboard Updates an existing dashboard identified by ID path parameter. CompartmentId can be modified only by the changeCompartment API. Limit for number of saved searches in a dashboard is 20. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/UpdateManagementDashboard.go.html to see an example of how to use UpdateManagementDashboard API. func (client DashxApisClient) UpdateManagementDashboard(ctx context.Context, request UpdateManagementDashboardRequest) (response UpdateManagementDashboardResponse, err error) { @@ -893,7 +893,7 @@ func (client DashxApisClient) updateManagementDashboard(ctx context.Context, req // UpdateManagementSavedSearch Updates an existing saved search identified by ID path parameter. CompartmentId can be modified only by the changeCompartment API. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/managementdashboard/UpdateManagementSavedSearch.go.html to see an example of how to use UpdateManagementSavedSearch API. func (client DashxApisClient) UpdateManagementSavedSearch(ctx context.Context, request UpdateManagementSavedSearchRequest) (response UpdateManagementSavedSearchResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/create_image_publication_package.go b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/create_image_publication_package.go index 35d0f7a067c..3352061afce 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/create_image_publication_package.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/create_image_publication_package.go @@ -31,17 +31,17 @@ type CreateImagePublicationPackage struct { ImageId *string `mandatory:"false" json:"imageId"` } -//GetPackageVersion returns PackageVersion +// GetPackageVersion returns PackageVersion func (m CreateImagePublicationPackage) GetPackageVersion() *string { return m.PackageVersion } -//GetOperatingSystem returns OperatingSystem +// GetOperatingSystem returns OperatingSystem func (m CreateImagePublicationPackage) GetOperatingSystem() *OperatingSystem { return m.OperatingSystem } -//GetEula returns Eula +// GetEula returns Eula func (m CreateImagePublicationPackage) GetEula() []Eula { return m.Eula } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/free_text_search_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/free_text_search_details.go index bd8157b49da..5a3751313d4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/free_text_search_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/free_text_search_details.go @@ -26,7 +26,7 @@ type FreeTextSearchDetails struct { MatchingContextType MatchingContextTypeEnumEnum `mandatory:"false" json:"matchingContextType,omitempty"` } -//GetMatchingContextType returns MatchingContextType +// GetMatchingContextType returns MatchingContextType func (m FreeTextSearchDetails) GetMatchingContextType() MatchingContextTypeEnumEnum { return m.MatchingContextType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/image_listing_package.go b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/image_listing_package.go index eb806c85ed4..32d1269bfa9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/image_listing_package.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/image_listing_package.go @@ -53,42 +53,42 @@ type ImageListingPackage struct { ImageId *string `mandatory:"false" json:"imageId"` } -//GetDescription returns Description +// GetDescription returns Description func (m ImageListingPackage) GetDescription() *string { return m.Description } -//GetListingId returns ListingId +// GetListingId returns ListingId func (m ImageListingPackage) GetListingId() *string { return m.ListingId } -//GetVersion returns Version +// GetVersion returns Version func (m ImageListingPackage) GetVersion() *string { return m.Version } -//GetPricing returns Pricing +// GetPricing returns Pricing func (m ImageListingPackage) GetPricing() *PricingModel { return m.Pricing } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m ImageListingPackage) GetResourceId() *string { return m.ResourceId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ImageListingPackage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetOperatingSystem returns OperatingSystem +// GetOperatingSystem returns OperatingSystem func (m ImageListingPackage) GetOperatingSystem() *OperatingSystem { return m.OperatingSystem } -//GetRegions returns Regions +// GetRegions returns Regions func (m ImageListingPackage) GetRegions() []Region { return m.Regions } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/image_publication_package.go b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/image_publication_package.go index b814512971c..5abccf9a567 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/image_publication_package.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/image_publication_package.go @@ -48,32 +48,32 @@ type ImagePublicationPackage struct { ImageId *string `mandatory:"false" json:"imageId"` } -//GetDescription returns Description +// GetDescription returns Description func (m ImagePublicationPackage) GetDescription() *string { return m.Description } -//GetListingId returns ListingId +// GetListingId returns ListingId func (m ImagePublicationPackage) GetListingId() *string { return m.ListingId } -//GetVersion returns Version +// GetVersion returns Version func (m ImagePublicationPackage) GetVersion() *string { return m.Version } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m ImagePublicationPackage) GetResourceId() *string { return m.ResourceId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ImagePublicationPackage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetOperatingSystem returns OperatingSystem +// GetOperatingSystem returns OperatingSystem func (m ImagePublicationPackage) GetOperatingSystem() *OperatingSystem { return m.OperatingSystem } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/marketplace_account_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/marketplace_account_client.go index 75d9a513fb5..518bbd3b382 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/marketplace_account_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/marketplace_account_client.go @@ -93,7 +93,7 @@ func (client *AccountClient) ConfigurationProvider() *common.ConfigurationProvid // GetLaunchEligibility Returns Tenant eligibility and other information for launching a PIC image // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/GetLaunchEligibility.go.html to see an example of how to use GetLaunchEligibility API. // A default retry strategy applies to this operation GetLaunchEligibility() @@ -151,7 +151,7 @@ func (client AccountClient) getLaunchEligibility(ctx context.Context, request co // GetThirdPartyPaidListingEligibility Returns eligibility details of the tenancy to see and launch third party paid listings // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/GetThirdPartyPaidListingEligibility.go.html to see an example of how to use GetThirdPartyPaidListingEligibility API. // A default retry strategy applies to this operation GetThirdPartyPaidListingEligibility() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/marketplace_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/marketplace_client.go index 67e62c193c4..880963feb7e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/marketplace_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/marketplace_client.go @@ -93,7 +93,7 @@ func (client *MarketplaceClient) ConfigurationProvider() *common.ConfigurationPr // ChangePublicationCompartment Moves the specified publication from one compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ChangePublicationCompartment.go.html to see an example of how to use ChangePublicationCompartment API. // A default retry strategy applies to this operation ChangePublicationCompartment() @@ -157,7 +157,7 @@ func (client MarketplaceClient) changePublicationCompartment(ctx context.Context // CreateAcceptedAgreement Accepts a terms of use agreement for a specific package version of a listing. You must accept all // terms of use for a package before you can deploy the package. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/CreateAcceptedAgreement.go.html to see an example of how to use CreateAcceptedAgreement API. // A default retry strategy applies to this operation CreateAcceptedAgreement() @@ -220,7 +220,7 @@ func (client MarketplaceClient) createAcceptedAgreement(ctx context.Context, req // CreatePublication Creates a publication of the specified listing type with an optional default package. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/CreatePublication.go.html to see an example of how to use CreatePublication API. // A default retry strategy applies to this operation CreatePublication() @@ -285,7 +285,7 @@ func (client MarketplaceClient) createPublication(ctx context.Context, request c // before initiating a deployment. Listings in Marketplace that require acceptance of the specified terms // of use can no longer be deployed, but existing deployments aren't affected. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/DeleteAcceptedAgreement.go.html to see an example of how to use DeleteAcceptedAgreement API. // A default retry strategy applies to this operation DeleteAcceptedAgreement() @@ -343,7 +343,7 @@ func (client MarketplaceClient) deleteAcceptedAgreement(ctx context.Context, req // DeletePublication Deletes a publication, which also removes the associated listing from anywhere it was published, such as Marketplace or Compute. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/DeletePublication.go.html to see an example of how to use DeletePublication API. // A default retry strategy applies to this operation DeletePublication() @@ -401,7 +401,7 @@ func (client MarketplaceClient) deletePublication(ctx context.Context, request c // GetAcceptedAgreement Gets the details of a specific, previously accepted terms of use agreement. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/GetAcceptedAgreement.go.html to see an example of how to use GetAcceptedAgreement API. // A default retry strategy applies to this operation GetAcceptedAgreement() @@ -460,7 +460,7 @@ func (client MarketplaceClient) getAcceptedAgreement(ctx context.Context, reques // GetAgreement Returns a terms of use agreement for a package with a time-based signature that can be used to // accept the agreement. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/GetAgreement.go.html to see an example of how to use GetAgreement API. // A default retry strategy applies to this operation GetAgreement() @@ -529,7 +529,7 @@ func (client MarketplaceClient) getAgreement(ctx context.Context, request common // To get the image ID to launch an instance, issue a GetAppCatalogListingResourceVersion (https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/latest/AppCatalogListingResourceVersion/GetAppCatalogListingResourceVersion) API call. // Lastly, to launch the instance, use the image ID of the listing resource version to issue a LaunchInstance (https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/latest/Instance/LaunchInstance) API call. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/GetListing.go.html to see an example of how to use GetListing API. // A default retry strategy applies to this operation GetListing() @@ -597,7 +597,7 @@ func (client MarketplaceClient) getListing(ctx context.Context, request common.O // To get the image ID to launch an instance, issue a GetAppCatalogListingResourceVersion (https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/latest/AppCatalogListingResourceVersion/GetAppCatalogListingResourceVersion) API call. // Lastly, to launch the instance, use the image ID of the listing resource version to issue a LaunchInstance (https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/latest/Instance/LaunchInstance) API call. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/GetPackage.go.html to see an example of how to use GetPackage API. // A default retry strategy applies to this operation GetPackage() @@ -655,7 +655,7 @@ func (client MarketplaceClient) getPackage(ctx context.Context, request common.O // GetPublication Gets the details of the specified publication. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/GetPublication.go.html to see an example of how to use GetPublication API. // A default retry strategy applies to this operation GetPublication() @@ -713,7 +713,7 @@ func (client MarketplaceClient) getPublication(ctx context.Context, request comm // GetPublicationPackage Gets the details of a specific package version within a given publication. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/GetPublicationPackage.go.html to see an example of how to use GetPublicationPackage API. // A default retry strategy applies to this operation GetPublicationPackage() @@ -772,7 +772,7 @@ func (client MarketplaceClient) getPublicationPackage(ctx context.Context, reque // ListAcceptedAgreements Lists the terms of use agreements that have been accepted in the specified compartment. // You can filter results by specifying query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListAcceptedAgreements.go.html to see an example of how to use ListAcceptedAgreements API. // A default retry strategy applies to this operation ListAcceptedAgreements() @@ -830,7 +830,7 @@ func (client MarketplaceClient) listAcceptedAgreements(ctx context.Context, requ // ListAgreements Returns the terms of use agreements that must be accepted before you can deploy the specified version of a package. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListAgreements.go.html to see an example of how to use ListAgreements API. // A default retry strategy applies to this operation ListAgreements() @@ -889,7 +889,7 @@ func (client MarketplaceClient) listAgreements(ctx context.Context, request comm // ListCategories Gets the list of all the categories for listings published to Oracle Cloud Infrastructure Marketplace. Categories apply // to the software product provided by the listing. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListCategories.go.html to see an example of how to use ListCategories API. // A default retry strategy applies to this operation ListCategories() @@ -958,7 +958,7 @@ func (client MarketplaceClient) listCategories(ctx context.Context, request comm // To get the image ID to launch an instance, issue a GetAppCatalogListingResourceVersion (https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/latest/AppCatalogListingResourceVersion/GetAppCatalogListingResourceVersion) API call. // Lastly, to launch the instance, use the image ID of the listing resource version to issue a LaunchInstance (https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/latest/Instance/LaunchInstance) API call. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListListings.go.html to see an example of how to use ListListings API. // A default retry strategy applies to this operation ListListings() @@ -1026,7 +1026,7 @@ func (client MarketplaceClient) listListings(ctx context.Context, request common // To get the image ID to launch an instance, issue a GetAppCatalogListingResourceVersion (https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/latest/AppCatalogListingResourceVersion/GetAppCatalogListingResourceVersion) API call. // Lastly, to launch the instance, use the image ID of the listing resource version to issue a LaunchInstance (https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/latest/Instance/LaunchInstance) API call. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListPackages.go.html to see an example of how to use ListPackages API. // A default retry strategy applies to this operation ListPackages() @@ -1084,7 +1084,7 @@ func (client MarketplaceClient) listPackages(ctx context.Context, request common // ListPublicationPackages Lists the packages in the specified publication. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListPublicationPackages.go.html to see an example of how to use ListPublicationPackages API. // A default retry strategy applies to this operation ListPublicationPackages() @@ -1142,7 +1142,7 @@ func (client MarketplaceClient) listPublicationPackages(ctx context.Context, req // ListPublications Lists the publications in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListPublications.go.html to see an example of how to use ListPublications API. // A default retry strategy applies to this operation ListPublications() @@ -1200,7 +1200,7 @@ func (client MarketplaceClient) listPublications(ctx context.Context, request co // ListPublishers Gets the list of all the publishers of listings available in Oracle Cloud Infrastructure Marketplace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListPublishers.go.html to see an example of how to use ListPublishers API. // A default retry strategy applies to this operation ListPublishers() @@ -1258,7 +1258,7 @@ func (client MarketplaceClient) listPublishers(ctx context.Context, request comm // ListReportTypes Lists available types of reports for the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListReportTypes.go.html to see an example of how to use ListReportTypes API. // A default retry strategy applies to this operation ListReportTypes() @@ -1316,7 +1316,7 @@ func (client MarketplaceClient) listReportTypes(ctx context.Context, request com // ListReports Lists reports in the compartment that match the specified report type and date. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListReports.go.html to see an example of how to use ListReports API. // A default retry strategy applies to this operation ListReports() @@ -1374,7 +1374,7 @@ func (client MarketplaceClient) listReports(ctx context.Context, request common. // ListTaxes Returns list of all tax implications that current tenant may be liable to once they launch the listing. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/ListTaxes.go.html to see an example of how to use ListTaxes API. // A default retry strategy applies to this operation ListTaxes() @@ -1433,7 +1433,7 @@ func (client MarketplaceClient) listTaxes(ctx context.Context, request common.OC // SearchListings Queries all Marketplace Applications to find listings that match the specified criteria. To search // for a listing, you can use a free text or structured search. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/SearchListings.go.html to see an example of how to use SearchListings API. // A default retry strategy applies to this operation SearchListings() @@ -1491,7 +1491,7 @@ func (client MarketplaceClient) searchListings(ctx context.Context, request comm // UpdateAcceptedAgreement Updates the display name or tags associated with a listing's previously accepted terms of use agreement. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/UpdateAcceptedAgreement.go.html to see an example of how to use UpdateAcceptedAgreement API. // A default retry strategy applies to this operation UpdateAcceptedAgreement() @@ -1554,7 +1554,7 @@ func (client MarketplaceClient) updateAcceptedAgreement(ctx context.Context, req // UpdatePublication Updates the details of an existing publication. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/marketplace/UpdatePublication.go.html to see an example of how to use UpdatePublication API. // A default retry strategy applies to this operation UpdatePublication() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/orchestration_listing_package.go b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/orchestration_listing_package.go index 597078cce43..0b8a2711231 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/orchestration_listing_package.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/orchestration_listing_package.go @@ -50,42 +50,42 @@ type OrchestrationListingPackage struct { Variables []OrchestrationVariable `mandatory:"false" json:"variables"` } -//GetDescription returns Description +// GetDescription returns Description func (m OrchestrationListingPackage) GetDescription() *string { return m.Description } -//GetListingId returns ListingId +// GetListingId returns ListingId func (m OrchestrationListingPackage) GetListingId() *string { return m.ListingId } -//GetVersion returns Version +// GetVersion returns Version func (m OrchestrationListingPackage) GetVersion() *string { return m.Version } -//GetPricing returns Pricing +// GetPricing returns Pricing func (m OrchestrationListingPackage) GetPricing() *PricingModel { return m.Pricing } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m OrchestrationListingPackage) GetResourceId() *string { return m.ResourceId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OrchestrationListingPackage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetOperatingSystem returns OperatingSystem +// GetOperatingSystem returns OperatingSystem func (m OrchestrationListingPackage) GetOperatingSystem() *OperatingSystem { return m.OperatingSystem } -//GetRegions returns Regions +// GetRegions returns Regions func (m OrchestrationListingPackage) GetRegions() []Region { return m.Regions } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/orchestration_publication_package.go b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/orchestration_publication_package.go index 7e1cd60fb8e..0ac38fd21bd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/orchestration_publication_package.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/orchestration_publication_package.go @@ -45,32 +45,32 @@ type OrchestrationPublicationPackage struct { Variables []OrchestrationVariable `mandatory:"false" json:"variables"` } -//GetDescription returns Description +// GetDescription returns Description func (m OrchestrationPublicationPackage) GetDescription() *string { return m.Description } -//GetListingId returns ListingId +// GetListingId returns ListingId func (m OrchestrationPublicationPackage) GetListingId() *string { return m.ListingId } -//GetVersion returns Version +// GetVersion returns Version func (m OrchestrationPublicationPackage) GetVersion() *string { return m.Version } -//GetResourceId returns ResourceId +// GetResourceId returns ResourceId func (m OrchestrationPublicationPackage) GetResourceId() *string { return m.ResourceId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OrchestrationPublicationPackage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetOperatingSystem returns OperatingSystem +// GetOperatingSystem returns OperatingSystem func (m OrchestrationPublicationPackage) GetOperatingSystem() *OperatingSystem { return m.OperatingSystem } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/structured_search_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/structured_search_details.go index 54f406e93ac..c2736a04b37 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/structured_search_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/marketplace/structured_search_details.go @@ -27,7 +27,7 @@ type StructuredSearchDetails struct { MatchingContextType MatchingContextTypeEnumEnum `mandatory:"false" json:"matchingContextType,omitempty"` } -//GetMatchingContextType returns MatchingContextType +// GetMatchingContextType returns MatchingContextType func (m StructuredSearchDetails) GetMatchingContextType() MatchingContextTypeEnumEnum { return m.MatchingContextType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/create_media_workflow_job_by_id_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/create_media_workflow_job_by_id_details.go index f76753bf4d1..52b6bf6bb9a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/create_media_workflow_job_by_id_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/create_media_workflow_job_by_id_details.go @@ -48,32 +48,32 @@ type CreateMediaWorkflowJobByIdDetails struct { MediaWorkflowId *string `mandatory:"false" json:"mediaWorkflowId"` } -//GetMediaWorkflowConfigurationIds returns MediaWorkflowConfigurationIds +// GetMediaWorkflowConfigurationIds returns MediaWorkflowConfigurationIds func (m CreateMediaWorkflowJobByIdDetails) GetMediaWorkflowConfigurationIds() []string { return m.MediaWorkflowConfigurationIds } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateMediaWorkflowJobByIdDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateMediaWorkflowJobByIdDetails) GetDisplayName() *string { return m.DisplayName } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateMediaWorkflowJobByIdDetails) GetParameters() map[string]interface{} { return m.Parameters } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMediaWorkflowJobByIdDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMediaWorkflowJobByIdDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/create_media_workflow_job_by_name_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/create_media_workflow_job_by_name_details.go index 98306b637c5..a31595a62b5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/create_media_workflow_job_by_name_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/create_media_workflow_job_by_name_details.go @@ -48,32 +48,32 @@ type CreateMediaWorkflowJobByNameDetails struct { MediaWorkflowName *string `mandatory:"false" json:"mediaWorkflowName"` } -//GetMediaWorkflowConfigurationIds returns MediaWorkflowConfigurationIds +// GetMediaWorkflowConfigurationIds returns MediaWorkflowConfigurationIds func (m CreateMediaWorkflowJobByNameDetails) GetMediaWorkflowConfigurationIds() []string { return m.MediaWorkflowConfigurationIds } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateMediaWorkflowJobByNameDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateMediaWorkflowJobByNameDetails) GetDisplayName() *string { return m.DisplayName } -//GetParameters returns Parameters +// GetParameters returns Parameters func (m CreateMediaWorkflowJobByNameDetails) GetParameters() map[string]interface{} { return m.Parameters } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMediaWorkflowJobByNameDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMediaWorkflowJobByNameDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/dash_stream_packaging_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/dash_stream_packaging_config.go index 57b255dc708..b959695fbac 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/dash_stream_packaging_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/dash_stream_packaging_config.go @@ -59,62 +59,62 @@ type DashStreamPackagingConfig struct { LifecycleState StreamPackagingConfigLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m DashStreamPackagingConfig) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m DashStreamPackagingConfig) GetCompartmentId() *string { return m.CompartmentId } -//GetDistributionChannelId returns DistributionChannelId +// GetDistributionChannelId returns DistributionChannelId func (m DashStreamPackagingConfig) GetDistributionChannelId() *string { return m.DistributionChannelId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DashStreamPackagingConfig) GetDisplayName() *string { return m.DisplayName } -//GetSegmentTimeInSeconds returns SegmentTimeInSeconds +// GetSegmentTimeInSeconds returns SegmentTimeInSeconds func (m DashStreamPackagingConfig) GetSegmentTimeInSeconds() *int { return m.SegmentTimeInSeconds } -//GetEncryption returns Encryption +// GetEncryption returns Encryption func (m DashStreamPackagingConfig) GetEncryption() StreamPackagingConfigEncryption { return m.Encryption } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m DashStreamPackagingConfig) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m DashStreamPackagingConfig) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m DashStreamPackagingConfig) GetLifecycleState() StreamPackagingConfigLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m DashStreamPackagingConfig) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m DashStreamPackagingConfig) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m DashStreamPackagingConfig) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/hls_stream_packaging_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/hls_stream_packaging_config.go index c510e649bb3..7d027f403b3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/hls_stream_packaging_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/hls_stream_packaging_config.go @@ -59,62 +59,62 @@ type HlsStreamPackagingConfig struct { LifecycleState StreamPackagingConfigLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m HlsStreamPackagingConfig) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m HlsStreamPackagingConfig) GetCompartmentId() *string { return m.CompartmentId } -//GetDistributionChannelId returns DistributionChannelId +// GetDistributionChannelId returns DistributionChannelId func (m HlsStreamPackagingConfig) GetDistributionChannelId() *string { return m.DistributionChannelId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m HlsStreamPackagingConfig) GetDisplayName() *string { return m.DisplayName } -//GetSegmentTimeInSeconds returns SegmentTimeInSeconds +// GetSegmentTimeInSeconds returns SegmentTimeInSeconds func (m HlsStreamPackagingConfig) GetSegmentTimeInSeconds() *int { return m.SegmentTimeInSeconds } -//GetEncryption returns Encryption +// GetEncryption returns Encryption func (m HlsStreamPackagingConfig) GetEncryption() StreamPackagingConfigEncryption { return m.Encryption } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m HlsStreamPackagingConfig) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m HlsStreamPackagingConfig) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m HlsStreamPackagingConfig) GetLifecycleState() StreamPackagingConfigLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m HlsStreamPackagingConfig) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m HlsStreamPackagingConfig) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m HlsStreamPackagingConfig) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/mediaservices_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/mediaservices_client.go index 2292a0d231d..2db19e3398b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/mediaservices_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/mediaservices_client.go @@ -94,7 +94,7 @@ func (client *MediaServicesClient) ConfigurationProvider() *common.Configuration // ChangeMediaAssetCompartment Moves a MediaAsset resource from one compartment identifier to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ChangeMediaAssetCompartment.go.html to see an example of how to use ChangeMediaAssetCompartment API. // A default retry strategy applies to this operation ChangeMediaAssetCompartment() @@ -157,7 +157,7 @@ func (client MediaServicesClient) changeMediaAssetCompartment(ctx context.Contex // ChangeMediaWorkflowCompartment Moves a MediaWorkflow resource from one compartment identifier to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ChangeMediaWorkflowCompartment.go.html to see an example of how to use ChangeMediaWorkflowCompartment API. // A default retry strategy applies to this operation ChangeMediaWorkflowCompartment() @@ -220,7 +220,7 @@ func (client MediaServicesClient) changeMediaWorkflowCompartment(ctx context.Con // ChangeMediaWorkflowConfigurationCompartment Moves a MediaWorkflowConfiguration resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ChangeMediaWorkflowConfigurationCompartment.go.html to see an example of how to use ChangeMediaWorkflowConfigurationCompartment API. // A default retry strategy applies to this operation ChangeMediaWorkflowConfigurationCompartment() @@ -283,7 +283,7 @@ func (client MediaServicesClient) changeMediaWorkflowConfigurationCompartment(ct // ChangeMediaWorkflowJobCompartment Moves a MediaWorkflowJob resource from one compartment identifier to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ChangeMediaWorkflowJobCompartment.go.html to see an example of how to use ChangeMediaWorkflowJobCompartment API. // A default retry strategy applies to this operation ChangeMediaWorkflowJobCompartment() @@ -346,7 +346,7 @@ func (client MediaServicesClient) changeMediaWorkflowJobCompartment(ctx context. // ChangeStreamDistributionChannelCompartment Moves a Stream Distribution Channel resource from one compartment identifier to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ChangeStreamDistributionChannelCompartment.go.html to see an example of how to use ChangeStreamDistributionChannelCompartment API. // A default retry strategy applies to this operation ChangeStreamDistributionChannelCompartment() @@ -409,7 +409,7 @@ func (client MediaServicesClient) changeStreamDistributionChannelCompartment(ctx // CreateMediaAsset Creates a new MediaAsset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/CreateMediaAsset.go.html to see an example of how to use CreateMediaAsset API. // A default retry strategy applies to this operation CreateMediaAsset() @@ -472,7 +472,7 @@ func (client MediaServicesClient) createMediaAsset(ctx context.Context, request // CreateMediaWorkflow Creates a new MediaWorkflow. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/CreateMediaWorkflow.go.html to see an example of how to use CreateMediaWorkflow API. // A default retry strategy applies to this operation CreateMediaWorkflow() @@ -535,7 +535,7 @@ func (client MediaServicesClient) createMediaWorkflow(ctx context.Context, reque // CreateMediaWorkflowConfiguration Creates a new MediaWorkflowConfiguration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/CreateMediaWorkflowConfiguration.go.html to see an example of how to use CreateMediaWorkflowConfiguration API. // A default retry strategy applies to this operation CreateMediaWorkflowConfiguration() @@ -598,7 +598,7 @@ func (client MediaServicesClient) createMediaWorkflowConfiguration(ctx context.C // CreateMediaWorkflowJob Run the MediaWorkflow according to the given mediaWorkflow definition and configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/CreateMediaWorkflowJob.go.html to see an example of how to use CreateMediaWorkflowJob API. // A default retry strategy applies to this operation CreateMediaWorkflowJob() @@ -661,7 +661,7 @@ func (client MediaServicesClient) createMediaWorkflowJob(ctx context.Context, re // CreateStreamCdnConfig Creates a new CDN Configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/CreateStreamCdnConfig.go.html to see an example of how to use CreateStreamCdnConfig API. // A default retry strategy applies to this operation CreateStreamCdnConfig() @@ -724,7 +724,7 @@ func (client MediaServicesClient) createStreamCdnConfig(ctx context.Context, req // CreateStreamDistributionChannel Creates a new Stream Distribution Channel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/CreateStreamDistributionChannel.go.html to see an example of how to use CreateStreamDistributionChannel API. // A default retry strategy applies to this operation CreateStreamDistributionChannel() @@ -787,7 +787,7 @@ func (client MediaServicesClient) createStreamDistributionChannel(ctx context.Co // CreateStreamPackagingConfig Creates a new Packaging Configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/CreateStreamPackagingConfig.go.html to see an example of how to use CreateStreamPackagingConfig API. // A default retry strategy applies to this operation CreateStreamPackagingConfig() @@ -850,7 +850,7 @@ func (client MediaServicesClient) createStreamPackagingConfig(ctx context.Contex // DeleteMediaAsset Deletes a MediaAsset resource by identifier. If DeleteChildren is passed in as the mode, all the assets with the parentMediaAssetId matching the ID will be deleted. If DeleteDerivatives is set as the mode, all the assets with the masterMediaAssetId matching the ID will be deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/DeleteMediaAsset.go.html to see an example of how to use DeleteMediaAsset API. // A default retry strategy applies to this operation DeleteMediaAsset() @@ -908,7 +908,7 @@ func (client MediaServicesClient) deleteMediaAsset(ctx context.Context, request // DeleteMediaAssetDistributionChannelAttachment Deletes a MediaAsset from the DistributionChannel by identifiers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/DeleteMediaAssetDistributionChannelAttachment.go.html to see an example of how to use DeleteMediaAssetDistributionChannelAttachment API. // A default retry strategy applies to this operation DeleteMediaAssetDistributionChannelAttachment() @@ -966,7 +966,7 @@ func (client MediaServicesClient) deleteMediaAssetDistributionChannelAttachment( // DeleteMediaWorkflow The MediaWorkflow lifecycleState will change to DELETED. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/DeleteMediaWorkflow.go.html to see an example of how to use DeleteMediaWorkflow API. // A default retry strategy applies to this operation DeleteMediaWorkflow() @@ -1024,7 +1024,7 @@ func (client MediaServicesClient) deleteMediaWorkflow(ctx context.Context, reque // DeleteMediaWorkflowConfiguration Deletes a MediaWorkflowConfiguration resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/DeleteMediaWorkflowConfiguration.go.html to see an example of how to use DeleteMediaWorkflowConfiguration API. // A default retry strategy applies to this operation DeleteMediaWorkflowConfiguration() @@ -1082,7 +1082,7 @@ func (client MediaServicesClient) deleteMediaWorkflowConfiguration(ctx context.C // DeleteMediaWorkflowJob This is an asynchronous operation. The MediaWorkflowJob lifecycleState will change to CANCELING temporarily until the job is completely CANCELED. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/DeleteMediaWorkflowJob.go.html to see an example of how to use DeleteMediaWorkflowJob API. // A default retry strategy applies to this operation DeleteMediaWorkflowJob() @@ -1140,7 +1140,7 @@ func (client MediaServicesClient) deleteMediaWorkflowJob(ctx context.Context, re // DeleteStreamCdnConfig The StreamCdnConfig lifecycleState will change to DELETED. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/DeleteStreamCdnConfig.go.html to see an example of how to use DeleteStreamCdnConfig API. // A default retry strategy applies to this operation DeleteStreamCdnConfig() @@ -1198,7 +1198,7 @@ func (client MediaServicesClient) deleteStreamCdnConfig(ctx context.Context, req // DeleteStreamDistributionChannel The Stream Distribution Channel lifecycleState will change to DELETED. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/DeleteStreamDistributionChannel.go.html to see an example of how to use DeleteStreamDistributionChannel API. // A default retry strategy applies to this operation DeleteStreamDistributionChannel() @@ -1256,7 +1256,7 @@ func (client MediaServicesClient) deleteStreamDistributionChannel(ctx context.Co // DeleteStreamPackagingConfig The Stream Packaging Configuration lifecycleState will change to DELETED. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/DeleteStreamPackagingConfig.go.html to see an example of how to use DeleteStreamPackagingConfig API. // A default retry strategy applies to this operation DeleteStreamPackagingConfig() @@ -1314,7 +1314,7 @@ func (client MediaServicesClient) deleteStreamPackagingConfig(ctx context.Contex // GetMediaAsset Gets a MediaAsset by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GetMediaAsset.go.html to see an example of how to use GetMediaAsset API. // A default retry strategy applies to this operation GetMediaAsset() @@ -1372,7 +1372,7 @@ func (client MediaServicesClient) getMediaAsset(ctx context.Context, request com // GetMediaAssetDistributionChannelAttachment Gets a MediaAssetDistributionChannelAttachment for a MediaAsset by identifiers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GetMediaAssetDistributionChannelAttachment.go.html to see an example of how to use GetMediaAssetDistributionChannelAttachment API. // A default retry strategy applies to this operation GetMediaAssetDistributionChannelAttachment() @@ -1430,7 +1430,7 @@ func (client MediaServicesClient) getMediaAssetDistributionChannelAttachment(ctx // GetMediaWorkflow Gets a MediaWorkflow by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GetMediaWorkflow.go.html to see an example of how to use GetMediaWorkflow API. // A default retry strategy applies to this operation GetMediaWorkflow() @@ -1488,7 +1488,7 @@ func (client MediaServicesClient) getMediaWorkflow(ctx context.Context, request // GetMediaWorkflowConfiguration Gets a MediaWorkflowConfiguration by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GetMediaWorkflowConfiguration.go.html to see an example of how to use GetMediaWorkflowConfiguration API. // A default retry strategy applies to this operation GetMediaWorkflowConfiguration() @@ -1546,7 +1546,7 @@ func (client MediaServicesClient) getMediaWorkflowConfiguration(ctx context.Cont // GetMediaWorkflowJob Gets the MediaWorkflowJob. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GetMediaWorkflowJob.go.html to see an example of how to use GetMediaWorkflowJob API. // A default retry strategy applies to this operation GetMediaWorkflowJob() @@ -1604,7 +1604,7 @@ func (client MediaServicesClient) getMediaWorkflowJob(ctx context.Context, reque // GetMediaWorkflowJobFact Get the MediaWorkflowJobFact identified by the mediaWorkflowJobId and Fact ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GetMediaWorkflowJobFact.go.html to see an example of how to use GetMediaWorkflowJobFact API. // A default retry strategy applies to this operation GetMediaWorkflowJobFact() @@ -1662,7 +1662,7 @@ func (client MediaServicesClient) getMediaWorkflowJobFact(ctx context.Context, r // GetStreamCdnConfig Gets a StreamCdnConfig by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GetStreamCdnConfig.go.html to see an example of how to use GetStreamCdnConfig API. // A default retry strategy applies to this operation GetStreamCdnConfig() @@ -1720,7 +1720,7 @@ func (client MediaServicesClient) getStreamCdnConfig(ctx context.Context, reques // GetStreamDistributionChannel Gets a Stream Distribution Channel by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GetStreamDistributionChannel.go.html to see an example of how to use GetStreamDistributionChannel API. // A default retry strategy applies to this operation GetStreamDistributionChannel() @@ -1778,7 +1778,7 @@ func (client MediaServicesClient) getStreamDistributionChannel(ctx context.Conte // GetStreamPackagingConfig Gets a Stream Packaging Configuration by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GetStreamPackagingConfig.go.html to see an example of how to use GetStreamPackagingConfig API. // A default retry strategy applies to this operation GetStreamPackagingConfig() @@ -1836,7 +1836,7 @@ func (client MediaServicesClient) getStreamPackagingConfig(ctx context.Context, // IngestStreamDistributionChannel Ingests an Asset into a Distribution Channel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/IngestStreamDistributionChannel.go.html to see an example of how to use IngestStreamDistributionChannel API. // A default retry strategy applies to this operation IngestStreamDistributionChannel() @@ -1899,7 +1899,7 @@ func (client MediaServicesClient) ingestStreamDistributionChannel(ctx context.Co // ListMediaAssetDistributionChannelAttachments Lists the MediaAssetDistributionChannelAttachments for a MediaAsset by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListMediaAssetDistributionChannelAttachments.go.html to see an example of how to use ListMediaAssetDistributionChannelAttachments API. // A default retry strategy applies to this operation ListMediaAssetDistributionChannelAttachments() @@ -1957,7 +1957,7 @@ func (client MediaServicesClient) listMediaAssetDistributionChannelAttachments(c // ListMediaAssets Returns a list of MediaAssetSummary. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListMediaAssets.go.html to see an example of how to use ListMediaAssets API. // A default retry strategy applies to this operation ListMediaAssets() @@ -2015,7 +2015,7 @@ func (client MediaServicesClient) listMediaAssets(ctx context.Context, request c // ListMediaWorkflowConfigurations Returns a list of MediaWorkflowConfigurations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListMediaWorkflowConfigurations.go.html to see an example of how to use ListMediaWorkflowConfigurations API. // A default retry strategy applies to this operation ListMediaWorkflowConfigurations() @@ -2073,7 +2073,7 @@ func (client MediaServicesClient) listMediaWorkflowConfigurations(ctx context.Co // ListMediaWorkflowJobFacts Internal API to get a point-in-time snapshot of a MediaWorkflowJob. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListMediaWorkflowJobFacts.go.html to see an example of how to use ListMediaWorkflowJobFacts API. // A default retry strategy applies to this operation ListMediaWorkflowJobFacts() @@ -2131,7 +2131,7 @@ func (client MediaServicesClient) listMediaWorkflowJobFacts(ctx context.Context, // ListMediaWorkflowJobs Lists the MediaWorkflowJobs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListMediaWorkflowJobs.go.html to see an example of how to use ListMediaWorkflowJobs API. // A default retry strategy applies to this operation ListMediaWorkflowJobs() @@ -2189,7 +2189,7 @@ func (client MediaServicesClient) listMediaWorkflowJobs(ctx context.Context, req // ListMediaWorkflowTaskDeclarations Returns a list of MediaWorkflowTaskDeclarations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListMediaWorkflowTaskDeclarations.go.html to see an example of how to use ListMediaWorkflowTaskDeclarations API. // A default retry strategy applies to this operation ListMediaWorkflowTaskDeclarations() @@ -2247,7 +2247,7 @@ func (client MediaServicesClient) listMediaWorkflowTaskDeclarations(ctx context. // ListMediaWorkflows Lists the MediaWorkflows. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListMediaWorkflows.go.html to see an example of how to use ListMediaWorkflows API. // A default retry strategy applies to this operation ListMediaWorkflows() @@ -2305,7 +2305,7 @@ func (client MediaServicesClient) listMediaWorkflows(ctx context.Context, reques // ListStreamCdnConfigs Lists the StreamCdnConfig. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListStreamCdnConfigs.go.html to see an example of how to use ListStreamCdnConfigs API. // A default retry strategy applies to this operation ListStreamCdnConfigs() @@ -2363,7 +2363,7 @@ func (client MediaServicesClient) listStreamCdnConfigs(ctx context.Context, requ // ListStreamDistributionChannels Lists the Stream Distribution Channels. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListStreamDistributionChannels.go.html to see an example of how to use ListStreamDistributionChannels API. // A default retry strategy applies to this operation ListStreamDistributionChannels() @@ -2421,7 +2421,7 @@ func (client MediaServicesClient) listStreamDistributionChannels(ctx context.Con // ListStreamPackagingConfigs Lists the Stream Packaging Configurations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListStreamPackagingConfigs.go.html to see an example of how to use ListStreamPackagingConfigs API. // A default retry strategy applies to this operation ListStreamPackagingConfigs() @@ -2479,7 +2479,7 @@ func (client MediaServicesClient) listStreamPackagingConfigs(ctx context.Context // ListSystemMediaWorkflows Lists the SystemMediaWorkflows that can be used to run a job by name or as a template to create a MediaWorkflow. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/ListSystemMediaWorkflows.go.html to see an example of how to use ListSystemMediaWorkflows API. // A default retry strategy applies to this operation ListSystemMediaWorkflows() @@ -2537,7 +2537,7 @@ func (client MediaServicesClient) listSystemMediaWorkflows(ctx context.Context, // UpdateMediaAsset Updates the MediaAsset. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/UpdateMediaAsset.go.html to see an example of how to use UpdateMediaAsset API. // A default retry strategy applies to this operation UpdateMediaAsset() @@ -2595,7 +2595,7 @@ func (client MediaServicesClient) updateMediaAsset(ctx context.Context, request // UpdateMediaWorkflow Updates the MediaWorkflow. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/UpdateMediaWorkflow.go.html to see an example of how to use UpdateMediaWorkflow API. // A default retry strategy applies to this operation UpdateMediaWorkflow() @@ -2653,7 +2653,7 @@ func (client MediaServicesClient) updateMediaWorkflow(ctx context.Context, reque // UpdateMediaWorkflowConfiguration Updates the MediaWorkflowConfiguration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/UpdateMediaWorkflowConfiguration.go.html to see an example of how to use UpdateMediaWorkflowConfiguration API. // A default retry strategy applies to this operation UpdateMediaWorkflowConfiguration() @@ -2711,7 +2711,7 @@ func (client MediaServicesClient) updateMediaWorkflowConfiguration(ctx context.C // UpdateMediaWorkflowJob Updates the MediaWorkflowJob. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/UpdateMediaWorkflowJob.go.html to see an example of how to use UpdateMediaWorkflowJob API. // A default retry strategy applies to this operation UpdateMediaWorkflowJob() @@ -2769,7 +2769,7 @@ func (client MediaServicesClient) updateMediaWorkflowJob(ctx context.Context, re // UpdateStreamCdnConfig Updates the StreamCdnConfig. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/UpdateStreamCdnConfig.go.html to see an example of how to use UpdateStreamCdnConfig API. // A default retry strategy applies to this operation UpdateStreamCdnConfig() @@ -2827,7 +2827,7 @@ func (client MediaServicesClient) updateStreamCdnConfig(ctx context.Context, req // UpdateStreamDistributionChannel Updates the Stream Distribution Channel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/UpdateStreamDistributionChannel.go.html to see an example of how to use UpdateStreamDistributionChannel API. // A default retry strategy applies to this operation UpdateStreamDistributionChannel() @@ -2885,7 +2885,7 @@ func (client MediaServicesClient) updateStreamDistributionChannel(ctx context.Co // UpdateStreamPackagingConfig Updates the Stream Packaging Configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/UpdateStreamPackagingConfig.go.html to see an example of how to use UpdateStreamPackagingConfig API. // A default retry strategy applies to this operation UpdateStreamPackagingConfig() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/mediaservices_mediastream_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/mediaservices_mediastream_client.go index 4a49a3b6ade..503debd081a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/mediaservices_mediastream_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mediaservices/mediaservices_mediastream_client.go @@ -94,7 +94,7 @@ func (client *MediaStreamClient) ConfigurationProvider() *common.ConfigurationPr // GeneratePlaylist Gets the playlist content for the specified Packaging Configuration and Media Asset combination. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GeneratePlaylist.go.html to see an example of how to use GeneratePlaylist API. // A default retry strategy applies to this operation GeneratePlaylist() @@ -151,7 +151,7 @@ func (client MediaStreamClient) generatePlaylist(ctx context.Context, request co // GenerateSessionToken Generate a new streaming session token. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mediaservices/GenerateSessionToken.go.html to see an example of how to use GenerateSessionToken API. // A default retry strategy applies to this operation GenerateSessionToken() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/monitoring/monitoring_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/monitoring/monitoring_client.go index 70f96681eec..b6b8f51aff7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/monitoring/monitoring_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/monitoring/monitoring_client.go @@ -96,7 +96,7 @@ func (client *MonitoringClient) ConfigurationProvider() *common.ConfigurationPro // ChangeAlarmCompartment Moves an alarm into a different compartment within the same tenancy. // For information about moving resources between compartments, see Moving Resources Between Compartments (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/ChangeAlarmCompartment.go.html to see an example of how to use ChangeAlarmCompartment API. func (client MonitoringClient) ChangeAlarmCompartment(ctx context.Context, request ChangeAlarmCompartmentRequest) (response ChangeAlarmCompartmentResponse, err error) { @@ -162,7 +162,7 @@ func (client MonitoringClient) changeAlarmCompartment(ctx context.Context, reque // Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, // or transactions, per second (TPS) for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/CreateAlarm.go.html to see an example of how to use CreateAlarm API. func (client MonitoringClient) CreateAlarm(ctx context.Context, request CreateAlarmRequest) (response CreateAlarmResponse, err error) { @@ -228,7 +228,7 @@ func (client MonitoringClient) createAlarm(ctx context.Context, request common.O // Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, // or transactions, per second (TPS) for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/DeleteAlarm.go.html to see an example of how to use DeleteAlarm API. func (client MonitoringClient) DeleteAlarm(ctx context.Context, request DeleteAlarmRequest) (response DeleteAlarmResponse, err error) { @@ -289,7 +289,7 @@ func (client MonitoringClient) deleteAlarm(ctx context.Context, request common.O // Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, // or transactions, per second (TPS) for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/GetAlarm.go.html to see an example of how to use GetAlarm API. func (client MonitoringClient) GetAlarm(ctx context.Context, request GetAlarmRequest) (response GetAlarmResponse, err error) { @@ -350,7 +350,7 @@ func (client MonitoringClient) getAlarm(ctx context.Context, request common.OCIR // Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, // or transactions, per second (TPS) for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/GetAlarmHistory.go.html to see an example of how to use GetAlarmHistory API. func (client MonitoringClient) GetAlarmHistory(ctx context.Context, request GetAlarmHistoryRequest) (response GetAlarmHistoryResponse, err error) { @@ -411,7 +411,7 @@ func (client MonitoringClient) getAlarmHistory(ctx context.Context, request comm // Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, // or transactions, per second (TPS) for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/ListAlarms.go.html to see an example of how to use ListAlarms API. func (client MonitoringClient) ListAlarms(ctx context.Context, request ListAlarmsRequest) (response ListAlarmsResponse, err error) { @@ -475,7 +475,7 @@ func (client MonitoringClient) listAlarms(ctx context.Context, request common.OC // Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, // or transactions, per second (TPS) for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/ListAlarmsStatus.go.html to see an example of how to use ListAlarmsStatus API. func (client MonitoringClient) ListAlarmsStatus(ctx context.Context, request ListAlarmsStatusRequest) (response ListAlarmsStatusResponse, err error) { @@ -535,7 +535,7 @@ func (client MonitoringClient) listAlarmsStatus(ctx context.Context, request com // For important limits information, see Limits on Monitoring (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#Limits). // Transactions Per Second (TPS) per-tenancy limit for this operation: 10. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/ListMetrics.go.html to see an example of how to use ListMetrics API. func (client MonitoringClient) ListMetrics(ctx context.Context, request ListMetricsRequest) (response ListMetricsResponse, err error) { @@ -604,7 +604,7 @@ func (client MonitoringClient) listMetrics(ctx context.Context, request common.O // The endpoints for this operation differ from other Monitoring operations. Replace the string `telemetry` with `telemetry-ingestion` in the endpoint, as in the following example: // https://telemetry-ingestion.eu-frankfurt-1.oraclecloud.com // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/PostMetricData.go.html to see an example of how to use PostMetricData API. func (client MonitoringClient) PostMetricData(ctx context.Context, request PostMetricDataRequest) (response PostMetricDataResponse, err error) { @@ -665,7 +665,7 @@ func (client MonitoringClient) postMetricData(ctx context.Context, request commo // Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, // or transactions, per second (TPS) for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/RemoveAlarmSuppression.go.html to see an example of how to use RemoveAlarmSuppression API. func (client MonitoringClient) RemoveAlarmSuppression(ctx context.Context, request RemoveAlarmSuppressionRequest) (response RemoveAlarmSuppressionResponse, err error) { @@ -723,14 +723,16 @@ func (client MonitoringClient) removeAlarmSuppression(ctx context.Context, reque // RetrieveDimensionStates Lists the current alarm status of each metric stream, where status is derived from the metric stream's last associated transition. // Optionally filter by status value and one or more dimension key-value pairs. // This operation is only valid for alarms that have notifications per dimension enabled (`isNotificationsPerMetricDimensionEnabled=true`). -// If `isNotificationsPerMetricDimensionEnabled` for the alarm is false or null, then no results are returned. +// +// If `isNotificationsPerMetricDimensionEnabled` for the alarm is false or null, then no results are returned. +// // For important limits information, see Limits on Monitoring (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#Limits). // -// This call is subject to a Monitoring limit that applies to the total number of requests across all alarm operations. -// Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, -// or transactions, per second (TPS) for a given tenancy. +// This call is subject to a Monitoring limit that applies to the total number of requests across all alarm operations. +// Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, +// or transactions, per second (TPS) for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/RetrieveDimensionStates.go.html to see an example of how to use RetrieveDimensionStates API. func (client MonitoringClient) RetrieveDimensionStates(ctx context.Context, request RetrieveDimensionStatesRequest) (response RetrieveDimensionStatesResponse, err error) { @@ -790,7 +792,7 @@ func (client MonitoringClient) retrieveDimensionStates(ctx context.Context, requ // For important limits information, see Limits on Monitoring (https://docs.cloud.oracle.com/iaas/Content/Monitoring/Concepts/monitoringoverview.htm#Limits). // Transactions Per Second (TPS) per-tenancy limit for this operation: 10. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/SummarizeMetricsData.go.html to see an example of how to use SummarizeMetricsData API. func (client MonitoringClient) SummarizeMetricsData(ctx context.Context, request SummarizeMetricsDataRequest) (response SummarizeMetricsDataResponse, err error) { @@ -851,7 +853,7 @@ func (client MonitoringClient) summarizeMetricsData(ctx context.Context, request // Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, // or transactions, per second (TPS) for a given tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/monitoring/UpdateAlarm.go.html to see an example of how to use UpdateAlarm API. func (client MonitoringClient) UpdateAlarm(ctx context.Context, request UpdateAlarmRequest) (response UpdateAlarmResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_channels_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_channels_client.go index 1c66d0f3a5f..cc9eee80740 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_channels_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_channels_client.go @@ -93,7 +93,7 @@ func (client *ChannelsClient) ConfigurationProvider() *common.ConfigurationProvi // CreateChannel Creates a Channel to establish replication from a source to a target. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/CreateChannel.go.html to see an example of how to use CreateChannel API. // A default retry strategy applies to this operation CreateChannel() @@ -156,7 +156,7 @@ func (client ChannelsClient) createChannel(ctx context.Context, request common.O // DeleteChannel Deletes the specified Channel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/DeleteChannel.go.html to see an example of how to use DeleteChannel API. // A default retry strategy applies to this operation DeleteChannel() @@ -216,7 +216,7 @@ func (client ChannelsClient) deleteChannel(ctx context.Context, request common.O // configuration parameters (passwords are omitted), as well as information about // the state of the Channel, its sources and targets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/GetChannel.go.html to see an example of how to use GetChannel API. // A default retry strategy applies to this operation GetChannel() @@ -274,7 +274,7 @@ func (client ChannelsClient) getChannel(ctx context.Context, request common.OCIR // ListChannels Lists all the Channels that match the specified filters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListChannels.go.html to see an example of how to use ListChannels API. // A default retry strategy applies to this operation ListChannels() @@ -333,7 +333,7 @@ func (client ChannelsClient) listChannels(ctx context.Context, request common.OC // ResetChannel Resets the specified Channel by purging its cached information, leaving the Channel // as if it had just been created. This operation is only accepted in Inactive Channels. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ResetChannel.go.html to see an example of how to use ResetChannel API. // A default retry strategy applies to this operation ResetChannel() @@ -398,7 +398,7 @@ func (client ChannelsClient) resetChannel(ctx context.Context, request common.OC // requires that the error that cause the Channel to become Inactive has already been fixed, // otherwise the operation may fail. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ResumeChannel.go.html to see an example of how to use ResumeChannel API. // A default retry strategy applies to this operation ResumeChannel() @@ -464,7 +464,7 @@ func (client ChannelsClient) resumeChannel(ctx context.Context, request common.O // parameters to the Channel and the Channel may become temporarily unavailable. Otherwise, the // new configuration will be applied the next time the Channel becomes Active. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/UpdateChannel.go.html to see an example of how to use UpdateChannel API. // A default retry strategy applies to this operation UpdateChannel() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_dbbackups_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_dbbackups_client.go index 51454d4b205..abd5c5b894f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_dbbackups_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_dbbackups_client.go @@ -94,7 +94,7 @@ func (client *DbBackupsClient) ConfigurationProvider() *common.ConfigurationProv // ChangeBackupCompartment Moves a DB System Backup into a different compartment. // When provided, If-Match is checked against ETag values of the Backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ChangeBackupCompartment.go.html to see an example of how to use ChangeBackupCompartment API. func (client DbBackupsClient) ChangeBackupCompartment(ctx context.Context, request ChangeBackupCompartmentRequest) (response ChangeBackupCompartmentResponse, err error) { @@ -156,7 +156,7 @@ func (client DbBackupsClient) changeBackupCompartment(ctx context.Context, reque // CreateBackup Create a backup of a DB System. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/CreateBackup.go.html to see an example of how to use CreateBackup API. // A default retry strategy applies to this operation CreateBackup() @@ -219,7 +219,7 @@ func (client DbBackupsClient) createBackup(ctx context.Context, request common.O // DeleteBackup Delete a Backup. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/DeleteBackup.go.html to see an example of how to use DeleteBackup API. // A default retry strategy applies to this operation DeleteBackup() @@ -277,7 +277,7 @@ func (client DbBackupsClient) deleteBackup(ctx context.Context, request common.O // GetBackup Get information about the specified Backup // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/GetBackup.go.html to see an example of how to use GetBackup API. // A default retry strategy applies to this operation GetBackup() @@ -335,7 +335,7 @@ func (client DbBackupsClient) getBackup(ctx context.Context, request common.OCIR // ListBackups Get a list of DB System backups. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListBackups.go.html to see an example of how to use ListBackups API. // A default retry strategy applies to this operation ListBackups() @@ -393,7 +393,7 @@ func (client DbBackupsClient) listBackups(ctx context.Context, request common.OC // UpdateBackup Update the metadata of a Backup. Metadata such as the displayName or description // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/UpdateBackup.go.html to see an example of how to use UpdateBackup API. // A default retry strategy applies to this operation UpdateBackup() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_dbsystem_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_dbsystem_client.go index 0c044a1d25d..3ae0e700499 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_dbsystem_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_dbsystem_client.go @@ -93,7 +93,7 @@ func (client *DbSystemClient) ConfigurationProvider() *common.ConfigurationProvi // AddHeatWaveCluster Adds a HeatWave cluster to the DB System. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/AddHeatWaveCluster.go.html to see an example of how to use AddHeatWaveCluster API. // A default retry strategy applies to this operation AddHeatWaveCluster() @@ -156,7 +156,7 @@ func (client DbSystemClient) addHeatWaveCluster(ctx context.Context, request com // CreateDbSystem Creates and launches a DB System. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/CreateDbSystem.go.html to see an example of how to use CreateDbSystem API. // A default retry strategy applies to this operation CreateDbSystem() @@ -220,7 +220,7 @@ func (client DbSystemClient) createDbSystem(ctx context.Context, request common. // DeleteDbSystem Delete a DB System, including terminating, detaching, // removing, finalizing and otherwise deleting all related resources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/DeleteDbSystem.go.html to see an example of how to use DeleteDbSystem API. // A default retry strategy applies to this operation DeleteDbSystem() @@ -279,7 +279,7 @@ func (client DbSystemClient) deleteDbSystem(ctx context.Context, request common. // DeleteHeatWaveCluster Deletes the HeatWave cluster including terminating, detaching, removing, finalizing and // otherwise deleting all related resources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/DeleteHeatWaveCluster.go.html to see an example of how to use DeleteHeatWaveCluster API. // A default retry strategy applies to this operation DeleteHeatWaveCluster() @@ -337,7 +337,7 @@ func (client DbSystemClient) deleteHeatWaveCluster(ctx context.Context, request // GenerateHeatWaveClusterMemoryEstimate Sends a request to estimate the memory footprints of user tables when loaded to HeatWave cluster memory. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/GenerateHeatWaveClusterMemoryEstimate.go.html to see an example of how to use GenerateHeatWaveClusterMemoryEstimate API. // A default retry strategy applies to this operation GenerateHeatWaveClusterMemoryEstimate() @@ -400,7 +400,7 @@ func (client DbSystemClient) generateHeatWaveClusterMemoryEstimate(ctx context.C // GetDbSystem Get information about the specified DB System. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/GetDbSystem.go.html to see an example of how to use GetDbSystem API. // A default retry strategy applies to this operation GetDbSystem() @@ -458,7 +458,7 @@ func (client DbSystemClient) getDbSystem(ctx context.Context, request common.OCI // GetHeatWaveCluster Gets information about the HeatWave cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/GetHeatWaveCluster.go.html to see an example of how to use GetHeatWaveCluster API. // A default retry strategy applies to this operation GetHeatWaveCluster() @@ -517,7 +517,7 @@ func (client DbSystemClient) getHeatWaveCluster(ctx context.Context, request com // GetHeatWaveClusterMemoryEstimate Gets the most recent HeatWave cluster memory estimate that can be used to determine a suitable // HeatWave cluster size. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/GetHeatWaveClusterMemoryEstimate.go.html to see an example of how to use GetHeatWaveClusterMemoryEstimate API. // A default retry strategy applies to this operation GetHeatWaveClusterMemoryEstimate() @@ -576,7 +576,7 @@ func (client DbSystemClient) getHeatWaveClusterMemoryEstimate(ctx context.Contex // ListDbSystems Get a list of DB Systems in the specified compartment. // The default sort order is by timeUpdated, descending. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListDbSystems.go.html to see an example of how to use ListDbSystems API. // A default retry strategy applies to this operation ListDbSystems() @@ -634,7 +634,7 @@ func (client DbSystemClient) listDbSystems(ctx context.Context, request common.O // RestartDbSystem Restarts the specified DB System. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/RestartDbSystem.go.html to see an example of how to use RestartDbSystem API. // A default retry strategy applies to this operation RestartDbSystem() @@ -697,7 +697,7 @@ func (client DbSystemClient) restartDbSystem(ctx context.Context, request common // RestartHeatWaveCluster Restarts the HeatWave cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/RestartHeatWaveCluster.go.html to see an example of how to use RestartHeatWaveCluster API. // A default retry strategy applies to this operation RestartHeatWaveCluster() @@ -760,7 +760,7 @@ func (client DbSystemClient) restartHeatWaveCluster(ctx context.Context, request // StartDbSystem Start the specified DB System. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/StartDbSystem.go.html to see an example of how to use StartDbSystem API. // A default retry strategy applies to this operation StartDbSystem() @@ -823,7 +823,7 @@ func (client DbSystemClient) startDbSystem(ctx context.Context, request common.O // StartHeatWaveCluster Starts the HeatWave cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/StartHeatWaveCluster.go.html to see an example of how to use StartHeatWaveCluster API. // A default retry strategy applies to this operation StartHeatWaveCluster() @@ -887,7 +887,7 @@ func (client DbSystemClient) startHeatWaveCluster(ctx context.Context, request c // StopDbSystem Stops the specified DB System. // A stopped DB System is not billed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/StopDbSystem.go.html to see an example of how to use StopDbSystem API. // A default retry strategy applies to this operation StopDbSystem() @@ -950,7 +950,7 @@ func (client DbSystemClient) stopDbSystem(ctx context.Context, request common.OC // StopHeatWaveCluster Stops the HeatWave cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/StopHeatWaveCluster.go.html to see an example of how to use StopHeatWaveCluster API. // A default retry strategy applies to this operation StopHeatWaveCluster() @@ -1019,7 +1019,7 @@ func (client DbSystemClient) stopHeatWaveCluster(ctx context.Context, request co // Compute resources, pausing the DB System and migrating storage // before making the DB System available again. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/UpdateDbSystem.go.html to see an example of how to use UpdateDbSystem API. // A default retry strategy applies to this operation UpdateDbSystem() @@ -1077,7 +1077,7 @@ func (client DbSystemClient) updateDbSystem(ctx context.Context, request common. // UpdateHeatWaveCluster Updates the HeatWave cluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/UpdateHeatWaveCluster.go.html to see an example of how to use UpdateHeatWaveCluster API. // A default retry strategy applies to this operation UpdateHeatWaveCluster() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_mysqlaas_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_mysqlaas_client.go index 2aefbf5e59d..cbe9dca3655 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_mysqlaas_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_mysqlaas_client.go @@ -93,7 +93,7 @@ func (client *MysqlaasClient) ConfigurationProvider() *common.ConfigurationProvi // CreateConfiguration Creates a new Configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/CreateConfiguration.go.html to see an example of how to use CreateConfiguration API. func (client MysqlaasClient) CreateConfiguration(ctx context.Context, request CreateConfigurationRequest) (response CreateConfigurationResponse, err error) { @@ -156,7 +156,7 @@ func (client MysqlaasClient) createConfiguration(ctx context.Context, request co // DeleteConfiguration Deletes a Configuration. // The Configuration must not be in use by any DB Systems. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/DeleteConfiguration.go.html to see an example of how to use DeleteConfiguration API. // A default retry strategy applies to this operation DeleteConfiguration() @@ -214,7 +214,7 @@ func (client MysqlaasClient) deleteConfiguration(ctx context.Context, request co // GetConfiguration Get the full details of the specified Configuration, including the list of MySQL Variables and their values. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/GetConfiguration.go.html to see an example of how to use GetConfiguration API. // A default retry strategy applies to this operation GetConfiguration() @@ -277,7 +277,7 @@ func (client MysqlaasClient) getConfiguration(ctx context.Context, request commo // - DEFAULT-before-CUSTOM // - displayName ascending // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListConfigurations.go.html to see an example of how to use ListConfigurations API. // A default retry strategy applies to this operation ListConfigurations() @@ -338,7 +338,7 @@ func (client MysqlaasClient) listConfigurations(ctx context.Context, request com // CPU cores and memory for VM shapes; CPU cores, memory and // storage for non-VM (or bare metal) shapes. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListShapes.go.html to see an example of how to use ListShapes API. // A default retry strategy applies to this operation ListShapes() @@ -397,7 +397,7 @@ func (client MysqlaasClient) listShapes(ctx context.Context, request common.OCIR // ListVersions Get a list of supported and available MySQL database major versions. // The list is sorted by version family. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListVersions.go.html to see an example of how to use ListVersions API. // A default retry strategy applies to this operation ListVersions() @@ -455,7 +455,7 @@ func (client MysqlaasClient) listVersions(ctx context.Context, request common.OC // UpdateConfiguration Updates the Configuration details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/UpdateConfiguration.go.html to see an example of how to use UpdateConfiguration API. // A default retry strategy applies to this operation UpdateConfiguration() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_replicas_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_replicas_client.go index 05a79ad540a..bbee8b8261b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_replicas_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_replicas_client.go @@ -93,7 +93,7 @@ func (client *ReplicasClient) ConfigurationProvider() *common.ConfigurationProvi // CreateReplica Creates a DB System read replica. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/CreateReplica.go.html to see an example of how to use CreateReplica API. // A default retry strategy applies to this operation CreateReplica() @@ -156,7 +156,7 @@ func (client ReplicasClient) createReplica(ctx context.Context, request common.O // DeleteReplica Deletes the specified read replica. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/DeleteReplica.go.html to see an example of how to use DeleteReplica API. // A default retry strategy applies to this operation DeleteReplica() @@ -214,7 +214,7 @@ func (client ReplicasClient) deleteReplica(ctx context.Context, request common.O // GetReplica Gets the full details of the specified read replica. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/GetReplica.go.html to see an example of how to use GetReplica API. // A default retry strategy applies to this operation GetReplica() @@ -272,7 +272,7 @@ func (client ReplicasClient) getReplica(ctx context.Context, request common.OCIR // ListReplicas Lists all the read replicas that match the specified filters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListReplicas.go.html to see an example of how to use ListReplicas API. // A default retry strategy applies to this operation ListReplicas() @@ -330,7 +330,7 @@ func (client ReplicasClient) listReplicas(ctx context.Context, request common.OC // UpdateReplica Updates the properties of the specified read replica. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/UpdateReplica.go.html to see an example of how to use UpdateReplica API. // A default retry strategy applies to this operation UpdateReplica() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_workrequests_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_workrequests_client.go index d39365ae458..9e17991598b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_workrequests_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/mysql/mysql_workrequests_client.go @@ -93,7 +93,7 @@ func (client *WorkRequestsClient) ConfigurationProvider() *common.ConfigurationP // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -151,7 +151,7 @@ func (client WorkRequestsClient) getWorkRequest(ctx context.Context, request com // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -209,7 +209,7 @@ func (client WorkRequestsClient) listWorkRequestErrors(ctx context.Context, requ // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -267,7 +267,7 @@ func (client WorkRequestsClient) listWorkRequestLogs(ctx context.Context, reques // ListWorkRequests Lists the work requests in a specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/mysql/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/networkfirewall/networkfirewall_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/networkfirewall/networkfirewall_client.go index 8a0221066f4..c1fa024004b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/networkfirewall/networkfirewall_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/networkfirewall/networkfirewall_client.go @@ -93,7 +93,7 @@ func (client *NetworkFirewallClient) ConfigurationProvider() *common.Configurati // CancelWorkRequest Cancel work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -151,7 +151,7 @@ func (client NetworkFirewallClient) cancelWorkRequest(ctx context.Context, reque // ChangeNetworkFirewallCompartment Moves a NetworkFirewall resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/ChangeNetworkFirewallCompartment.go.html to see an example of how to use ChangeNetworkFirewallCompartment API. // A default retry strategy applies to this operation ChangeNetworkFirewallCompartment() @@ -209,7 +209,7 @@ func (client NetworkFirewallClient) changeNetworkFirewallCompartment(ctx context // ChangeNetworkFirewallPolicyCompartment Moves a NetworkFirewallPolicy resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/ChangeNetworkFirewallPolicyCompartment.go.html to see an example of how to use ChangeNetworkFirewallPolicyCompartment API. // A default retry strategy applies to this operation ChangeNetworkFirewallPolicyCompartment() @@ -272,7 +272,7 @@ func (client NetworkFirewallClient) changeNetworkFirewallPolicyCompartment(ctx c // CreateNetworkFirewall Creates a new NetworkFirewall. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/CreateNetworkFirewall.go.html to see an example of how to use CreateNetworkFirewall API. // A default retry strategy applies to this operation CreateNetworkFirewall() @@ -335,7 +335,7 @@ func (client NetworkFirewallClient) createNetworkFirewall(ctx context.Context, r // CreateNetworkFirewallPolicy Creates a new Network Firewall Policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/CreateNetworkFirewallPolicy.go.html to see an example of how to use CreateNetworkFirewallPolicy API. // A default retry strategy applies to this operation CreateNetworkFirewallPolicy() @@ -398,7 +398,7 @@ func (client NetworkFirewallClient) createNetworkFirewallPolicy(ctx context.Cont // DeleteNetworkFirewall Deletes a NetworkFirewall resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/DeleteNetworkFirewall.go.html to see an example of how to use DeleteNetworkFirewall API. // A default retry strategy applies to this operation DeleteNetworkFirewall() @@ -456,7 +456,7 @@ func (client NetworkFirewallClient) deleteNetworkFirewall(ctx context.Context, r // DeleteNetworkFirewallPolicy Deletes a NetworkFirewallPolicy resource with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/DeleteNetworkFirewallPolicy.go.html to see an example of how to use DeleteNetworkFirewallPolicy API. // A default retry strategy applies to this operation DeleteNetworkFirewallPolicy() @@ -514,7 +514,7 @@ func (client NetworkFirewallClient) deleteNetworkFirewallPolicy(ctx context.Cont // GetNetworkFirewall Gets a NetworkFirewall by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/GetNetworkFirewall.go.html to see an example of how to use GetNetworkFirewall API. // A default retry strategy applies to this operation GetNetworkFirewall() @@ -572,7 +572,7 @@ func (client NetworkFirewallClient) getNetworkFirewall(ctx context.Context, requ // GetNetworkFirewallPolicy Gets a NetworkFirewallPolicy given the network firewall policy identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/GetNetworkFirewallPolicy.go.html to see an example of how to use GetNetworkFirewallPolicy API. // A default retry strategy applies to this operation GetNetworkFirewallPolicy() @@ -630,7 +630,7 @@ func (client NetworkFirewallClient) getNetworkFirewallPolicy(ctx context.Context // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -688,7 +688,7 @@ func (client NetworkFirewallClient) getWorkRequest(ctx context.Context, request // ListNetworkFirewallPolicies Returns a list of Network Firewall Policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/ListNetworkFirewallPolicies.go.html to see an example of how to use ListNetworkFirewallPolicies API. // A default retry strategy applies to this operation ListNetworkFirewallPolicies() @@ -746,7 +746,7 @@ func (client NetworkFirewallClient) listNetworkFirewallPolicies(ctx context.Cont // ListNetworkFirewalls Returns a list of NetworkFirewalls. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/ListNetworkFirewalls.go.html to see an example of how to use ListNetworkFirewalls API. // A default retry strategy applies to this operation ListNetworkFirewalls() @@ -804,7 +804,7 @@ func (client NetworkFirewallClient) listNetworkFirewalls(ctx context.Context, re // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -862,7 +862,7 @@ func (client NetworkFirewallClient) listWorkRequestErrors(ctx context.Context, r // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -920,7 +920,7 @@ func (client NetworkFirewallClient) listWorkRequestLogs(ctx context.Context, req // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -978,7 +978,7 @@ func (client NetworkFirewallClient) listWorkRequests(ctx context.Context, reques // UpdateNetworkFirewall Updates the NetworkFirewall // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/UpdateNetworkFirewall.go.html to see an example of how to use UpdateNetworkFirewall API. // A default retry strategy applies to this operation UpdateNetworkFirewall() @@ -1036,7 +1036,7 @@ func (client NetworkFirewallClient) updateNetworkFirewall(ctx context.Context, r // UpdateNetworkFirewallPolicy Updates the NetworkFirewallPolicy // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkfirewall/UpdateNetworkFirewallPolicy.go.html to see an example of how to use UpdateNetworkFirewallPolicy API. // A default retry strategy applies to this operation UpdateNetworkFirewallPolicy() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/networkfirewall/vault_mapped_secret.go b/vendor/github.com/oracle/oci-go-sdk/v65/networkfirewall/vault_mapped_secret.go index d88f2594d7b..4051ac52ae8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/networkfirewall/vault_mapped_secret.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/networkfirewall/vault_mapped_secret.go @@ -31,7 +31,7 @@ type VaultMappedSecret struct { Type MappedSecretTypeEnum `mandatory:"true" json:"type"` } -//GetType returns Type +// GetType returns Type func (m VaultMappedSecret) GetType() MappedSecretTypeEnum { return m.Type } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/networkloadbalancer/networkloadbalancer_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/networkloadbalancer/networkloadbalancer_client.go index 531e5221add..c48dbd0a525 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/networkloadbalancer/networkloadbalancer_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/networkloadbalancer/networkloadbalancer_client.go @@ -94,7 +94,7 @@ func (client *NetworkLoadBalancerClient) ConfigurationProvider() *common.Configu // ChangeNetworkLoadBalancerCompartment Moves a network load balancer into a different compartment within the same tenancy. For information about moving resources // between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ChangeNetworkLoadBalancerCompartment.go.html to see an example of how to use ChangeNetworkLoadBalancerCompartment API. func (client NetworkLoadBalancerClient) ChangeNetworkLoadBalancerCompartment(ctx context.Context, request ChangeNetworkLoadBalancerCompartmentRequest) (response ChangeNetworkLoadBalancerCompartmentResponse, err error) { @@ -156,7 +156,7 @@ func (client NetworkLoadBalancerClient) changeNetworkLoadBalancerCompartment(ctx // CreateBackend Adds a backend server to a backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/CreateBackend.go.html to see an example of how to use CreateBackend API. func (client NetworkLoadBalancerClient) CreateBackend(ctx context.Context, request CreateBackendRequest) (response CreateBackendResponse, err error) { @@ -218,7 +218,7 @@ func (client NetworkLoadBalancerClient) createBackend(ctx context.Context, reque // CreateBackendSet Adds a backend set to a network load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/CreateBackendSet.go.html to see an example of how to use CreateBackendSet API. func (client NetworkLoadBalancerClient) CreateBackendSet(ctx context.Context, request CreateBackendSetRequest) (response CreateBackendSetResponse, err error) { @@ -280,7 +280,7 @@ func (client NetworkLoadBalancerClient) createBackendSet(ctx context.Context, re // CreateListener Adds a listener to a network load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/CreateListener.go.html to see an example of how to use CreateListener API. func (client NetworkLoadBalancerClient) CreateListener(ctx context.Context, request CreateListenerRequest) (response CreateListenerResponse, err error) { @@ -342,7 +342,7 @@ func (client NetworkLoadBalancerClient) createListener(ctx context.Context, requ // CreateNetworkLoadBalancer Creates a network load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/CreateNetworkLoadBalancer.go.html to see an example of how to use CreateNetworkLoadBalancer API. func (client NetworkLoadBalancerClient) CreateNetworkLoadBalancer(ctx context.Context, request CreateNetworkLoadBalancerRequest) (response CreateNetworkLoadBalancerResponse, err error) { @@ -404,7 +404,7 @@ func (client NetworkLoadBalancerClient) createNetworkLoadBalancer(ctx context.Co // DeleteBackend Removes a backend server from a given network load balancer and backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/DeleteBackend.go.html to see an example of how to use DeleteBackend API. func (client NetworkLoadBalancerClient) DeleteBackend(ctx context.Context, request DeleteBackendRequest) (response DeleteBackendResponse, err error) { @@ -462,7 +462,7 @@ func (client NetworkLoadBalancerClient) deleteBackend(ctx context.Context, reque // DeleteBackendSet Deletes the specified backend set. Note that deleting a backend set removes its backend servers from the network load balancer. // Before you can delete a backend set, you must remove it from any active listeners. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/DeleteBackendSet.go.html to see an example of how to use DeleteBackendSet API. func (client NetworkLoadBalancerClient) DeleteBackendSet(ctx context.Context, request DeleteBackendSetRequest) (response DeleteBackendSetResponse, err error) { @@ -519,7 +519,7 @@ func (client NetworkLoadBalancerClient) deleteBackendSet(ctx context.Context, re // DeleteListener Deletes a listener from a network load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/DeleteListener.go.html to see an example of how to use DeleteListener API. func (client NetworkLoadBalancerClient) DeleteListener(ctx context.Context, request DeleteListenerRequest) (response DeleteListenerResponse, err error) { @@ -576,7 +576,7 @@ func (client NetworkLoadBalancerClient) deleteListener(ctx context.Context, requ // DeleteNetworkLoadBalancer Deletes a network load balancer resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/DeleteNetworkLoadBalancer.go.html to see an example of how to use DeleteNetworkLoadBalancer API. func (client NetworkLoadBalancerClient) DeleteNetworkLoadBalancer(ctx context.Context, request DeleteNetworkLoadBalancerRequest) (response DeleteNetworkLoadBalancerResponse, err error) { @@ -633,7 +633,7 @@ func (client NetworkLoadBalancerClient) deleteNetworkLoadBalancer(ctx context.Co // GetBackend Retrieves the configuration information for the specified backend server. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/GetBackend.go.html to see an example of how to use GetBackend API. func (client NetworkLoadBalancerClient) GetBackend(ctx context.Context, request GetBackendRequest) (response GetBackendResponse, err error) { @@ -690,7 +690,7 @@ func (client NetworkLoadBalancerClient) getBackend(ctx context.Context, request // GetBackendHealth Retrieves the current health status of the specified backend server. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/GetBackendHealth.go.html to see an example of how to use GetBackendHealth API. func (client NetworkLoadBalancerClient) GetBackendHealth(ctx context.Context, request GetBackendHealthRequest) (response GetBackendHealthResponse, err error) { @@ -747,7 +747,7 @@ func (client NetworkLoadBalancerClient) getBackendHealth(ctx context.Context, re // GetBackendSet Retrieves the configuration information for the specified backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/GetBackendSet.go.html to see an example of how to use GetBackendSet API. func (client NetworkLoadBalancerClient) GetBackendSet(ctx context.Context, request GetBackendSetRequest) (response GetBackendSetResponse, err error) { @@ -804,7 +804,7 @@ func (client NetworkLoadBalancerClient) getBackendSet(ctx context.Context, reque // GetBackendSetHealth Retrieves the health status for the specified backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/GetBackendSetHealth.go.html to see an example of how to use GetBackendSetHealth API. func (client NetworkLoadBalancerClient) GetBackendSetHealth(ctx context.Context, request GetBackendSetHealthRequest) (response GetBackendSetHealthResponse, err error) { @@ -861,7 +861,7 @@ func (client NetworkLoadBalancerClient) getBackendSetHealth(ctx context.Context, // GetHealthChecker Retrieves the health check policy information for a given network load balancer and backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/GetHealthChecker.go.html to see an example of how to use GetHealthChecker API. func (client NetworkLoadBalancerClient) GetHealthChecker(ctx context.Context, request GetHealthCheckerRequest) (response GetHealthCheckerResponse, err error) { @@ -923,7 +923,7 @@ func (client NetworkLoadBalancerClient) getHealthChecker(ctx context.Context, re // GetListener Retrieves listener properties associated with a given network load balancer and listener name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/GetListener.go.html to see an example of how to use GetListener API. func (client NetworkLoadBalancerClient) GetListener(ctx context.Context, request GetListenerRequest) (response GetListenerResponse, err error) { @@ -980,7 +980,7 @@ func (client NetworkLoadBalancerClient) getListener(ctx context.Context, request // GetNetworkLoadBalancer Retrieves network load balancer configuration information by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/GetNetworkLoadBalancer.go.html to see an example of how to use GetNetworkLoadBalancer API. func (client NetworkLoadBalancerClient) GetNetworkLoadBalancer(ctx context.Context, request GetNetworkLoadBalancerRequest) (response GetNetworkLoadBalancerResponse, err error) { @@ -1037,7 +1037,7 @@ func (client NetworkLoadBalancerClient) getNetworkLoadBalancer(ctx context.Conte // GetNetworkLoadBalancerHealth Retrieves the health status for the specified network load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/GetNetworkLoadBalancerHealth.go.html to see an example of how to use GetNetworkLoadBalancerHealth API. func (client NetworkLoadBalancerClient) GetNetworkLoadBalancerHealth(ctx context.Context, request GetNetworkLoadBalancerHealthRequest) (response GetNetworkLoadBalancerHealthResponse, err error) { @@ -1094,7 +1094,7 @@ func (client NetworkLoadBalancerClient) getNetworkLoadBalancerHealth(ctx context // GetWorkRequest Retrieves the details of the work request with the given identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client NetworkLoadBalancerClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -1151,7 +1151,7 @@ func (client NetworkLoadBalancerClient) getWorkRequest(ctx context.Context, requ // ListBackendSets Lists all backend sets associated with a given network load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListBackendSets.go.html to see an example of how to use ListBackendSets API. func (client NetworkLoadBalancerClient) ListBackendSets(ctx context.Context, request ListBackendSetsRequest) (response ListBackendSetsResponse, err error) { @@ -1208,7 +1208,7 @@ func (client NetworkLoadBalancerClient) listBackendSets(ctx context.Context, req // ListBackends Lists the backend servers for a given network load balancer and backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListBackends.go.html to see an example of how to use ListBackends API. func (client NetworkLoadBalancerClient) ListBackends(ctx context.Context, request ListBackendsRequest) (response ListBackendsResponse, err error) { @@ -1265,7 +1265,7 @@ func (client NetworkLoadBalancerClient) listBackends(ctx context.Context, reques // ListListeners Lists all listeners associated with a given network load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListListeners.go.html to see an example of how to use ListListeners API. func (client NetworkLoadBalancerClient) ListListeners(ctx context.Context, request ListListenersRequest) (response ListListenersResponse, err error) { @@ -1322,7 +1322,7 @@ func (client NetworkLoadBalancerClient) listListeners(ctx context.Context, reque // ListNetworkLoadBalancerHealths Lists the summary health statuses for all network load balancers in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListNetworkLoadBalancerHealths.go.html to see an example of how to use ListNetworkLoadBalancerHealths API. func (client NetworkLoadBalancerClient) ListNetworkLoadBalancerHealths(ctx context.Context, request ListNetworkLoadBalancerHealthsRequest) (response ListNetworkLoadBalancerHealthsResponse, err error) { @@ -1379,7 +1379,7 @@ func (client NetworkLoadBalancerClient) listNetworkLoadBalancerHealths(ctx conte // ListNetworkLoadBalancers Returns a list of network load balancers. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListNetworkLoadBalancers.go.html to see an example of how to use ListNetworkLoadBalancers API. func (client NetworkLoadBalancerClient) ListNetworkLoadBalancers(ctx context.Context, request ListNetworkLoadBalancersRequest) (response ListNetworkLoadBalancersResponse, err error) { @@ -1436,7 +1436,7 @@ func (client NetworkLoadBalancerClient) listNetworkLoadBalancers(ctx context.Con // ListNetworkLoadBalancersPolicies Lists the available network load balancer policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListNetworkLoadBalancersPolicies.go.html to see an example of how to use ListNetworkLoadBalancersPolicies API. func (client NetworkLoadBalancerClient) ListNetworkLoadBalancersPolicies(ctx context.Context, request ListNetworkLoadBalancersPoliciesRequest) (response ListNetworkLoadBalancersPoliciesResponse, err error) { @@ -1494,7 +1494,7 @@ func (client NetworkLoadBalancerClient) listNetworkLoadBalancersPolicies(ctx con // ListNetworkLoadBalancersProtocols This API has been deprecated so it won't return the updated list of supported protocls. // Lists all supported traffic protocols. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListNetworkLoadBalancersProtocols.go.html to see an example of how to use ListNetworkLoadBalancersProtocols API. func (client NetworkLoadBalancerClient) ListNetworkLoadBalancersProtocols(ctx context.Context, request ListNetworkLoadBalancersProtocolsRequest) (response ListNetworkLoadBalancersProtocolsResponse, err error) { @@ -1551,7 +1551,7 @@ func (client NetworkLoadBalancerClient) listNetworkLoadBalancersProtocols(ctx co // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client NetworkLoadBalancerClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -1608,7 +1608,7 @@ func (client NetworkLoadBalancerClient) listWorkRequestErrors(ctx context.Contex // ListWorkRequestLogs Returns a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client NetworkLoadBalancerClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -1665,7 +1665,7 @@ func (client NetworkLoadBalancerClient) listWorkRequestLogs(ctx context.Context, // ListWorkRequests Lists all work requests. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client NetworkLoadBalancerClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -1722,7 +1722,7 @@ func (client NetworkLoadBalancerClient) listWorkRequests(ctx context.Context, re // UpdateBackend Updates the configuration of a backend server within the specified backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/UpdateBackend.go.html to see an example of how to use UpdateBackend API. func (client NetworkLoadBalancerClient) UpdateBackend(ctx context.Context, request UpdateBackendRequest) (response UpdateBackendResponse, err error) { @@ -1784,7 +1784,7 @@ func (client NetworkLoadBalancerClient) updateBackend(ctx context.Context, reque // UpdateBackendSet Updates a backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/UpdateBackendSet.go.html to see an example of how to use UpdateBackendSet API. func (client NetworkLoadBalancerClient) UpdateBackendSet(ctx context.Context, request UpdateBackendSetRequest) (response UpdateBackendSetResponse, err error) { @@ -1846,7 +1846,7 @@ func (client NetworkLoadBalancerClient) updateBackendSet(ctx context.Context, re // UpdateHealthChecker Updates the health check policy for a given network load balancer and backend set. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/UpdateHealthChecker.go.html to see an example of how to use UpdateHealthChecker API. func (client NetworkLoadBalancerClient) UpdateHealthChecker(ctx context.Context, request UpdateHealthCheckerRequest) (response UpdateHealthCheckerResponse, err error) { @@ -1908,7 +1908,7 @@ func (client NetworkLoadBalancerClient) updateHealthChecker(ctx context.Context, // UpdateListener Updates a listener for a given network load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/UpdateListener.go.html to see an example of how to use UpdateListener API. func (client NetworkLoadBalancerClient) UpdateListener(ctx context.Context, request UpdateListenerRequest) (response UpdateListenerResponse, err error) { @@ -1970,7 +1970,7 @@ func (client NetworkLoadBalancerClient) updateListener(ctx context.Context, requ // UpdateNetworkLoadBalancer Updates the network load balancer // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/UpdateNetworkLoadBalancer.go.html to see an example of how to use UpdateNetworkLoadBalancer API. func (client NetworkLoadBalancerClient) UpdateNetworkLoadBalancer(ctx context.Context, request UpdateNetworkLoadBalancerRequest) (response UpdateNetworkLoadBalancerResponse, err error) { @@ -2027,7 +2027,7 @@ func (client NetworkLoadBalancerClient) updateNetworkLoadBalancer(ctx context.Co // UpdateNetworkSecurityGroups Updates the network security groups associated with the specified network load balancer. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/networkloadbalancer/UpdateNetworkSecurityGroups.go.html to see an example of how to use UpdateNetworkSecurityGroups API. func (client NetworkLoadBalancerClient) UpdateNetworkSecurityGroups(ctx context.Context, request UpdateNetworkSecurityGroupsRequest) (response UpdateNetworkSecurityGroupsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/nosql/nosql_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/nosql/nosql_client.go index 08a830ca226..077d3f31550 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/nosql/nosql_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/nosql/nosql_client.go @@ -96,7 +96,7 @@ func (client *NosqlClient) ConfigurationProvider() *common.ConfigurationProvider // ChangeTableCompartment Change a table's compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/ChangeTableCompartment.go.html to see an example of how to use ChangeTableCompartment API. // A default retry strategy applies to this operation ChangeTableCompartment() @@ -159,7 +159,7 @@ func (client NosqlClient) changeTableCompartment(ctx context.Context, request co // CreateIndex Create a new index on the table identified by tableNameOrId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/CreateIndex.go.html to see an example of how to use CreateIndex API. // A default retry strategy applies to this operation CreateIndex() @@ -222,7 +222,7 @@ func (client NosqlClient) createIndex(ctx context.Context, request common.OCIReq // CreateTable Create a new table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/CreateTable.go.html to see an example of how to use CreateTable API. // A default retry strategy applies to this operation CreateTable() @@ -285,7 +285,7 @@ func (client NosqlClient) createTable(ctx context.Context, request common.OCIReq // DeleteIndex Delete an index from the table identified by tableNameOrId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/DeleteIndex.go.html to see an example of how to use DeleteIndex API. func (client NosqlClient) DeleteIndex(ctx context.Context, request DeleteIndexRequest) (response DeleteIndexResponse, err error) { @@ -342,7 +342,7 @@ func (client NosqlClient) deleteIndex(ctx context.Context, request common.OCIReq // DeleteRow Delete a single row from the table, by primary key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/DeleteRow.go.html to see an example of how to use DeleteRow API. func (client NosqlClient) DeleteRow(ctx context.Context, request DeleteRowRequest) (response DeleteRowResponse, err error) { @@ -399,7 +399,7 @@ func (client NosqlClient) deleteRow(ctx context.Context, request common.OCIReque // DeleteTable Delete a table by tableNameOrId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/DeleteTable.go.html to see an example of how to use DeleteTable API. func (client NosqlClient) DeleteTable(ctx context.Context, request DeleteTableRequest) (response DeleteTableResponse, err error) { @@ -456,7 +456,7 @@ func (client NosqlClient) deleteTable(ctx context.Context, request common.OCIReq // DeleteWorkRequest Cancel a work request operation with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/DeleteWorkRequest.go.html to see an example of how to use DeleteWorkRequest API. func (client NosqlClient) DeleteWorkRequest(ctx context.Context, request DeleteWorkRequestRequest) (response DeleteWorkRequestResponse, err error) { @@ -513,7 +513,7 @@ func (client NosqlClient) deleteWorkRequest(ctx context.Context, request common. // GetIndex Get information about a single index. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/GetIndex.go.html to see an example of how to use GetIndex API. // A default retry strategy applies to this operation GetIndex() @@ -571,7 +571,7 @@ func (client NosqlClient) getIndex(ctx context.Context, request common.OCIReques // GetRow Get a single row from the table by primary key. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/GetRow.go.html to see an example of how to use GetRow API. // A default retry strategy applies to this operation GetRow() @@ -629,7 +629,7 @@ func (client NosqlClient) getRow(ctx context.Context, request common.OCIRequest, // GetTable Get table info by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/GetTable.go.html to see an example of how to use GetTable API. // A default retry strategy applies to this operation GetTable() @@ -687,7 +687,7 @@ func (client NosqlClient) getTable(ctx context.Context, request common.OCIReques // GetWorkRequest Get the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -745,7 +745,7 @@ func (client NosqlClient) getWorkRequest(ctx context.Context, request common.OCI // ListIndexes Get a list of indexes on a table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/ListIndexes.go.html to see an example of how to use ListIndexes API. // A default retry strategy applies to this operation ListIndexes() @@ -803,7 +803,7 @@ func (client NosqlClient) listIndexes(ctx context.Context, request common.OCIReq // ListTableUsage Get table usage info. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/ListTableUsage.go.html to see an example of how to use ListTableUsage API. // A default retry strategy applies to this operation ListTableUsage() @@ -861,7 +861,7 @@ func (client NosqlClient) listTableUsage(ctx context.Context, request common.OCI // ListTables Get a list of tables in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/ListTables.go.html to see an example of how to use ListTables API. // A default retry strategy applies to this operation ListTables() @@ -919,7 +919,7 @@ func (client NosqlClient) listTables(ctx context.Context, request common.OCIRequ // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -977,7 +977,7 @@ func (client NosqlClient) listWorkRequestErrors(ctx context.Context, request com // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1035,7 +1035,7 @@ func (client NosqlClient) listWorkRequestLogs(ctx context.Context, request commo // ListWorkRequests List the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1093,7 +1093,7 @@ func (client NosqlClient) listWorkRequests(ctx context.Context, request common.O // PrepareStatement Prepare a SQL statement for use in a query with variable substitution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/PrepareStatement.go.html to see an example of how to use PrepareStatement API. // A default retry strategy applies to this operation PrepareStatement() @@ -1151,7 +1151,7 @@ func (client NosqlClient) prepareStatement(ctx context.Context, request common.O // Query Execute a SQL query. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/Query.go.html to see an example of how to use Query API. func (client NosqlClient) Query(ctx context.Context, request QueryRequest) (response QueryResponse, err error) { @@ -1208,7 +1208,7 @@ func (client NosqlClient) query(ctx context.Context, request common.OCIRequest, // SummarizeStatement Check the syntax and return a brief summary of a SQL statement. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/SummarizeStatement.go.html to see an example of how to use SummarizeStatement API. // A default retry strategy applies to this operation SummarizeStatement() @@ -1266,7 +1266,7 @@ func (client NosqlClient) summarizeStatement(ctx context.Context, request common // UpdateRow Write a single row into the table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/UpdateRow.go.html to see an example of how to use UpdateRow API. func (client NosqlClient) UpdateRow(ctx context.Context, request UpdateRowRequest) (response UpdateRowResponse, err error) { @@ -1324,7 +1324,7 @@ func (client NosqlClient) updateRow(ctx context.Context, request common.OCIReque // UpdateTable Alter the table identified by tableNameOrId, // changing schema, limits, or tags // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/nosql/UpdateTable.go.html to see an example of how to use UpdateTable API. func (client NosqlClient) UpdateTable(ctx context.Context, request UpdateTableRequest) (response UpdateTableResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/objectstorage/objectstorage_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/objectstorage/objectstorage_client.go index 1d56f9c9cb6..0aefa3d1373 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/objectstorage/objectstorage_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/objectstorage/objectstorage_client.go @@ -149,7 +149,7 @@ func (client *ObjectStorageClient) refreshRegion() { // AbortMultipartUpload Aborts an in-progress multipart upload and deletes all parts that have been uploaded. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/AbortMultipartUpload.go.html to see an example of how to use AbortMultipartUpload API. // A default retry strategy applies to this operation AbortMultipartUpload() @@ -214,7 +214,7 @@ func (client ObjectStorageClient) abortMultipartUpload(ctx context.Context, requ // CancelWorkRequest Cancels a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -279,7 +279,7 @@ func (client ObjectStorageClient) cancelWorkRequest(ctx context.Context, request // CommitMultipartUpload Commits a multipart upload, which involves checking part numbers and entity tags (ETags) of the parts, to create an aggregate object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/CommitMultipartUpload.go.html to see an example of how to use CommitMultipartUpload API. // A default retry strategy applies to this operation CommitMultipartUpload() @@ -346,7 +346,7 @@ func (client ObjectStorageClient) commitMultipartUpload(ctx context.Context, req // See Object Names (https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements) // for object naming requirements. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/CopyObject.go.html to see an example of how to use CopyObject API. // A default retry strategy applies to this operation CopyObject() @@ -412,7 +412,7 @@ func (client ObjectStorageClient) copyObject(ctx context.Context, request common // CreateBucket Creates a bucket in the given namespace with a bucket name and optional user-defined metadata. Avoid entering // confidential information in bucket names. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/CreateBucket.go.html to see an example of how to use CreateBucket API. // A default retry strategy applies to this operation CreateBucket() @@ -479,7 +479,7 @@ func (client ObjectStorageClient) createBucket(ctx context.Context, request comm // See Object Names (https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements) // for object naming requirements. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/CreateMultipartUpload.go.html to see an example of how to use CreateMultipartUpload API. // A default retry strategy applies to this operation CreateMultipartUpload() @@ -544,7 +544,7 @@ func (client ObjectStorageClient) createMultipartUpload(ctx context.Context, req // CreatePreauthenticatedRequest Creates a pre-authenticated request specific to the bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/CreatePreauthenticatedRequest.go.html to see an example of how to use CreatePreauthenticatedRequest API. // A default retry strategy applies to this operation CreatePreauthenticatedRequest() @@ -609,7 +609,7 @@ func (client ObjectStorageClient) createPreauthenticatedRequest(ctx context.Cont // CreateReplicationPolicy Creates a replication policy for the specified bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/CreateReplicationPolicy.go.html to see an example of how to use CreateReplicationPolicy API. // A default retry strategy applies to this operation CreateReplicationPolicy() @@ -675,7 +675,7 @@ func (client ObjectStorageClient) createReplicationPolicy(ctx context.Context, r // CreateRetentionRule Creates a new retention rule in the specified bucket. The new rule will take effect typically within 30 seconds. // Note that a maximum of 100 rules are supported on a bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/CreateRetentionRule.go.html to see an example of how to use CreateRetentionRule API. // A default retry strategy applies to this operation CreateRetentionRule() @@ -743,7 +743,7 @@ func (client ObjectStorageClient) createRetentionRule(ctx context.Context, reque // you cannot delete a bucket that has a multipart upload in progress or a pre-authenticated // request associated with that bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/DeleteBucket.go.html to see an example of how to use DeleteBucket API. // A default retry strategy applies to this operation DeleteBucket() @@ -808,7 +808,7 @@ func (client ObjectStorageClient) deleteBucket(ctx context.Context, request comm // DeleteObject Deletes an object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/DeleteObject.go.html to see an example of how to use DeleteObject API. // A default retry strategy applies to this operation DeleteObject() @@ -873,7 +873,7 @@ func (client ObjectStorageClient) deleteObject(ctx context.Context, request comm // DeleteObjectLifecyclePolicy Deletes the object lifecycle policy for the bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/DeleteObjectLifecyclePolicy.go.html to see an example of how to use DeleteObjectLifecyclePolicy API. // A default retry strategy applies to this operation DeleteObjectLifecyclePolicy() @@ -938,7 +938,7 @@ func (client ObjectStorageClient) deleteObjectLifecyclePolicy(ctx context.Contex // DeletePreauthenticatedRequest Deletes the pre-authenticated request for the bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/DeletePreauthenticatedRequest.go.html to see an example of how to use DeletePreauthenticatedRequest API. // A default retry strategy applies to this operation DeletePreauthenticatedRequest() @@ -1003,7 +1003,7 @@ func (client ObjectStorageClient) deletePreauthenticatedRequest(ctx context.Cont // DeleteReplicationPolicy Deletes the replication policy associated with the source bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/DeleteReplicationPolicy.go.html to see an example of how to use DeleteReplicationPolicy API. // A default retry strategy applies to this operation DeleteReplicationPolicy() @@ -1068,7 +1068,7 @@ func (client ObjectStorageClient) deleteReplicationPolicy(ctx context.Context, r // DeleteRetentionRule Deletes the specified rule. The deletion takes effect typically within 30 seconds. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/DeleteRetentionRule.go.html to see an example of how to use DeleteRetentionRule API. // A default retry strategy applies to this operation DeleteRetentionRule() @@ -1133,7 +1133,7 @@ func (client ObjectStorageClient) deleteRetentionRule(ctx context.Context, reque // GetBucket Gets the current representation of the given bucket in the given Object Storage namespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/GetBucket.go.html to see an example of how to use GetBucket API. // A default retry strategy applies to this operation GetBucket() @@ -1203,7 +1203,7 @@ func (client ObjectStorageClient) getBucket(ctx context.Context, request common. // If an optional compartmentId query parameter is provided, GetNamespace returns the namespace name of the corresponding // tenancy, provided the user has access to it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/GetNamespace.go.html to see an example of how to use GetNamespace API. // A default retry strategy applies to this operation GetNamespace() @@ -1268,7 +1268,7 @@ func (client ObjectStorageClient) getNamespace(ctx context.Context, request comm // to give users access, see // Getting Started with Policies (https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/GetNamespaceMetadata.go.html to see an example of how to use GetNamespaceMetadata API. // A default retry strategy applies to this operation GetNamespaceMetadata() @@ -1333,7 +1333,7 @@ func (client ObjectStorageClient) getNamespaceMetadata(ctx context.Context, requ // GetObject Gets the metadata and body of an object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/GetObject.go.html to see an example of how to use GetObject API. // A default retry strategy applies to this operation GetObject() @@ -1397,7 +1397,7 @@ func (client ObjectStorageClient) getObject(ctx context.Context, request common. // GetObjectLifecyclePolicy Gets the object lifecycle policy for the bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/GetObjectLifecyclePolicy.go.html to see an example of how to use GetObjectLifecyclePolicy API. // A default retry strategy applies to this operation GetObjectLifecyclePolicy() @@ -1462,7 +1462,7 @@ func (client ObjectStorageClient) getObjectLifecyclePolicy(ctx context.Context, // GetPreauthenticatedRequest Gets the pre-authenticated request for the bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/GetPreauthenticatedRequest.go.html to see an example of how to use GetPreauthenticatedRequest API. // A default retry strategy applies to this operation GetPreauthenticatedRequest() @@ -1527,7 +1527,7 @@ func (client ObjectStorageClient) getPreauthenticatedRequest(ctx context.Context // GetReplicationPolicy Get the replication policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/GetReplicationPolicy.go.html to see an example of how to use GetReplicationPolicy API. // A default retry strategy applies to this operation GetReplicationPolicy() @@ -1592,7 +1592,7 @@ func (client ObjectStorageClient) getReplicationPolicy(ctx context.Context, requ // GetRetentionRule Get the specified retention rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/GetRetentionRule.go.html to see an example of how to use GetRetentionRule API. // A default retry strategy applies to this operation GetRetentionRule() @@ -1657,7 +1657,7 @@ func (client ObjectStorageClient) getRetentionRule(ctx context.Context, request // GetWorkRequest Gets the status of the work request for the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1722,7 +1722,7 @@ func (client ObjectStorageClient) getWorkRequest(ctx context.Context, request co // HeadBucket Efficiently checks to see if a bucket exists and gets the current entity tag (ETag) for the bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/HeadBucket.go.html to see an example of how to use HeadBucket API. // A default retry strategy applies to this operation HeadBucket() @@ -1787,7 +1787,7 @@ func (client ObjectStorageClient) headBucket(ctx context.Context, request common // HeadObject Gets the user-defined metadata and entity tag (ETag) for an object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/HeadObject.go.html to see an example of how to use HeadObject API. // A default retry strategy applies to this operation HeadObject() @@ -1858,7 +1858,7 @@ func (client ObjectStorageClient) headObject(ctx context.Context, request common // talk to an administrator. If you are an administrator who needs to write policies to give users access, see // Getting Started with Policies (https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListBuckets.go.html to see an example of how to use ListBuckets API. // A default retry strategy applies to this operation ListBuckets() @@ -1923,7 +1923,7 @@ func (client ObjectStorageClient) listBuckets(ctx context.Context, request commo // ListMultipartUploadParts Lists the parts of an in-progress multipart upload. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListMultipartUploadParts.go.html to see an example of how to use ListMultipartUploadParts API. // A default retry strategy applies to this operation ListMultipartUploadParts() @@ -1988,7 +1988,7 @@ func (client ObjectStorageClient) listMultipartUploadParts(ctx context.Context, // ListMultipartUploads Lists all of the in-progress multipart uploads for the given bucket in the given Object Storage namespace. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListMultipartUploads.go.html to see an example of how to use ListMultipartUploads API. // A default retry strategy applies to this operation ListMultipartUploads() @@ -2058,7 +2058,7 @@ func (client ObjectStorageClient) listMultipartUploads(ctx context.Context, requ // talk to an administrator. If you are an administrator who needs to write policies to give users access, see // Getting Started with Policies (https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListObjectVersions.go.html to see an example of how to use ListObjectVersions API. // A default retry strategy applies to this operation ListObjectVersions() @@ -2130,7 +2130,7 @@ func (client ObjectStorageClient) listObjectVersions(ctx context.Context, reques // talk to an administrator. If you are an administrator who needs to write policies to give users access, see // Getting Started with Policies (https://docs.cloud.oracle.com/Content/Identity/Concepts/policygetstarted.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListObjects.go.html to see an example of how to use ListObjects API. // A default retry strategy applies to this operation ListObjects() @@ -2195,7 +2195,7 @@ func (client ObjectStorageClient) listObjects(ctx context.Context, request commo // ListPreauthenticatedRequests Lists pre-authenticated requests for the bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListPreauthenticatedRequests.go.html to see an example of how to use ListPreauthenticatedRequests API. // A default retry strategy applies to this operation ListPreauthenticatedRequests() @@ -2260,7 +2260,7 @@ func (client ObjectStorageClient) listPreauthenticatedRequests(ctx context.Conte // ListReplicationPolicies List the replication policies associated with a bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListReplicationPolicies.go.html to see an example of how to use ListReplicationPolicies API. // A default retry strategy applies to this operation ListReplicationPolicies() @@ -2325,7 +2325,7 @@ func (client ObjectStorageClient) listReplicationPolicies(ctx context.Context, r // ListReplicationSources List the replication sources of a destination bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListReplicationSources.go.html to see an example of how to use ListReplicationSources API. // A default retry strategy applies to this operation ListReplicationSources() @@ -2391,7 +2391,7 @@ func (client ObjectStorageClient) listReplicationSources(ctx context.Context, re // ListRetentionRules List the retention rules for a bucket. The retention rules are sorted based on creation time, // with the most recently created retention rule returned first. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListRetentionRules.go.html to see an example of how to use ListRetentionRules API. // A default retry strategy applies to this operation ListRetentionRules() @@ -2456,7 +2456,7 @@ func (client ObjectStorageClient) listRetentionRules(ctx context.Context, reques // ListWorkRequestErrors Lists the errors of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -2521,7 +2521,7 @@ func (client ObjectStorageClient) listWorkRequestErrors(ctx context.Context, req // ListWorkRequestLogs Lists the logs of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -2586,7 +2586,7 @@ func (client ObjectStorageClient) listWorkRequestLogs(ctx context.Context, reque // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2654,7 +2654,7 @@ func (client ObjectStorageClient) listWorkRequests(ctx context.Context, request // automatically from the source bucket. MakeBucketWritable removes the replication policy. This bucket is no // longer the target for replication and is now writable, allowing users to make changes to bucket contents. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/MakeBucketWritable.go.html to see an example of how to use MakeBucketWritable API. // A default retry strategy applies to this operation MakeBucketWritable() @@ -2724,7 +2724,7 @@ func (client ObjectStorageClient) makeBucketWritable(ctx context.Context, reques // See Special Instructions for Object Storage PUT (https://docs.cloud.oracle.com/Content/API/Concepts/signingrequests.htm#ObjectStoragePut) // for request signature requirements. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/PutObject.go.html to see an example of how to use PutObject API. // A default retry strategy applies to this operation PutObject() @@ -2801,7 +2801,7 @@ func (client ObjectStorageClient) putObject(ctx context.Context, request common. // PutObjectLifecyclePolicy Creates or replaces the object lifecycle policy for the bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/PutObjectLifecyclePolicy.go.html to see an example of how to use PutObjectLifecyclePolicy API. // A default retry strategy applies to this operation PutObjectLifecyclePolicy() @@ -2879,7 +2879,7 @@ func (client ObjectStorageClient) putObjectLifecyclePolicy(ctx context.Context, // of the work request task. // All the versions of objects will be re-encrypted whether versioning is enabled or suspended at the bucket. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ReencryptBucket.go.html to see an example of how to use ReencryptBucket API. // A default retry strategy applies to this operation ReencryptBucket() @@ -2949,7 +2949,7 @@ func (client ObjectStorageClient) reencryptBucket(ctx context.Context, request c // - You can assign a key that you created and control through the Oracle Cloud Infrastructure Vault service. // - You can encrypt an object using your own encryption key. The key you supply is known as a customer-provided encryption key (SSE-C). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/ReencryptObject.go.html to see an example of how to use ReencryptObject API. // A default retry strategy applies to this operation ReencryptObject() @@ -3016,7 +3016,7 @@ func (client ObjectStorageClient) reencryptObject(ctx context.Context, request c // See Object Names (https://docs.cloud.oracle.com/Content/Object/Tasks/managingobjects.htm#namerequirements) // for object naming requirements. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/RenameObject.go.html to see an example of how to use RenameObject API. // A default retry strategy applies to this operation RenameObject() @@ -3082,7 +3082,7 @@ func (client ObjectStorageClient) renameObject(ctx context.Context, request comm // RestoreObjects Restores one or more objects specified by the objectName parameter. // By default objects will be restored for 24 hours. Duration can be configured using the hours parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/RestoreObjects.go.html to see an example of how to use RestoreObjects API. // A default retry strategy applies to this operation RestoreObjects() @@ -3150,7 +3150,7 @@ func (client ObjectStorageClient) restoreObjects(ctx context.Context, request co // of the compartment that you want to move the bucket to. For more information about moving resources between compartments, // see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/UpdateBucket.go.html to see an example of how to use UpdateBucket API. // A default retry strategy applies to this operation UpdateBucket() @@ -3220,7 +3220,7 @@ func (client ObjectStorageClient) updateBucket(ctx context.Context, request comm // buckets will be modified. A user must have OBJECTSTORAGE_NAMESPACE_UPDATE permission to make changes to the default // compartments for Amazon S3 and Swift. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/UpdateNamespaceMetadata.go.html to see an example of how to use UpdateNamespaceMetadata API. // A default retry strategy applies to this operation UpdateNamespaceMetadata() @@ -3285,7 +3285,7 @@ func (client ObjectStorageClient) updateNamespaceMetadata(ctx context.Context, r // UpdateObjectStorageTier Changes the storage tier of the object specified by the objectName parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/UpdateObjectStorageTier.go.html to see an example of how to use UpdateObjectStorageTier API. // A default retry strategy applies to this operation UpdateObjectStorageTier() @@ -3350,7 +3350,7 @@ func (client ObjectStorageClient) updateObjectStorageTier(ctx context.Context, r // UpdateRetentionRule Updates the specified retention rule. Rule changes take effect typically within 30 seconds. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/UpdateRetentionRule.go.html to see an example of how to use UpdateRetentionRule API. // A default retry strategy applies to this operation UpdateRetentionRule() @@ -3415,7 +3415,7 @@ func (client ObjectStorageClient) updateRetentionRule(ctx context.Context, reque // UploadPart Uploads a single part of a multipart upload. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/objectstorage/UploadPart.go.html to see an example of how to use UploadPart API. // A default retry strategy applies to this operation UploadPart() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/objectstorage/reencrypt_object_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/objectstorage/reencrypt_object_details.go index b8e908c7e47..8c854274369 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/objectstorage/reencrypt_object_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/objectstorage/reencrypt_object_details.go @@ -21,11 +21,11 @@ import ( // You can only specify either a kmsKeyId or an sseCustomerKey in the request payload, not both. // If the request payload is empty, the object is encrypted using the encryption key assigned to the // bucket. The bucket encryption mechanism can either be a master encryption key managed by Oracle or the Vault service. -// - The sseCustomerKey field specifies the customer-provided encryption key (SSE-C) that will be used to re-encrypt the data encryption keys of the -// object and its chunks. -// - The sourceSSECustomerKey field specifies information about the customer-provided encryption key that is currently -// associated with the object source. Specify a value for the sourceSSECustomerKey only if the object -// is encrypted with a customer-provided encryption key. +// - The sseCustomerKey field specifies the customer-provided encryption key (SSE-C) that will be used to re-encrypt the data encryption keys of the +// object and its chunks. +// - The sourceSSECustomerKey field specifies information about the customer-provided encryption key that is currently +// associated with the object source. Specify a value for the sourceSSECustomerKey only if the object +// is encrypted with a customer-provided encryption key. type ReencryptObjectDetails struct { // The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the master encryption key used to call the Vault diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oce/oce_oceinstance_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/oce/oce_oceinstance_client.go index e6220e44383..8a53ca7360e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oce/oce_oceinstance_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oce/oce_oceinstance_client.go @@ -93,7 +93,7 @@ func (client *OceInstanceClient) ConfigurationProvider() *common.ConfigurationPr // ChangeOceInstanceCompartment Moves a OceInstance into a different compartment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/ChangeOceInstanceCompartment.go.html to see an example of how to use ChangeOceInstanceCompartment API. // A default retry strategy applies to this operation ChangeOceInstanceCompartment() @@ -156,7 +156,7 @@ func (client OceInstanceClient) changeOceInstanceCompartment(ctx context.Context // CreateOceInstance Creates a new OceInstance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/CreateOceInstance.go.html to see an example of how to use CreateOceInstance API. // A default retry strategy applies to this operation CreateOceInstance() @@ -219,7 +219,7 @@ func (client OceInstanceClient) createOceInstance(ctx context.Context, request c // DeleteOceInstance Deletes a OceInstance resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/DeleteOceInstance.go.html to see an example of how to use DeleteOceInstance API. // A default retry strategy applies to this operation DeleteOceInstance() @@ -277,7 +277,7 @@ func (client OceInstanceClient) deleteOceInstance(ctx context.Context, request c // GetOceInstance Gets a OceInstance by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/GetOceInstance.go.html to see an example of how to use GetOceInstance API. // A default retry strategy applies to this operation GetOceInstance() @@ -335,7 +335,7 @@ func (client OceInstanceClient) getOceInstance(ctx context.Context, request comm // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -393,7 +393,7 @@ func (client OceInstanceClient) getWorkRequest(ctx context.Context, request comm // ListOceInstances Returns a list of OceInstances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/ListOceInstances.go.html to see an example of how to use ListOceInstances API. // A default retry strategy applies to this operation ListOceInstances() @@ -451,7 +451,7 @@ func (client OceInstanceClient) listOceInstances(ctx context.Context, request co // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -509,7 +509,7 @@ func (client OceInstanceClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -567,7 +567,7 @@ func (client OceInstanceClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -625,7 +625,7 @@ func (client OceInstanceClient) listWorkRequests(ctx context.Context, request co // UpdateOceInstance Updates the OceInstance // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oce/UpdateOceInstance.go.html to see an example of how to use UpdateOceInstance API. // A default retry strategy applies to this operation UpdateOceInstance() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_esxihost_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_esxihost_client.go index d58b39ec838..f9e41c2fe49 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_esxihost_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_esxihost_client.go @@ -98,7 +98,7 @@ func (client *EsxiHostClient) ConfigurationProvider() *common.ConfigurationProvi // Use the WorkRequest operations to track the // creation of the ESXi host. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/CreateEsxiHost.go.html to see an example of how to use CreateEsxiHost API. // A default retry strategy applies to this operation CreateEsxiHost() @@ -171,7 +171,7 @@ func (client EsxiHostClient) createEsxiHost(ctx context.Context, request common. // Use the WorkRequest operations to track the // deletion of the ESXi host. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/DeleteEsxiHost.go.html to see an example of how to use DeleteEsxiHost API. // A default retry strategy applies to this operation DeleteEsxiHost() @@ -229,7 +229,7 @@ func (client EsxiHostClient) deleteEsxiHost(ctx context.Context, request common. // GetEsxiHost Gets the specified ESXi host's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/GetEsxiHost.go.html to see an example of how to use GetEsxiHost API. // A default retry strategy applies to this operation GetEsxiHost() @@ -294,7 +294,7 @@ func (client EsxiHostClient) getEsxiHost(ctx context.Context, request common.OCI // ESXi hosts, you can specify the OCID of the Compute instance, not the // ESXi host OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/ListEsxiHosts.go.html to see an example of how to use ListEsxiHosts API. // A default retry strategy applies to this operation ListEsxiHosts() @@ -352,7 +352,7 @@ func (client EsxiHostClient) listEsxiHosts(ctx context.Context, request common.O // SwapBilling Swap billing between two Active ESXi hosts. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/SwapBilling.go.html to see an example of how to use SwapBilling API. // A default retry strategy applies to this operation SwapBilling() @@ -415,7 +415,7 @@ func (client EsxiHostClient) swapBilling(ctx context.Context, request common.OCI // UpdateEsxiHost Updates the specified ESXi host. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/UpdateEsxiHost.go.html to see an example of how to use UpdateEsxiHost API. // A default retry strategy applies to this operation UpdateEsxiHost() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_sddc_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_sddc_client.go index a522aedb1b0..abdba3ceefe 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_sddc_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_sddc_client.go @@ -94,7 +94,7 @@ func (client *SddcClient) ConfigurationProvider() *common.ConfigurationProvider // CancelDowngradeHcx Cancel the pending SDDC downgrade from HCX Enterprise to HCX Advanced. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/CancelDowngradeHcx.go.html to see an example of how to use CancelDowngradeHcx API. // A default retry strategy applies to this operation CancelDowngradeHcx() @@ -159,7 +159,7 @@ func (client SddcClient) cancelDowngradeHcx(ctx context.Context, request common. // about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/ChangeSddcCompartment.go.html to see an example of how to use ChangeSddcCompartment API. // A default retry strategy applies to this operation ChangeSddcCompartment() @@ -225,7 +225,7 @@ func (client SddcClient) changeSddcCompartment(ctx context.Context, request comm // creation of the SDDC. // **Important:** You must configure the SDDC's networking resources with the security rules detailed in Security Rules for Oracle Cloud VMware Solution SDDCs (https://docs.cloud.oracle.com/iaas/Content/VMware/Reference/ocvssecurityrules.htm). Otherwise, provisioning the SDDC will fail. The rules are based on the requirements set by VMware. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/CreateSddc.go.html to see an example of how to use CreateSddc API. // A default retry strategy applies to this operation CreateSddc() @@ -292,7 +292,7 @@ func (client SddcClient) createSddc(ctx context.Context, request common.OCIReque // Use the WorkRequest operations to track the // deletion of the SDDC. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/DeleteSddc.go.html to see an example of how to use DeleteSddc API. // A default retry strategy applies to this operation DeleteSddc() @@ -354,7 +354,7 @@ func (client SddcClient) deleteSddc(ctx context.Context, request common.OCIReque // Downgrade remains in a `PENDING` state until the end of the current billing cycle. You can use CancelDowngradeHcx // to cancel the downgrade while it's still in a `PENDING` state. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/DowngradeHcx.go.html to see an example of how to use DowngradeHcx API. // A default retry strategy applies to this operation DowngradeHcx() @@ -417,7 +417,7 @@ func (client SddcClient) downgradeHcx(ctx context.Context, request common.OCIReq // GetSddc Gets the specified SDDC's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/GetSddc.go.html to see an example of how to use GetSddc API. // A default retry strategy applies to this operation GetSddc() @@ -476,7 +476,7 @@ func (client SddcClient) getSddc(ctx context.Context, request common.OCIRequest, // ListSddcs Lists the SDDCs in the specified compartment. The list can be // filtered by display name or availability domain. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/ListSddcs.go.html to see an example of how to use ListSddcs API. // A default retry strategy applies to this operation ListSddcs() @@ -534,7 +534,7 @@ func (client SddcClient) listSddcs(ctx context.Context, request common.OCIReques // ListSupportedHostShapes Lists supported compute shapes for ESXi hosts. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/ListSupportedHostShapes.go.html to see an example of how to use ListSupportedHostShapes API. // A default retry strategy applies to this operation ListSupportedHostShapes() @@ -592,7 +592,7 @@ func (client SddcClient) listSupportedHostShapes(ctx context.Context, request co // ListSupportedSkus Lists supported SKUs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/ListSupportedSkus.go.html to see an example of how to use ListSupportedSkus API. // A default retry strategy applies to this operation ListSupportedSkus() @@ -651,7 +651,7 @@ func (client SddcClient) listSupportedSkus(ctx context.Context, request common.O // ListSupportedVmwareSoftwareVersions Lists the versions of bundled VMware software supported by the Oracle Cloud // VMware Solution. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/ListSupportedVmwareSoftwareVersions.go.html to see an example of how to use ListSupportedVmwareSoftwareVersions API. // A default retry strategy applies to this operation ListSupportedVmwareSoftwareVersions() @@ -709,7 +709,7 @@ func (client SddcClient) listSupportedVmwareSoftwareVersions(ctx context.Context // RefreshHcxLicenseStatus Refresh HCX on-premise licenses status of the specified SDDC. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/RefreshHcxLicenseStatus.go.html to see an example of how to use RefreshHcxLicenseStatus API. // A default retry strategy applies to this operation RefreshHcxLicenseStatus() @@ -776,7 +776,7 @@ func (client SddcClient) refreshHcxLicenseStatus(ctx context.Context, request co // the SDDC. For more information, see // UpdateSddcDetails. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/UpdateSddc.go.html to see an example of how to use UpdateSddc API. // A default retry strategy applies to this operation UpdateSddc() @@ -834,7 +834,7 @@ func (client SddcClient) updateSddc(ctx context.Context, request common.OCIReque // UpgradeHcx Upgrade the specified SDDC from HCX Advanced to HCX Enterprise. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/UpgradeHcx.go.html to see an example of how to use UpgradeHcx API. // A default retry strategy applies to this operation UpgradeHcx() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_workrequest_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_workrequest_client.go index b22c77986fa..6df7e72ef8e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_workrequest_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ocvp/ocvp_workrequest_client.go @@ -94,7 +94,7 @@ func (client *WorkRequestClient) ConfigurationProvider() *common.ConfigurationPr // GetWorkRequest Gets the specified work request's information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -152,7 +152,7 @@ func (client WorkRequestClient) getWorkRequest(ctx context.Context, request comm // ListWorkRequestErrors Lists the errors for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -210,7 +210,7 @@ func (client WorkRequestClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Lists the logs for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -268,7 +268,7 @@ func (client WorkRequestClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ocvp/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/android_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/android_channel.go index 6604658902d..c698fa8263c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/android_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/android_channel.go @@ -61,52 +61,52 @@ type AndroidChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m AndroidChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m AndroidChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m AndroidChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m AndroidChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m AndroidChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AndroidChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AndroidChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AndroidChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AndroidChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AndroidChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/app_event_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/app_event_channel.go index 92b2693e687..d79c3cf701d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/app_event_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/app_event_channel.go @@ -62,52 +62,52 @@ type AppEventChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m AppEventChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m AppEventChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m AppEventChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m AppEventChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m AppEventChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AppEventChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AppEventChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AppEventChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AppEventChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AppEventChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/application_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/application_channel.go index a9e5c597418..e0f18484612 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/application_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/application_channel.go @@ -62,52 +62,52 @@ type ApplicationChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m ApplicationChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m ApplicationChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ApplicationChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m ApplicationChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m ApplicationChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ApplicationChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ApplicationChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ApplicationChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ApplicationChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ApplicationChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/clone_digital_assistant_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/clone_digital_assistant_details.go index 84c651be851..c2f1a8ef51c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/clone_digital_assistant_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/clone_digital_assistant_details.go @@ -55,37 +55,37 @@ type CloneDigitalAssistantDetails struct { MultilingualMode BotMultilingualModeEnum `mandatory:"false" json:"multilingualMode,omitempty"` } -//GetCategory returns Category +// GetCategory returns Category func (m CloneDigitalAssistantDetails) GetCategory() *string { return m.Category } -//GetDescription returns Description +// GetDescription returns Description func (m CloneDigitalAssistantDetails) GetDescription() *string { return m.Description } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m CloneDigitalAssistantDetails) GetPlatformVersion() *string { return m.PlatformVersion } -//GetMultilingualMode returns MultilingualMode +// GetMultilingualMode returns MultilingualMode func (m CloneDigitalAssistantDetails) GetMultilingualMode() BotMultilingualModeEnum { return m.MultilingualMode } -//GetPrimaryLanguageTag returns PrimaryLanguageTag +// GetPrimaryLanguageTag returns PrimaryLanguageTag func (m CloneDigitalAssistantDetails) GetPrimaryLanguageTag() *string { return m.PrimaryLanguageTag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CloneDigitalAssistantDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CloneDigitalAssistantDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/clone_skill_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/clone_skill_details.go index d531ce56610..a62ec9463fa 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/clone_skill_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/clone_skill_details.go @@ -55,37 +55,37 @@ type CloneSkillDetails struct { MultilingualMode BotMultilingualModeEnum `mandatory:"false" json:"multilingualMode,omitempty"` } -//GetCategory returns Category +// GetCategory returns Category func (m CloneSkillDetails) GetCategory() *string { return m.Category } -//GetDescription returns Description +// GetDescription returns Description func (m CloneSkillDetails) GetDescription() *string { return m.Description } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m CloneSkillDetails) GetPlatformVersion() *string { return m.PlatformVersion } -//GetMultilingualMode returns MultilingualMode +// GetMultilingualMode returns MultilingualMode func (m CloneSkillDetails) GetMultilingualMode() BotMultilingualModeEnum { return m.MultilingualMode } -//GetPrimaryLanguageTag returns PrimaryLanguageTag +// GetPrimaryLanguageTag returns PrimaryLanguageTag func (m CloneSkillDetails) GetPrimaryLanguageTag() *string { return m.PrimaryLanguageTag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CloneSkillDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CloneSkillDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/cortana_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/cortana_channel.go index 678085195a3..f1b1f38ae25 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/cortana_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/cortana_channel.go @@ -62,52 +62,52 @@ type CortanaChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CortanaChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CortanaChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CortanaChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CortanaChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CortanaChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CortanaChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CortanaChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CortanaChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CortanaChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CortanaChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_android_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_android_channel_details.go index 4581e6fdd1e..0ec3c5ab40f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_android_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_android_channel_details.go @@ -46,27 +46,27 @@ type CreateAndroidChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m CreateAndroidChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateAndroidChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateAndroidChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAndroidChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAndroidChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_android_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_android_channel_result.go index f8266267d37..5e71932567f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_android_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_android_channel_result.go @@ -65,52 +65,52 @@ type CreateAndroidChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateAndroidChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateAndroidChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateAndroidChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateAndroidChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateAndroidChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateAndroidChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateAndroidChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateAndroidChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAndroidChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAndroidChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_app_event_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_app_event_channel_details.go index 01fb0034bee..3070d5068f8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_app_event_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_app_event_channel_details.go @@ -43,27 +43,27 @@ type CreateAppEventChannelDetails struct { EventSinkBotIds []string `mandatory:"false" json:"eventSinkBotIds"` } -//GetName returns Name +// GetName returns Name func (m CreateAppEventChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateAppEventChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateAppEventChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAppEventChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAppEventChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_app_event_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_app_event_channel_result.go index 7d64ffa6d06..bc88345c738 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_app_event_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_app_event_channel_result.go @@ -66,52 +66,52 @@ type CreateAppEventChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateAppEventChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateAppEventChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateAppEventChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateAppEventChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateAppEventChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateAppEventChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateAppEventChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateAppEventChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAppEventChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAppEventChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_application_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_application_channel_details.go index 6969616b6a9..a3237e5edea 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_application_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_application_channel_details.go @@ -43,27 +43,27 @@ type CreateApplicationChannelDetails struct { OutboundUrl *string `mandatory:"false" json:"outboundUrl"` } -//GetName returns Name +// GetName returns Name func (m CreateApplicationChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateApplicationChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateApplicationChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateApplicationChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateApplicationChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_application_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_application_channel_result.go index bb83a4935cf..37e162bb5ef 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_application_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_application_channel_result.go @@ -66,52 +66,52 @@ type CreateApplicationChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateApplicationChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateApplicationChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateApplicationChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateApplicationChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateApplicationChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateApplicationChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateApplicationChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateApplicationChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateApplicationChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateApplicationChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_cortana_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_cortana_channel_details.go index 8ba4af3c343..9aab6009062 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_cortana_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_cortana_channel_details.go @@ -46,27 +46,27 @@ type CreateCortanaChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m CreateCortanaChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateCortanaChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateCortanaChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateCortanaChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateCortanaChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_cortana_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_cortana_channel_result.go index e1fcc7c1c1c..c7100c1239d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_cortana_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_cortana_channel_result.go @@ -62,52 +62,52 @@ type CreateCortanaChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateCortanaChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateCortanaChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateCortanaChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateCortanaChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateCortanaChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateCortanaChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateCortanaChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateCortanaChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateCortanaChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateCortanaChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_digital_assistant_version_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_digital_assistant_version_details.go index 8361056adc3..5bc893e71a9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_digital_assistant_version_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_digital_assistant_version_details.go @@ -49,37 +49,37 @@ type CreateDigitalAssistantVersionDetails struct { MultilingualMode BotMultilingualModeEnum `mandatory:"false" json:"multilingualMode,omitempty"` } -//GetCategory returns Category +// GetCategory returns Category func (m CreateDigitalAssistantVersionDetails) GetCategory() *string { return m.Category } -//GetDescription returns Description +// GetDescription returns Description func (m CreateDigitalAssistantVersionDetails) GetDescription() *string { return m.Description } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m CreateDigitalAssistantVersionDetails) GetPlatformVersion() *string { return m.PlatformVersion } -//GetMultilingualMode returns MultilingualMode +// GetMultilingualMode returns MultilingualMode func (m CreateDigitalAssistantVersionDetails) GetMultilingualMode() BotMultilingualModeEnum { return m.MultilingualMode } -//GetPrimaryLanguageTag returns PrimaryLanguageTag +// GetPrimaryLanguageTag returns PrimaryLanguageTag func (m CreateDigitalAssistantVersionDetails) GetPrimaryLanguageTag() *string { return m.PrimaryLanguageTag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateDigitalAssistantVersionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateDigitalAssistantVersionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_facebook_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_facebook_channel_details.go index 59f453a17b5..c07a254b827 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_facebook_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_facebook_channel_details.go @@ -46,27 +46,27 @@ type CreateFacebookChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m CreateFacebookChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateFacebookChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateFacebookChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateFacebookChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateFacebookChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_facebook_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_facebook_channel_result.go index 82f00532a30..670e1ab4bec 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_facebook_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_facebook_channel_result.go @@ -64,52 +64,52 @@ type CreateFacebookChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateFacebookChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateFacebookChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateFacebookChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateFacebookChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateFacebookChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateFacebookChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateFacebookChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateFacebookChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateFacebookChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateFacebookChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ios_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ios_channel_details.go index 18d9a0015c6..1befd064016 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ios_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ios_channel_details.go @@ -46,27 +46,27 @@ type CreateIosChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m CreateIosChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateIosChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateIosChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateIosChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateIosChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ios_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ios_channel_result.go index d057d044302..edc27588e9f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ios_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ios_channel_result.go @@ -65,52 +65,52 @@ type CreateIosChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateIosChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateIosChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateIosChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateIosChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateIosChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateIosChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateIosChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateIosChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateIosChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateIosChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ms_teams_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ms_teams_channel_details.go index 849ab43f907..973416e885b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ms_teams_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ms_teams_channel_details.go @@ -46,27 +46,27 @@ type CreateMsTeamsChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m CreateMsTeamsChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateMsTeamsChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateMsTeamsChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMsTeamsChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMsTeamsChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ms_teams_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ms_teams_channel_result.go index de17ded84b4..fe7712eed18 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ms_teams_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_ms_teams_channel_result.go @@ -62,52 +62,52 @@ type CreateMsTeamsChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateMsTeamsChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateMsTeamsChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateMsTeamsChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateMsTeamsChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateMsTeamsChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateMsTeamsChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateMsTeamsChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateMsTeamsChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMsTeamsChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMsTeamsChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_new_digital_assistant_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_new_digital_assistant_details.go index 3e5ff624cd9..18c82557323 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_new_digital_assistant_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_new_digital_assistant_details.go @@ -55,37 +55,37 @@ type CreateNewDigitalAssistantDetails struct { MultilingualMode BotMultilingualModeEnum `mandatory:"false" json:"multilingualMode,omitempty"` } -//GetCategory returns Category +// GetCategory returns Category func (m CreateNewDigitalAssistantDetails) GetCategory() *string { return m.Category } -//GetDescription returns Description +// GetDescription returns Description func (m CreateNewDigitalAssistantDetails) GetDescription() *string { return m.Description } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m CreateNewDigitalAssistantDetails) GetPlatformVersion() *string { return m.PlatformVersion } -//GetMultilingualMode returns MultilingualMode +// GetMultilingualMode returns MultilingualMode func (m CreateNewDigitalAssistantDetails) GetMultilingualMode() BotMultilingualModeEnum { return m.MultilingualMode } -//GetPrimaryLanguageTag returns PrimaryLanguageTag +// GetPrimaryLanguageTag returns PrimaryLanguageTag func (m CreateNewDigitalAssistantDetails) GetPrimaryLanguageTag() *string { return m.PrimaryLanguageTag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateNewDigitalAssistantDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateNewDigitalAssistantDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_new_skill_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_new_skill_details.go index 9a8c93dab76..ea95a1ae9f9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_new_skill_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_new_skill_details.go @@ -55,37 +55,37 @@ type CreateNewSkillDetails struct { MultilingualMode BotMultilingualModeEnum `mandatory:"false" json:"multilingualMode,omitempty"` } -//GetCategory returns Category +// GetCategory returns Category func (m CreateNewSkillDetails) GetCategory() *string { return m.Category } -//GetDescription returns Description +// GetDescription returns Description func (m CreateNewSkillDetails) GetDescription() *string { return m.Description } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m CreateNewSkillDetails) GetPlatformVersion() *string { return m.PlatformVersion } -//GetMultilingualMode returns MultilingualMode +// GetMultilingualMode returns MultilingualMode func (m CreateNewSkillDetails) GetMultilingualMode() BotMultilingualModeEnum { return m.MultilingualMode } -//GetPrimaryLanguageTag returns PrimaryLanguageTag +// GetPrimaryLanguageTag returns PrimaryLanguageTag func (m CreateNewSkillDetails) GetPrimaryLanguageTag() *string { return m.PrimaryLanguageTag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateNewSkillDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateNewSkillDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_oss_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_oss_channel_details.go index 543782a9a9e..42824593a2b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_oss_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_oss_channel_details.go @@ -67,27 +67,27 @@ type CreateOssChannelDetails struct { EventSinkBotIds []string `mandatory:"false" json:"eventSinkBotIds"` } -//GetName returns Name +// GetName returns Name func (m CreateOssChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOssChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateOssChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOssChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOssChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_oss_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_oss_channel_result.go index ff17bd472c0..810225eeb30 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_oss_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_oss_channel_result.go @@ -79,52 +79,52 @@ type CreateOssChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateOssChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateOssChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOssChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateOssChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateOssChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateOssChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateOssChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateOssChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOssChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOssChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_osvc_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_osvc_channel_details.go index 74b3071a5e3..a20a667a443 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_osvc_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_osvc_channel_details.go @@ -68,27 +68,27 @@ type CreateOsvcChannelDetails struct { ChannelService OsvcServiceTypeEnum `mandatory:"false" json:"channelService,omitempty"` } -//GetName returns Name +// GetName returns Name func (m CreateOsvcChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOsvcChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateOsvcChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOsvcChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOsvcChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_osvc_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_osvc_channel_result.go index 8fde9d8292f..98bf1bc868f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_osvc_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_osvc_channel_result.go @@ -80,52 +80,52 @@ type CreateOsvcChannelResult struct { ChannelService OsvcServiceTypeEnum `mandatory:"true" json:"channelService"` } -//GetId returns Id +// GetId returns Id func (m CreateOsvcChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateOsvcChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOsvcChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateOsvcChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateOsvcChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateOsvcChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateOsvcChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateOsvcChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOsvcChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOsvcChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_service_cloud_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_service_cloud_channel_details.go index c8ee0785d60..36ee75491bc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_service_cloud_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_service_cloud_channel_details.go @@ -66,27 +66,27 @@ type CreateServiceCloudChannelDetails struct { ClientType ServiceCloudClientTypeEnum `mandatory:"true" json:"clientType"` } -//GetName returns Name +// GetName returns Name func (m CreateServiceCloudChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateServiceCloudChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateServiceCloudChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateServiceCloudChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateServiceCloudChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_service_cloud_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_service_cloud_channel_result.go index 438f50010db..4e293dc7d70 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_service_cloud_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_service_cloud_channel_result.go @@ -78,52 +78,52 @@ type CreateServiceCloudChannelResult struct { ClientType ServiceCloudClientTypeEnum `mandatory:"true" json:"clientType"` } -//GetId returns Id +// GetId returns Id func (m CreateServiceCloudChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateServiceCloudChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateServiceCloudChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateServiceCloudChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateServiceCloudChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateServiceCloudChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateServiceCloudChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateServiceCloudChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateServiceCloudChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateServiceCloudChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_skill_version_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_skill_version_details.go index 13f5f0cd1a1..99592bff71d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_skill_version_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_skill_version_details.go @@ -49,37 +49,37 @@ type CreateSkillVersionDetails struct { MultilingualMode BotMultilingualModeEnum `mandatory:"false" json:"multilingualMode,omitempty"` } -//GetCategory returns Category +// GetCategory returns Category func (m CreateSkillVersionDetails) GetCategory() *string { return m.Category } -//GetDescription returns Description +// GetDescription returns Description func (m CreateSkillVersionDetails) GetDescription() *string { return m.Description } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m CreateSkillVersionDetails) GetPlatformVersion() *string { return m.PlatformVersion } -//GetMultilingualMode returns MultilingualMode +// GetMultilingualMode returns MultilingualMode func (m CreateSkillVersionDetails) GetMultilingualMode() BotMultilingualModeEnum { return m.MultilingualMode } -//GetPrimaryLanguageTag returns PrimaryLanguageTag +// GetPrimaryLanguageTag returns PrimaryLanguageTag func (m CreateSkillVersionDetails) GetPrimaryLanguageTag() *string { return m.PrimaryLanguageTag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSkillVersionDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSkillVersionDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_slack_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_slack_channel_details.go index 40df3519c53..06d98a0403d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_slack_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_slack_channel_details.go @@ -55,27 +55,27 @@ type CreateSlackChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m CreateSlackChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateSlackChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateSlackChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSlackChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSlackChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_slack_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_slack_channel_result.go index 215ad0b73d9..a2934d8c3ba 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_slack_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_slack_channel_result.go @@ -68,52 +68,52 @@ type CreateSlackChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateSlackChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateSlackChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateSlackChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateSlackChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateSlackChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateSlackChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateSlackChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateSlackChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateSlackChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateSlackChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_test_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_test_channel_result.go index aadd481000a..a18b5fe42fd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_test_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_test_channel_result.go @@ -60,52 +60,52 @@ type CreateTestChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateTestChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateTestChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTestChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateTestChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateTestChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateTestChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateTestChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateTestChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateTestChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateTestChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_twilio_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_twilio_channel_details.go index 7326152d0b7..f6e62e96728 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_twilio_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_twilio_channel_details.go @@ -55,27 +55,27 @@ type CreateTwilioChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m CreateTwilioChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTwilioChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateTwilioChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateTwilioChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateTwilioChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_twilio_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_twilio_channel_result.go index d32ee1b36d2..a32a722ad87 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_twilio_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_twilio_channel_result.go @@ -71,52 +71,52 @@ type CreateTwilioChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateTwilioChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateTwilioChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateTwilioChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateTwilioChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateTwilioChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateTwilioChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateTwilioChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateTwilioChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateTwilioChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateTwilioChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_web_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_web_channel_details.go index 30418c46e08..685b0aa0e49 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_web_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_web_channel_details.go @@ -55,27 +55,27 @@ type CreateWebChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m CreateWebChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateWebChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateWebChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateWebChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateWebChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_web_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_web_channel_result.go index 04671534820..f7af740ebc2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_web_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_web_channel_result.go @@ -74,52 +74,52 @@ type CreateWebChannelResult struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m CreateWebChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateWebChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateWebChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateWebChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateWebChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateWebChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateWebChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateWebChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateWebChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateWebChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_webhook_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_webhook_channel_details.go index 9106cdbd49a..a084eb01574 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_webhook_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_webhook_channel_details.go @@ -46,27 +46,27 @@ type CreateWebhookChannelDetails struct { PayloadVersion WebhookPayloadVersionEnum `mandatory:"true" json:"payloadVersion"` } -//GetName returns Name +// GetName returns Name func (m CreateWebhookChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateWebhookChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateWebhookChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateWebhookChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateWebhookChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_webhook_channel_result.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_webhook_channel_result.go index df9e352a30c..3f63c24ef67 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_webhook_channel_result.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/create_webhook_channel_result.go @@ -69,52 +69,52 @@ type CreateWebhookChannelResult struct { PayloadVersion WebhookPayloadVersionEnum `mandatory:"true" json:"payloadVersion"` } -//GetId returns Id +// GetId returns Id func (m CreateWebhookChannelResult) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m CreateWebhookChannelResult) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m CreateWebhookChannelResult) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m CreateWebhookChannelResult) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m CreateWebhookChannelResult) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m CreateWebhookChannelResult) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m CreateWebhookChannelResult) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m CreateWebhookChannelResult) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateWebhookChannelResult) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateWebhookChannelResult) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/extend_digital_assistant_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/extend_digital_assistant_details.go index 47ff2bf09c2..286cc1baabf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/extend_digital_assistant_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/extend_digital_assistant_details.go @@ -55,37 +55,37 @@ type ExtendDigitalAssistantDetails struct { MultilingualMode BotMultilingualModeEnum `mandatory:"false" json:"multilingualMode,omitempty"` } -//GetCategory returns Category +// GetCategory returns Category func (m ExtendDigitalAssistantDetails) GetCategory() *string { return m.Category } -//GetDescription returns Description +// GetDescription returns Description func (m ExtendDigitalAssistantDetails) GetDescription() *string { return m.Description } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m ExtendDigitalAssistantDetails) GetPlatformVersion() *string { return m.PlatformVersion } -//GetMultilingualMode returns MultilingualMode +// GetMultilingualMode returns MultilingualMode func (m ExtendDigitalAssistantDetails) GetMultilingualMode() BotMultilingualModeEnum { return m.MultilingualMode } -//GetPrimaryLanguageTag returns PrimaryLanguageTag +// GetPrimaryLanguageTag returns PrimaryLanguageTag func (m ExtendDigitalAssistantDetails) GetPrimaryLanguageTag() *string { return m.PrimaryLanguageTag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ExtendDigitalAssistantDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ExtendDigitalAssistantDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/extend_skill_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/extend_skill_details.go index f0143723fa0..da357c6d49b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/extend_skill_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/extend_skill_details.go @@ -55,37 +55,37 @@ type ExtendSkillDetails struct { MultilingualMode BotMultilingualModeEnum `mandatory:"false" json:"multilingualMode,omitempty"` } -//GetCategory returns Category +// GetCategory returns Category func (m ExtendSkillDetails) GetCategory() *string { return m.Category } -//GetDescription returns Description +// GetDescription returns Description func (m ExtendSkillDetails) GetDescription() *string { return m.Description } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m ExtendSkillDetails) GetPlatformVersion() *string { return m.PlatformVersion } -//GetMultilingualMode returns MultilingualMode +// GetMultilingualMode returns MultilingualMode func (m ExtendSkillDetails) GetMultilingualMode() BotMultilingualModeEnum { return m.MultilingualMode } -//GetPrimaryLanguageTag returns PrimaryLanguageTag +// GetPrimaryLanguageTag returns PrimaryLanguageTag func (m ExtendSkillDetails) GetPrimaryLanguageTag() *string { return m.PrimaryLanguageTag } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ExtendSkillDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ExtendSkillDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/facebook_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/facebook_channel.go index 680d5b5f77d..b24014a8996 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/facebook_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/facebook_channel.go @@ -59,52 +59,52 @@ type FacebookChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m FacebookChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m FacebookChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m FacebookChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m FacebookChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m FacebookChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m FacebookChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m FacebookChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m FacebookChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m FacebookChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m FacebookChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/ios_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/ios_channel.go index 7453d9fea28..10af3b92202 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/ios_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/ios_channel.go @@ -61,52 +61,52 @@ type IosChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m IosChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m IosChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m IosChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m IosChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m IosChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m IosChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m IosChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m IosChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m IosChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m IosChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/ms_teams_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/ms_teams_channel.go index 4f7ae4ec976..c31ce51f9c8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/ms_teams_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/ms_teams_channel.go @@ -62,52 +62,52 @@ type MsTeamsChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m MsTeamsChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m MsTeamsChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m MsTeamsChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m MsTeamsChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m MsTeamsChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MsTeamsChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MsTeamsChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MsTeamsChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MsTeamsChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MsTeamsChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_client.go index 52b6ee7caea..3c5512edb43 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_client.go @@ -94,7 +94,7 @@ func (client *OdaClient) ConfigurationProvider() *common.ConfigurationProvider { // ChangeOdaInstanceCompartment Moves an Digital Assistant instance into a different compartment. When provided, If-Match is checked against // ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ChangeOdaInstanceCompartment.go.html to see an example of how to use ChangeOdaInstanceCompartment API. // A default retry strategy applies to this operation ChangeOdaInstanceCompartment() @@ -159,7 +159,7 @@ func (client OdaClient) changeOdaInstanceCompartment(ctx context.Context, reques // To monitor the status of the job, take the `opc-work-request-id` response // header value and use it to call `GET /workRequests/{workRequestId}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateOdaInstance.go.html to see an example of how to use CreateOdaInstance API. // A default retry strategy applies to this operation CreateOdaInstance() @@ -224,7 +224,7 @@ func (client OdaClient) createOdaInstance(ctx context.Context, request common.OC // To monitor the status of the job, take the `opc-work-request-id` response // header value and use it to call `GET /workRequests/{workRequestId}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateOdaInstanceAttachment.go.html to see an example of how to use CreateOdaInstanceAttachment API. // A default retry strategy applies to this operation CreateOdaInstanceAttachment() @@ -288,7 +288,7 @@ func (client OdaClient) createOdaInstanceAttachment(ctx context.Context, request // DeleteOdaInstance Starts an asynchronous job to delete the specified Digital Assistant instance. // To monitor the status of the job, take the `opc-work-request-id` response header value and use it to call `GET /workRequests/{workRequestId}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteOdaInstance.go.html to see an example of how to use DeleteOdaInstance API. // A default retry strategy applies to this operation DeleteOdaInstance() @@ -346,7 +346,7 @@ func (client OdaClient) deleteOdaInstance(ctx context.Context, request common.OC // DeleteOdaInstanceAttachment Starts an asynchronous job to delete the specified Digital Assistant instance attachment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteOdaInstanceAttachment.go.html to see an example of how to use DeleteOdaInstanceAttachment API. // A default retry strategy applies to this operation DeleteOdaInstanceAttachment() @@ -404,7 +404,7 @@ func (client OdaClient) deleteOdaInstanceAttachment(ctx context.Context, request // GetOdaInstance Gets the specified Digital Assistant instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetOdaInstance.go.html to see an example of how to use GetOdaInstance API. // A default retry strategy applies to this operation GetOdaInstance() @@ -462,7 +462,7 @@ func (client OdaClient) getOdaInstance(ctx context.Context, request common.OCIRe // GetOdaInstanceAttachment Gets an ODA instance attachment by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetOdaInstanceAttachment.go.html to see an example of how to use GetOdaInstanceAttachment API. // A default retry strategy applies to this operation GetOdaInstanceAttachment() @@ -522,7 +522,7 @@ func (client OdaClient) getOdaInstanceAttachment(ctx context.Context, request co // You can use this operation to monitor the status of jobs that you // requested to create, delete, and update instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -580,7 +580,7 @@ func (client OdaClient) getWorkRequest(ctx context.Context, request common.OCIRe // ListOdaInstanceAttachments Returns a list of ODA instance attachments // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListOdaInstanceAttachments.go.html to see an example of how to use ListOdaInstanceAttachments API. // A default retry strategy applies to this operation ListOdaInstanceAttachments() @@ -642,7 +642,7 @@ func (client OdaClient) listOdaInstanceAttachments(ctx context.Context, request // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListOdaInstances.go.html to see an example of how to use ListOdaInstances API. // A default retry strategy applies to this operation ListOdaInstances() @@ -703,7 +703,7 @@ func (client OdaClient) listOdaInstances(ctx context.Context, request common.OCI // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -764,7 +764,7 @@ func (client OdaClient) listWorkRequestErrors(ctx context.Context, request commo // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -825,7 +825,7 @@ func (client OdaClient) listWorkRequestLogs(ctx context.Context, request common. // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -884,7 +884,7 @@ func (client OdaClient) listWorkRequests(ctx context.Context, request common.OCI // StartOdaInstance Starts an inactive Digital Assistant instance. Once active, the instance will be accessible and metering // of requests will be started again. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/StartOdaInstance.go.html to see an example of how to use StartOdaInstance API. // A default retry strategy applies to this operation StartOdaInstance() @@ -949,7 +949,7 @@ func (client OdaClient) startOdaInstance(ctx context.Context, request common.OCI // of requests will be stopped until the instance is started again. Data associated with the instance // is not affected. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/StopOdaInstance.go.html to see an example of how to use StopOdaInstance API. // A default retry strategy applies to this operation StopOdaInstance() @@ -1012,7 +1012,7 @@ func (client OdaClient) stopOdaInstance(ctx context.Context, request common.OCIR // UpdateOdaInstance Updates the specified Digital Assistant instance with the information in the request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateOdaInstance.go.html to see an example of how to use UpdateOdaInstance API. // A default retry strategy applies to this operation UpdateOdaInstance() @@ -1070,7 +1070,7 @@ func (client OdaClient) updateOdaInstance(ctx context.Context, request common.OC // UpdateOdaInstanceAttachment Updates the ODA instance attachment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateOdaInstanceAttachment.go.html to see an example of how to use UpdateOdaInstanceAttachment API. // A default retry strategy applies to this operation UpdateOdaInstanceAttachment() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_management_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_management_client.go index a31a6ba2d80..6527d12ff86 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_management_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_management_client.go @@ -96,7 +96,7 @@ func (client *ManagementClient) ConfigurationProvider() *common.ConfigurationPro // value and use it to call `GET /workRequests/{workRequestID}`. // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ChangeOdaPrivateEndpointCompartment.go.html to see an example of how to use ChangeOdaPrivateEndpointCompartment API. // A default retry strategy applies to this operation ChangeOdaPrivateEndpointCompartment() @@ -159,7 +159,7 @@ func (client ManagementClient) changeOdaPrivateEndpointCompartment(ctx context.C // ConfigureDigitalAssistantParameters This will store the provided parameters in the Digital Assistant instance and update any Digital Assistants with matching parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ConfigureDigitalAssistantParameters.go.html to see an example of how to use ConfigureDigitalAssistantParameters API. // A default retry strategy applies to this operation ConfigureDigitalAssistantParameters() @@ -217,7 +217,7 @@ func (client ManagementClient) configureDigitalAssistantParameters(ctx context.C // CreateAuthenticationProvider Creates a new Authentication Provider // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateAuthenticationProvider.go.html to see an example of how to use CreateAuthenticationProvider API. // A default retry strategy applies to this operation CreateAuthenticationProvider() @@ -280,7 +280,7 @@ func (client ManagementClient) createAuthenticationProvider(ctx context.Context, // CreateChannel Creates a new Channel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateChannel.go.html to see an example of how to use CreateChannel API. // A default retry strategy applies to this operation CreateChannel() @@ -343,7 +343,7 @@ func (client ManagementClient) createChannel(ctx context.Context, request common // CreateDigitalAssistant Creates a new Digital Assistant. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateDigitalAssistant.go.html to see an example of how to use CreateDigitalAssistant API. // A default retry strategy applies to this operation CreateDigitalAssistant() @@ -408,7 +408,7 @@ func (client ManagementClient) createDigitalAssistant(ctx context.Context, reque // To monitor the status of the job, take the `opc-work-request-id` response // header value and use it to call `GET /workRequests/{workRequestID}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateOdaPrivateEndpoint.go.html to see an example of how to use CreateOdaPrivateEndpoint API. // A default retry strategy applies to this operation CreateOdaPrivateEndpoint() @@ -473,7 +473,7 @@ func (client ManagementClient) createOdaPrivateEndpoint(ctx context.Context, req // To monitor the status of the job, take the `opc-work-request-id` response // header value and use it to call `GET /workRequests/{workRequestID}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateOdaPrivateEndpointAttachment.go.html to see an example of how to use CreateOdaPrivateEndpointAttachment API. // A default retry strategy applies to this operation CreateOdaPrivateEndpointAttachment() @@ -538,7 +538,7 @@ func (client ManagementClient) createOdaPrivateEndpointAttachment(ctx context.Co // To monitor the status of the job, take the `opc-work-request-id` response // header value and use it to call `GET /workRequests/{workRequestID}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateOdaPrivateEndpointScanProxy.go.html to see an example of how to use CreateOdaPrivateEndpointScanProxy API. // A default retry strategy applies to this operation CreateOdaPrivateEndpointScanProxy() @@ -601,7 +601,7 @@ func (client ManagementClient) createOdaPrivateEndpointScanProxy(ctx context.Con // CreateSkill Creates a new Skill from scratch. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateSkill.go.html to see an example of how to use CreateSkill API. // A default retry strategy applies to this operation CreateSkill() @@ -664,7 +664,7 @@ func (client ManagementClient) createSkill(ctx context.Context, request common.O // CreateSkillParameter Creates a new Skill Parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateSkillParameter.go.html to see an example of how to use CreateSkillParameter API. // A default retry strategy applies to this operation CreateSkillParameter() @@ -727,7 +727,7 @@ func (client ManagementClient) createSkillParameter(ctx context.Context, request // CreateTranslator Creates a new Translator // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateTranslator.go.html to see an example of how to use CreateTranslator API. // A default retry strategy applies to this operation CreateTranslator() @@ -790,7 +790,7 @@ func (client ManagementClient) createTranslator(ctx context.Context, request com // DeleteAuthenticationProvider Delete the specified Authentication Provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteAuthenticationProvider.go.html to see an example of how to use DeleteAuthenticationProvider API. // A default retry strategy applies to this operation DeleteAuthenticationProvider() @@ -848,7 +848,7 @@ func (client ManagementClient) deleteAuthenticationProvider(ctx context.Context, // DeleteChannel Delete the specified Channel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteChannel.go.html to see an example of how to use DeleteChannel API. // A default retry strategy applies to this operation DeleteChannel() @@ -906,7 +906,7 @@ func (client ManagementClient) deleteChannel(ctx context.Context, request common // DeleteDigitalAssistant Delete the specified Digital Assistant. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteDigitalAssistant.go.html to see an example of how to use DeleteDigitalAssistant API. // A default retry strategy applies to this operation DeleteDigitalAssistant() @@ -965,7 +965,7 @@ func (client ManagementClient) deleteDigitalAssistant(ctx context.Context, reque // DeleteOdaPrivateEndpoint Starts an asynchronous job to delete the specified ODA Private Endpoint. // To monitor the status of the job, take the `opc-work-request-id` response header value and use it to call `GET /workRequests/{workRequestID}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteOdaPrivateEndpoint.go.html to see an example of how to use DeleteOdaPrivateEndpoint API. // A default retry strategy applies to this operation DeleteOdaPrivateEndpoint() @@ -1024,7 +1024,7 @@ func (client ManagementClient) deleteOdaPrivateEndpoint(ctx context.Context, req // DeleteOdaPrivateEndpointAttachment Starts an asynchronous job to delete the specified ODA Private Endpoint Attachment. // To monitor the status of the job, take the `opc-work-request-id` response header value and use it to call `GET /workRequests/{workRequestID}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteOdaPrivateEndpointAttachment.go.html to see an example of how to use DeleteOdaPrivateEndpointAttachment API. // A default retry strategy applies to this operation DeleteOdaPrivateEndpointAttachment() @@ -1083,7 +1083,7 @@ func (client ManagementClient) deleteOdaPrivateEndpointAttachment(ctx context.Co // DeleteOdaPrivateEndpointScanProxy Starts an asynchronous job to delete the specified ODA Private Endpoint Scan Proxy. // To monitor the status of the job, take the `opc-work-request-id` response header value and use it to call `GET /workRequests/{workRequestID}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteOdaPrivateEndpointScanProxy.go.html to see an example of how to use DeleteOdaPrivateEndpointScanProxy API. // A default retry strategy applies to this operation DeleteOdaPrivateEndpointScanProxy() @@ -1141,7 +1141,7 @@ func (client ManagementClient) deleteOdaPrivateEndpointScanProxy(ctx context.Con // DeleteSkill Delete the specified Skill. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteSkill.go.html to see an example of how to use DeleteSkill API. // A default retry strategy applies to this operation DeleteSkill() @@ -1199,7 +1199,7 @@ func (client ManagementClient) deleteSkill(ctx context.Context, request common.O // DeleteSkillParameter Delete the specified Skill Parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteSkillParameter.go.html to see an example of how to use DeleteSkillParameter API. // A default retry strategy applies to this operation DeleteSkillParameter() @@ -1257,7 +1257,7 @@ func (client ManagementClient) deleteSkillParameter(ctx context.Context, request // DeleteTranslator Delete the specified Translator. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteTranslator.go.html to see an example of how to use DeleteTranslator API. // A default retry strategy applies to this operation DeleteTranslator() @@ -1315,7 +1315,7 @@ func (client ManagementClient) deleteTranslator(ctx context.Context, request com // ExportDigitalAssistant Exports the specified Digital Assistant as an archive to Object Storage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ExportDigitalAssistant.go.html to see an example of how to use ExportDigitalAssistant API. // A default retry strategy applies to this operation ExportDigitalAssistant() @@ -1373,7 +1373,7 @@ func (client ManagementClient) exportDigitalAssistant(ctx context.Context, reque // ExportSkill Exports the specified Skill as an archive to Object Storage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ExportSkill.go.html to see an example of how to use ExportSkill API. // A default retry strategy applies to this operation ExportSkill() @@ -1431,7 +1431,7 @@ func (client ManagementClient) exportSkill(ctx context.Context, request common.O // GetAuthenticationProvider Gets the specified Authentication Provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetAuthenticationProvider.go.html to see an example of how to use GetAuthenticationProvider API. // A default retry strategy applies to this operation GetAuthenticationProvider() @@ -1489,7 +1489,7 @@ func (client ManagementClient) getAuthenticationProvider(ctx context.Context, re // GetChannel Gets the specified Channel. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetChannel.go.html to see an example of how to use GetChannel API. // A default retry strategy applies to this operation GetChannel() @@ -1547,7 +1547,7 @@ func (client ManagementClient) getChannel(ctx context.Context, request common.OC // GetDigitalAssistant Gets the specified Digital Assistant. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetDigitalAssistant.go.html to see an example of how to use GetDigitalAssistant API. // A default retry strategy applies to this operation GetDigitalAssistant() @@ -1605,7 +1605,7 @@ func (client ManagementClient) getDigitalAssistant(ctx context.Context, request // GetDigitalAssistantParameter Gets the specified Digital Assistant Parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetDigitalAssistantParameter.go.html to see an example of how to use GetDigitalAssistantParameter API. // A default retry strategy applies to this operation GetDigitalAssistantParameter() @@ -1663,7 +1663,7 @@ func (client ManagementClient) getDigitalAssistantParameter(ctx context.Context, // GetOdaPrivateEndpoint Gets the specified ODA Private Endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetOdaPrivateEndpoint.go.html to see an example of how to use GetOdaPrivateEndpoint API. // A default retry strategy applies to this operation GetOdaPrivateEndpoint() @@ -1721,7 +1721,7 @@ func (client ManagementClient) getOdaPrivateEndpoint(ctx context.Context, reques // GetOdaPrivateEndpointAttachment Gets the specified ODA Private Endpoint Attachment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetOdaPrivateEndpointAttachment.go.html to see an example of how to use GetOdaPrivateEndpointAttachment API. // A default retry strategy applies to this operation GetOdaPrivateEndpointAttachment() @@ -1779,7 +1779,7 @@ func (client ManagementClient) getOdaPrivateEndpointAttachment(ctx context.Conte // GetOdaPrivateEndpointScanProxy Gets the specified ODA Private Endpoint Scan Proxy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetOdaPrivateEndpointScanProxy.go.html to see an example of how to use GetOdaPrivateEndpointScanProxy API. // A default retry strategy applies to this operation GetOdaPrivateEndpointScanProxy() @@ -1837,7 +1837,7 @@ func (client ManagementClient) getOdaPrivateEndpointScanProxy(ctx context.Contex // GetSkill Gets the specified Skill. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetSkill.go.html to see an example of how to use GetSkill API. // A default retry strategy applies to this operation GetSkill() @@ -1895,7 +1895,7 @@ func (client ManagementClient) getSkill(ctx context.Context, request common.OCIR // GetSkillParameter Gets the specified Skill Parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetSkillParameter.go.html to see an example of how to use GetSkillParameter API. // A default retry strategy applies to this operation GetSkillParameter() @@ -1953,7 +1953,7 @@ func (client ManagementClient) getSkillParameter(ctx context.Context, request co // GetTranslator Gets the specified Translator. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetTranslator.go.html to see an example of how to use GetTranslator API. // A default retry strategy applies to this operation GetTranslator() @@ -2011,7 +2011,7 @@ func (client ManagementClient) getTranslator(ctx context.Context, request common // ImportBot Import a Bot archive from Object Storage. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ImportBot.go.html to see an example of how to use ImportBot API. // A default retry strategy applies to this operation ImportBot() @@ -2077,7 +2077,7 @@ func (client ManagementClient) importBot(ctx context.Context, request common.OCI // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListAuthenticationProviders.go.html to see an example of how to use ListAuthenticationProviders API. // A default retry strategy applies to this operation ListAuthenticationProviders() @@ -2138,7 +2138,7 @@ func (client ManagementClient) listAuthenticationProviders(ctx context.Context, // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListChannels.go.html to see an example of how to use ListChannels API. // A default retry strategy applies to this operation ListChannels() @@ -2199,7 +2199,7 @@ func (client ManagementClient) listChannels(ctx context.Context, request common. // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListDigitalAssistantParameters.go.html to see an example of how to use ListDigitalAssistantParameters API. // A default retry strategy applies to this operation ListDigitalAssistantParameters() @@ -2260,7 +2260,7 @@ func (client ManagementClient) listDigitalAssistantParameters(ctx context.Contex // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListDigitalAssistants.go.html to see an example of how to use ListDigitalAssistants API. // A default retry strategy applies to this operation ListDigitalAssistants() @@ -2321,7 +2321,7 @@ func (client ManagementClient) listDigitalAssistants(ctx context.Context, reques // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListOdaPrivateEndpointAttachments.go.html to see an example of how to use ListOdaPrivateEndpointAttachments API. // A default retry strategy applies to this operation ListOdaPrivateEndpointAttachments() @@ -2383,7 +2383,7 @@ func (client ManagementClient) listOdaPrivateEndpointAttachments(ctx context.Con // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListOdaPrivateEndpointScanProxies.go.html to see an example of how to use ListOdaPrivateEndpointScanProxies API. // A default retry strategy applies to this operation ListOdaPrivateEndpointScanProxies() @@ -2445,7 +2445,7 @@ func (client ManagementClient) listOdaPrivateEndpointScanProxies(ctx context.Con // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListOdaPrivateEndpoints.go.html to see an example of how to use ListOdaPrivateEndpoints API. // A default retry strategy applies to this operation ListOdaPrivateEndpoints() @@ -2506,7 +2506,7 @@ func (client ManagementClient) listOdaPrivateEndpoints(ctx context.Context, requ // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListSkillParameters.go.html to see an example of how to use ListSkillParameters API. // A default retry strategy applies to this operation ListSkillParameters() @@ -2567,7 +2567,7 @@ func (client ManagementClient) listSkillParameters(ctx context.Context, request // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListSkills.go.html to see an example of how to use ListSkills API. // A default retry strategy applies to this operation ListSkills() @@ -2628,7 +2628,7 @@ func (client ManagementClient) listSkills(ctx context.Context, request common.OC // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListTranslators.go.html to see an example of how to use ListTranslators API. // A default retry strategy applies to this operation ListTranslators() @@ -2687,7 +2687,7 @@ func (client ManagementClient) listTranslators(ctx context.Context, request comm // PublishDigitalAssistant Publish a draft Digital Assistant. // Once published the Digital Assistant cannot be modified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/PublishDigitalAssistant.go.html to see an example of how to use PublishDigitalAssistant API. // A default retry strategy applies to this operation PublishDigitalAssistant() @@ -2746,7 +2746,7 @@ func (client ManagementClient) publishDigitalAssistant(ctx context.Context, requ // PublishSkill Publish a draft Skill. // Once published it cannot be modified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/PublishSkill.go.html to see an example of how to use PublishSkill API. // A default retry strategy applies to this operation PublishSkill() @@ -2806,7 +2806,7 @@ func (client ManagementClient) publishSkill(ctx context.Context, request common. // If a Channel has no generated keys then no changes will be made. // Ensure that you take note of the newly generated keys in the response as they will not be returned again. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/RotateChannelKeys.go.html to see an example of how to use RotateChannelKeys API. // A default retry strategy applies to this operation RotateChannelKeys() @@ -2864,7 +2864,7 @@ func (client ManagementClient) rotateChannelKeys(ctx context.Context, request co // StartChannel Starts a Channel so that it will begin accepting messages. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/StartChannel.go.html to see an example of how to use StartChannel API. // A default retry strategy applies to this operation StartChannel() @@ -2922,7 +2922,7 @@ func (client ManagementClient) startChannel(ctx context.Context, request common. // StopChannel Stops a Channel so that it will no longer accept messages. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/StopChannel.go.html to see an example of how to use StopChannel API. // A default retry strategy applies to this operation StopChannel() @@ -2980,7 +2980,7 @@ func (client ManagementClient) stopChannel(ctx context.Context, request common.O // UpdateAuthenticationProvider Updates the specified Authentication Provider with the information in the request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateAuthenticationProvider.go.html to see an example of how to use UpdateAuthenticationProvider API. // A default retry strategy applies to this operation UpdateAuthenticationProvider() @@ -3038,7 +3038,7 @@ func (client ManagementClient) updateAuthenticationProvider(ctx context.Context, // UpdateChannel Updates the specified Channel with the information in the request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateChannel.go.html to see an example of how to use UpdateChannel API. // A default retry strategy applies to this operation UpdateChannel() @@ -3096,7 +3096,7 @@ func (client ManagementClient) updateChannel(ctx context.Context, request common // UpdateDigitalAssistant Updates the specified Digital Assistant with the information in the request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateDigitalAssistant.go.html to see an example of how to use UpdateDigitalAssistant API. // A default retry strategy applies to this operation UpdateDigitalAssistant() @@ -3154,7 +3154,7 @@ func (client ManagementClient) updateDigitalAssistant(ctx context.Context, reque // UpdateDigitalAssistantParameter Updates the specified Digital Assistant Parameter with the information in the request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateDigitalAssistantParameter.go.html to see an example of how to use UpdateDigitalAssistantParameter API. // A default retry strategy applies to this operation UpdateDigitalAssistantParameter() @@ -3212,7 +3212,7 @@ func (client ManagementClient) updateDigitalAssistantParameter(ctx context.Conte // UpdateOdaPrivateEndpoint Starts an asynchronous job to update the specified ODA Private Endpoint with the information in the request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateOdaPrivateEndpoint.go.html to see an example of how to use UpdateOdaPrivateEndpoint API. // A default retry strategy applies to this operation UpdateOdaPrivateEndpoint() @@ -3270,7 +3270,7 @@ func (client ManagementClient) updateOdaPrivateEndpoint(ctx context.Context, req // UpdateSkill Updates the specified Skill with the information in the request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateSkill.go.html to see an example of how to use UpdateSkill API. // A default retry strategy applies to this operation UpdateSkill() @@ -3328,7 +3328,7 @@ func (client ManagementClient) updateSkill(ctx context.Context, request common.O // UpdateSkillParameter Updates the specified Skill Parameter with the information in the request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateSkillParameter.go.html to see an example of how to use UpdateSkillParameter API. // A default retry strategy applies to this operation UpdateSkillParameter() @@ -3386,7 +3386,7 @@ func (client ManagementClient) updateSkillParameter(ctx context.Context, request // UpdateTranslator Updates the specified Translator with the information in the request body. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateTranslator.go.html to see an example of how to use UpdateTranslator API. // A default retry strategy applies to this operation UpdateTranslator() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_odapackage_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_odapackage_client.go index b454bfad4c7..3f49bd99c0f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_odapackage_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/oda_odapackage_client.go @@ -95,7 +95,7 @@ func (client *OdapackageClient) ConfigurationProvider() *common.ConfigurationPro // To monitor the status of the job, take the `opc-work-request-id` response // header value and use it to call `GET /workRequests/{workRequestId}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/CreateImportedPackage.go.html to see an example of how to use CreateImportedPackage API. // A default retry strategy applies to this operation CreateImportedPackage() @@ -160,7 +160,7 @@ func (client OdapackageClient) createImportedPackage(ctx context.Context, reques // To monitor the status of the job, take the `opc-work-request-id` response // header value and use it to call `GET /workRequests/{workRequestId}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/DeleteImportedPackage.go.html to see an example of how to use DeleteImportedPackage API. // A default retry strategy applies to this operation DeleteImportedPackage() @@ -223,7 +223,7 @@ func (client OdapackageClient) deleteImportedPackage(ctx context.Context, reques // GetImportedPackage Returns a list of summaries for imported packages in the instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetImportedPackage.go.html to see an example of how to use GetImportedPackage API. // A default retry strategy applies to this operation GetImportedPackage() @@ -281,7 +281,7 @@ func (client OdapackageClient) getImportedPackage(ctx context.Context, request c // GetPackage Returns details about a package, and how to import it. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/GetPackage.go.html to see an example of how to use GetPackage API. // A default retry strategy applies to this operation GetPackage() @@ -339,7 +339,7 @@ func (client OdapackageClient) getPackage(ctx context.Context, request common.OC // ListImportedPackages Returns a list of summaries for imported packages in the instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListImportedPackages.go.html to see an example of how to use ListImportedPackages API. // A default retry strategy applies to this operation ListImportedPackages() @@ -409,7 +409,7 @@ func (client OdapackageClient) listImportedPackages(ctx context.Context, request // there are more items to retrieve. To get the next page in the subsequent // GET request, include the header's value as the `page` query parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/ListPackages.go.html to see an example of how to use ListPackages API. // A default retry strategy applies to this operation ListPackages() @@ -469,7 +469,7 @@ func (client OdapackageClient) listPackages(ctx context.Context, request common. // To monitor the status of the job, take the `opc-work-request-id` response // header value and use it to call `GET /workRequests/{workRequestId}`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/oda/UpdateImportedPackage.go.html to see an example of how to use UpdateImportedPackage API. // A default retry strategy applies to this operation UpdateImportedPackage() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/oss_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/oss_channel.go index 8601311dcad..fda9fabe266 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/oss_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/oss_channel.go @@ -79,52 +79,52 @@ type OssChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m OssChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m OssChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m OssChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m OssChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m OssChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OssChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OssChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OssChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OssChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OssChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/osvc_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/osvc_channel.go index 8e9576c5872..22a676e7d5d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/osvc_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/osvc_channel.go @@ -80,52 +80,52 @@ type OsvcChannel struct { ChannelService OsvcServiceTypeEnum `mandatory:"true" json:"channelService"` } -//GetId returns Id +// GetId returns Id func (m OsvcChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m OsvcChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m OsvcChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m OsvcChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m OsvcChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OsvcChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OsvcChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OsvcChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OsvcChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OsvcChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/service_cloud_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/service_cloud_channel.go index 6f55032bc1d..8848ee74729 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/service_cloud_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/service_cloud_channel.go @@ -78,52 +78,52 @@ type ServiceCloudChannel struct { ClientType ServiceCloudClientTypeEnum `mandatory:"true" json:"clientType"` } -//GetId returns Id +// GetId returns Id func (m ServiceCloudChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m ServiceCloudChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m ServiceCloudChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m ServiceCloudChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m ServiceCloudChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m ServiceCloudChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m ServiceCloudChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m ServiceCloudChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ServiceCloudChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ServiceCloudChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/slack_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/slack_channel.go index 88814524116..fe38ed9aae9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/slack_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/slack_channel.go @@ -68,52 +68,52 @@ type SlackChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m SlackChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m SlackChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m SlackChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m SlackChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m SlackChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m SlackChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SlackChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m SlackChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m SlackChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m SlackChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/test_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/test_channel.go index 0797bd7ed69..edd8897c6de 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/test_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/test_channel.go @@ -56,52 +56,52 @@ type TestChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m TestChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m TestChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TestChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m TestChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m TestChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m TestChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m TestChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m TestChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m TestChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m TestChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/twilio_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/twilio_channel.go index 64bcd4c7f6e..dcfd44565a3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/twilio_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/twilio_channel.go @@ -71,52 +71,52 @@ type TwilioChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m TwilioChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m TwilioChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m TwilioChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m TwilioChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m TwilioChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m TwilioChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m TwilioChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m TwilioChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m TwilioChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m TwilioChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_android_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_android_channel_details.go index 14f902fcb03..9a7aa331149 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_android_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_android_channel_details.go @@ -46,27 +46,27 @@ type UpdateAndroidChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m UpdateAndroidChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateAndroidChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateAndroidChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateAndroidChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateAndroidChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_app_event_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_app_event_channel_details.go index 0565c60c5ef..2ca1ee3ae30 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_app_event_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_app_event_channel_details.go @@ -43,27 +43,27 @@ type UpdateAppEventChannelDetails struct { EventSinkBotIds []string `mandatory:"false" json:"eventSinkBotIds"` } -//GetName returns Name +// GetName returns Name func (m UpdateAppEventChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateAppEventChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateAppEventChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateAppEventChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateAppEventChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_application_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_application_channel_details.go index 51d629e9d7d..c473f26f2d1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_application_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_application_channel_details.go @@ -43,27 +43,27 @@ type UpdateApplicationChannelDetails struct { IsAuthenticatedUserId *bool `mandatory:"false" json:"isAuthenticatedUserId"` } -//GetName returns Name +// GetName returns Name func (m UpdateApplicationChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateApplicationChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateApplicationChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateApplicationChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateApplicationChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_cortana_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_cortana_channel_details.go index 88ba8b0a35e..441cdd65ce7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_cortana_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_cortana_channel_details.go @@ -46,27 +46,27 @@ type UpdateCortanaChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m UpdateCortanaChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateCortanaChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateCortanaChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateCortanaChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateCortanaChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_facebook_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_facebook_channel_details.go index efe35785e1d..d0a23c4e67d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_facebook_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_facebook_channel_details.go @@ -46,27 +46,27 @@ type UpdateFacebookChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m UpdateFacebookChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateFacebookChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateFacebookChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateFacebookChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateFacebookChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_ios_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_ios_channel_details.go index 9573159e69c..e7f168f1d71 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_ios_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_ios_channel_details.go @@ -46,27 +46,27 @@ type UpdateIosChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m UpdateIosChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateIosChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateIosChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateIosChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateIosChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_ms_teams_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_ms_teams_channel_details.go index bb50983077e..4aa7bc367cf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_ms_teams_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_ms_teams_channel_details.go @@ -46,27 +46,27 @@ type UpdateMsTeamsChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m UpdateMsTeamsChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateMsTeamsChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateMsTeamsChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateMsTeamsChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateMsTeamsChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_oss_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_oss_channel_details.go index b65dc7408d0..f04aae44de7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_oss_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_oss_channel_details.go @@ -67,27 +67,27 @@ type UpdateOssChannelDetails struct { AuthToken *string `mandatory:"false" json:"authToken"` } -//GetName returns Name +// GetName returns Name func (m UpdateOssChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOssChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateOssChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOssChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOssChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_osvc_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_osvc_channel_details.go index 9cfe80337ea..cede104274f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_osvc_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_osvc_channel_details.go @@ -68,27 +68,27 @@ type UpdateOsvcChannelDetails struct { ChannelService OsvcServiceTypeEnum `mandatory:"false" json:"channelService,omitempty"` } -//GetName returns Name +// GetName returns Name func (m UpdateOsvcChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOsvcChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateOsvcChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOsvcChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOsvcChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_service_cloud_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_service_cloud_channel_details.go index a0de6d36ddc..ad31597282c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_service_cloud_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_service_cloud_channel_details.go @@ -66,27 +66,27 @@ type UpdateServiceCloudChannelDetails struct { ClientType ServiceCloudClientTypeEnum `mandatory:"false" json:"clientType,omitempty"` } -//GetName returns Name +// GetName returns Name func (m UpdateServiceCloudChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateServiceCloudChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateServiceCloudChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateServiceCloudChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateServiceCloudChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_slack_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_slack_channel_details.go index b2cd0e59aae..45dbaabaabc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_slack_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_slack_channel_details.go @@ -55,27 +55,27 @@ type UpdateSlackChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m UpdateSlackChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateSlackChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateSlackChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateSlackChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateSlackChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_twilio_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_twilio_channel_details.go index f2c6643d72d..97ded704169 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_twilio_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_twilio_channel_details.go @@ -55,27 +55,27 @@ type UpdateTwilioChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m UpdateTwilioChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateTwilioChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateTwilioChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateTwilioChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateTwilioChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_web_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_web_channel_details.go index f6530e7a17c..9385c67db1e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_web_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_web_channel_details.go @@ -55,27 +55,27 @@ type UpdateWebChannelDetails struct { BotId *string `mandatory:"false" json:"botId"` } -//GetName returns Name +// GetName returns Name func (m UpdateWebChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateWebChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateWebChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateWebChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateWebChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_webhook_channel_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_webhook_channel_details.go index 605455bdeef..ae5242f1cbc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_webhook_channel_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/update_webhook_channel_details.go @@ -46,27 +46,27 @@ type UpdateWebhookChannelDetails struct { PayloadVersion WebhookPayloadVersionEnum `mandatory:"false" json:"payloadVersion,omitempty"` } -//GetName returns Name +// GetName returns Name func (m UpdateWebhookChannelDetails) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateWebhookChannelDetails) GetDescription() *string { return m.Description } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m UpdateWebhookChannelDetails) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateWebhookChannelDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateWebhookChannelDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/web_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/web_channel.go index 3a406a95445..14ca1e0d668 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/web_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/web_channel.go @@ -70,52 +70,52 @@ type WebChannel struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m WebChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m WebChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m WebChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m WebChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m WebChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WebChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WebChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WebChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WebChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WebChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/oda/webhook_channel.go b/vendor/github.com/oracle/oci-go-sdk/v65/oda/webhook_channel.go index 5773262968b..918248a5505 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/oda/webhook_channel.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/oda/webhook_channel.go @@ -65,52 +65,52 @@ type WebhookChannel struct { PayloadVersion WebhookPayloadVersionEnum `mandatory:"true" json:"payloadVersion"` } -//GetId returns Id +// GetId returns Id func (m WebhookChannel) GetId() *string { return m.Id } -//GetName returns Name +// GetName returns Name func (m WebhookChannel) GetName() *string { return m.Name } -//GetDescription returns Description +// GetDescription returns Description func (m WebhookChannel) GetDescription() *string { return m.Description } -//GetCategory returns Category +// GetCategory returns Category func (m WebhookChannel) GetCategory() ChannelCategoryEnum { return m.Category } -//GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds +// GetSessionExpiryDurationInMilliseconds returns SessionExpiryDurationInMilliseconds func (m WebhookChannel) GetSessionExpiryDurationInMilliseconds() *int64 { return m.SessionExpiryDurationInMilliseconds } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WebhookChannel) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WebhookChannel) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WebhookChannel) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WebhookChannel) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WebhookChannel) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_billingschedule_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_billingschedule_client.go index 8bad4fef8e4..daccba3dbc0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_billingschedule_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_billingschedule_client.go @@ -94,7 +94,7 @@ func (client *BillingScheduleClient) ConfigurationProvider() *common.Configurati // ListBillingSchedules This list API returns all billing schedules for given subscription id and // for a particular Subscribed Service if provided // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListBillingSchedules.go.html to see an example of how to use ListBillingSchedules API. func (client BillingScheduleClient) ListBillingSchedules(ctx context.Context, request ListBillingSchedulesRequest) (response ListBillingSchedulesResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_commitment_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_commitment_client.go index 5ebb246dd77..74800cca727 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_commitment_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_commitment_client.go @@ -93,7 +93,7 @@ func (client *CommitmentClient) ConfigurationProvider() *common.ConfigurationPro // GetCommitment This API returns the commitment details corresponding to the id provided // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/GetCommitment.go.html to see an example of how to use GetCommitment API. func (client CommitmentClient) GetCommitment(ctx context.Context, request GetCommitmentRequest) (response GetCommitmentResponse, err error) { @@ -150,7 +150,7 @@ func (client CommitmentClient) getCommitment(ctx context.Context, request common // ListCommitments This list API returns all commitments for a particular Subscribed Service // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListCommitments.go.html to see an example of how to use ListCommitments API. func (client CommitmentClient) ListCommitments(ctx context.Context, request ListCommitmentsRequest) (response ListCommitmentsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_computedusage_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_computedusage_client.go index 3404d2bfab6..d2fabab5cfc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_computedusage_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_computedusage_client.go @@ -93,7 +93,7 @@ func (client *ComputedUsageClient) ConfigurationProvider() *common.Configuration // GetComputedUsage This is an API which returns Computed Usage corresponding to the id passed // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/GetComputedUsage.go.html to see an example of how to use GetComputedUsage API. func (client ComputedUsageClient) GetComputedUsage(ctx context.Context, request GetComputedUsageRequest) (response GetComputedUsageResponse, err error) { @@ -150,7 +150,7 @@ func (client ComputedUsageClient) getComputedUsage(ctx context.Context, request // ListAggregatedComputedUsages This is a collection API which returns a list of aggregated computed usage details (there can be multiple Parent Products under a given SubID each of which is represented under Subscription Service Line # in SPM). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListAggregatedComputedUsages.go.html to see an example of how to use ListAggregatedComputedUsages API. func (client ComputedUsageClient) ListAggregatedComputedUsages(ctx context.Context, request ListAggregatedComputedUsagesRequest) (response ListAggregatedComputedUsagesResponse, err error) { @@ -207,7 +207,7 @@ func (client ComputedUsageClient) listAggregatedComputedUsages(ctx context.Conte // ListComputedUsages This is a collection API which returns a list of Computed Usages for given filters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListComputedUsages.go.html to see an example of how to use ListComputedUsages API. func (client ComputedUsageClient) ListComputedUsages(ctx context.Context, request ListComputedUsagesRequest) (response ListComputedUsagesResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_invoicesummary_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_invoicesummary_client.go index ef4b4e9d3ed..e726a447c97 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_invoicesummary_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_invoicesummary_client.go @@ -93,7 +93,7 @@ func (client *InvoiceSummaryClient) ConfigurationProvider() *common.Configuratio // ListInvoicelineComputedUsages This is a collection API which returns a list of Invoiced Computed Usages for given Invoiceline id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListInvoicelineComputedUsages.go.html to see an example of how to use ListInvoicelineComputedUsages API. func (client InvoiceSummaryClient) ListInvoicelineComputedUsages(ctx context.Context, request ListInvoicelineComputedUsagesRequest) (response ListInvoicelineComputedUsagesResponse, err error) { @@ -150,7 +150,7 @@ func (client InvoiceSummaryClient) listInvoicelineComputedUsages(ctx context.Con // ListInvoices This is a collection API which returns a list of Invoices for given filters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListInvoices.go.html to see an example of how to use ListInvoices API. func (client InvoiceSummaryClient) ListInvoices(ctx context.Context, request ListInvoicesRequest) (response ListInvoicesResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_organizationsubscription_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_organizationsubscription_client.go index b4e108eabdc..3459b7c8417 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_organizationsubscription_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_organizationsubscription_client.go @@ -93,7 +93,7 @@ func (client *OrganizationSubscriptionClient) ConfigurationProvider() *common.Co // ListOrganizationSubscriptions API that returns data for the list of subscription ids returned from Organizations API // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListOrganizationSubscriptions.go.html to see an example of how to use ListOrganizationSubscriptions API. func (client OrganizationSubscriptionClient) ListOrganizationSubscriptions(ctx context.Context, request ListOrganizationSubscriptionsRequest) (response ListOrganizationSubscriptionsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_ratecard_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_ratecard_client.go index 9f9ceffc2b2..9fee21ddabb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_ratecard_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_ratecard_client.go @@ -94,7 +94,7 @@ func (client *RatecardClient) ConfigurationProvider() *common.ConfigurationProvi // ListRateCards List API that returns all ratecards for given Subscription Id and Account ID (if provided) and // for a particular date range // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListRateCards.go.html to see an example of how to use ListRateCards API. func (client RatecardClient) ListRateCards(ctx context.Context, request ListRateCardsRequest) (response ListRateCardsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_subscribedservice_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_subscribedservice_client.go index 7d214b04239..8ac8d220b08 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_subscribedservice_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_subscribedservice_client.go @@ -93,7 +93,7 @@ func (client *SubscribedServiceClient) ConfigurationProvider() *common.Configura // GetSubscribedService This API returns the subscribed service details corresponding to the id provided // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/GetSubscribedService.go.html to see an example of how to use GetSubscribedService API. func (client SubscribedServiceClient) GetSubscribedService(ctx context.Context, request GetSubscribedServiceRequest) (response GetSubscribedServiceResponse, err error) { @@ -150,7 +150,7 @@ func (client SubscribedServiceClient) getSubscribedService(ctx context.Context, // ListSubscribedServices This list API returns all subscribed services for given Subscription ID // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListSubscribedServices.go.html to see an example of how to use ListSubscribedServices API. func (client SubscribedServiceClient) ListSubscribedServices(ctx context.Context, request ListSubscribedServicesRequest) (response ListSubscribedServicesResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_subscription_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_subscription_client.go index 9d8ef9a8569..84f99808792 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_subscription_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/onesubscription/onesubscription_subscription_client.go @@ -96,7 +96,7 @@ func (client *SubscriptionClient) ConfigurationProvider() *common.ConfigurationP // This API expects exactly one of the above mentioned parameters as input. If more than one parameters are provided the API will throw // a 400 - invalid parameters exception and if no parameters are provided it will throw a 400 - missing parameter exception // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/onesubscription/ListSubscriptions.go.html to see an example of how to use ListSubscriptions API. func (client SubscriptionClient) ListSubscriptions(ctx context.Context, request ListSubscriptionsRequest) (response ListSubscriptionsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ons/ons_notificationcontrolplane_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ons/ons_notificationcontrolplane_client.go index 47abce3779d..d4cf098c3f8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ons/ons_notificationcontrolplane_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ons/ons_notificationcontrolplane_client.go @@ -97,7 +97,7 @@ func (client *NotificationControlPlaneClient) ConfigurationProvider() *common.Co // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/ChangeTopicCompartment.go.html to see an example of how to use ChangeTopicCompartment API. func (client NotificationControlPlaneClient) ChangeTopicCompartment(ctx context.Context, request ChangeTopicCompartmentRequest) (response ChangeTopicCompartmentResponse, err error) { @@ -168,7 +168,7 @@ func (client NotificationControlPlaneClient) changeTopicCompartment(ctx context. // Console. For more information, see Resource Identifiers (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm). // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/CreateTopic.go.html to see an example of how to use CreateTopic API. func (client NotificationControlPlaneClient) CreateTopic(ctx context.Context, request CreateTopicRequest) (response CreateTopicResponse, err error) { @@ -231,7 +231,7 @@ func (client NotificationControlPlaneClient) createTopic(ctx context.Context, re // DeleteTopic Deletes the specified topic. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/DeleteTopic.go.html to see an example of how to use DeleteTopic API. func (client NotificationControlPlaneClient) DeleteTopic(ctx context.Context, request DeleteTopicRequest) (response DeleteTopicResponse, err error) { @@ -288,7 +288,7 @@ func (client NotificationControlPlaneClient) deleteTopic(ctx context.Context, re // GetTopic Gets the specified topic's configuration information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/GetTopic.go.html to see an example of how to use GetTopic API. func (client NotificationControlPlaneClient) GetTopic(ctx context.Context, request GetTopicRequest) (response GetTopicResponse, err error) { @@ -346,7 +346,7 @@ func (client NotificationControlPlaneClient) getTopic(ctx context.Context, reque // ListTopics Lists topics in the specified compartment. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 120. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/ListTopics.go.html to see an example of how to use ListTopics API. func (client NotificationControlPlaneClient) ListTopics(ctx context.Context, request ListTopicsRequest) (response ListTopicsResponse, err error) { @@ -404,7 +404,7 @@ func (client NotificationControlPlaneClient) listTopics(ctx context.Context, req // UpdateTopic Updates the specified topic's configuration. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/UpdateTopic.go.html to see an example of how to use UpdateTopic API. func (client NotificationControlPlaneClient) UpdateTopic(ctx context.Context, request UpdateTopicRequest) (response UpdateTopicResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ons/ons_notificationdataplane_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ons/ons_notificationdataplane_client.go index 93e69105d47..8414484c655 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ons/ons_notificationdataplane_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ons/ons_notificationdataplane_client.go @@ -97,7 +97,7 @@ func (client *NotificationDataPlaneClient) ConfigurationProvider() *common.Confi // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/ChangeSubscriptionCompartment.go.html to see an example of how to use ChangeSubscriptionCompartment API. func (client NotificationDataPlaneClient) ChangeSubscriptionCompartment(ctx context.Context, request ChangeSubscriptionCompartmentRequest) (response ChangeSubscriptionCompartmentResponse, err error) { @@ -162,7 +162,7 @@ func (client NotificationDataPlaneClient) changeSubscriptionCompartment(ctx cont // To confirm a subscription (https://docs.cloud.oracle.com/iaas/Content/Notification/Tasks/managingtopicsandsubscriptions.htm#confirmSub). // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/CreateSubscription.go.html to see an example of how to use CreateSubscription API. func (client NotificationDataPlaneClient) CreateSubscription(ctx context.Context, request CreateSubscriptionRequest) (response CreateSubscriptionResponse, err error) { @@ -225,7 +225,7 @@ func (client NotificationDataPlaneClient) createSubscription(ctx context.Context // DeleteSubscription Deletes the specified subscription. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/DeleteSubscription.go.html to see an example of how to use DeleteSubscription API. func (client NotificationDataPlaneClient) DeleteSubscription(ctx context.Context, request DeleteSubscriptionRequest) (response DeleteSubscriptionResponse, err error) { @@ -283,7 +283,7 @@ func (client NotificationDataPlaneClient) deleteSubscription(ctx context.Context // GetConfirmSubscription Gets the confirmation details for the specified subscription. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/GetConfirmSubscription.go.html to see an example of how to use GetConfirmSubscription API. func (client NotificationDataPlaneClient) GetConfirmSubscription(ctx context.Context, request GetConfirmSubscriptionRequest) (response GetConfirmSubscriptionResponse, err error) { @@ -341,7 +341,7 @@ func (client NotificationDataPlaneClient) getConfirmSubscription(ctx context.Con // GetSubscription Gets the specified subscription's configuration information. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/GetSubscription.go.html to see an example of how to use GetSubscription API. func (client NotificationDataPlaneClient) GetSubscription(ctx context.Context, request GetSubscriptionRequest) (response GetSubscriptionResponse, err error) { @@ -399,7 +399,7 @@ func (client NotificationDataPlaneClient) getSubscription(ctx context.Context, r // GetUnsubscription Unsubscribes the subscription from the topic. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/GetUnsubscription.go.html to see an example of how to use GetUnsubscription API. func (client NotificationDataPlaneClient) GetUnsubscription(ctx context.Context, request GetUnsubscriptionRequest) (response GetUnsubscriptionResponse, err error) { @@ -457,7 +457,7 @@ func (client NotificationDataPlaneClient) getUnsubscription(ctx context.Context, // ListSubscriptions Lists the subscriptions in the specified compartment or topic. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/ListSubscriptions.go.html to see an example of how to use ListSubscriptions API. func (client NotificationDataPlaneClient) ListSubscriptions(ctx context.Context, request ListSubscriptionsRequest) (response ListSubscriptionsResponse, err error) { @@ -524,7 +524,7 @@ func (client NotificationDataPlaneClient) listSubscriptions(ctx context.Context, // For more information about publishing messages, see Publishing Messages (https://docs.cloud.oracle.com/iaas/Content/Notification/Tasks/publishingmessages.htm). // For steps to request a limit increase, see Requesting a Service Limit Increase (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/servicelimits.htm#three). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/PublishMessage.go.html to see an example of how to use PublishMessage API. func (client NotificationDataPlaneClient) PublishMessage(ctx context.Context, request PublishMessageRequest) (response PublishMessageResponse, err error) { @@ -582,7 +582,7 @@ func (client NotificationDataPlaneClient) publishMessage(ctx context.Context, re // ResendSubscriptionConfirmation Resends the confirmation details for the specified subscription. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/ResendSubscriptionConfirmation.go.html to see an example of how to use ResendSubscriptionConfirmation API. func (client NotificationDataPlaneClient) ResendSubscriptionConfirmation(ctx context.Context, request ResendSubscriptionConfirmationRequest) (response ResendSubscriptionConfirmationResponse, err error) { @@ -640,7 +640,7 @@ func (client NotificationDataPlaneClient) resendSubscriptionConfirmation(ctx con // UpdateSubscription Updates the specified subscription's configuration. // Transactions Per Minute (TPM) per-tenancy limit for this operation: 60. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ons/UpdateSubscription.go.html to see an example of how to use UpdateSubscription API. func (client NotificationDataPlaneClient) UpdateSubscription(ctx context.Context, request UpdateSubscriptionRequest) (response UpdateSubscriptionResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opa/opa_opainstance_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/opa/opa_opainstance_client.go index e6d51dab937..71b2181fb1a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opa/opa_opainstance_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opa/opa_opainstance_client.go @@ -93,7 +93,7 @@ func (client *OpaInstanceClient) ConfigurationProvider() *common.ConfigurationPr // CancelWorkRequest Cancel work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -151,7 +151,7 @@ func (client OpaInstanceClient) cancelWorkRequest(ctx context.Context, request c // ChangeOpaInstanceCompartment Moves a OpaInstance resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/ChangeOpaInstanceCompartment.go.html to see an example of how to use ChangeOpaInstanceCompartment API. // A default retry strategy applies to this operation ChangeOpaInstanceCompartment() @@ -209,7 +209,7 @@ func (client OpaInstanceClient) changeOpaInstanceCompartment(ctx context.Context // CreateOpaInstance Creates a new OpaInstance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/CreateOpaInstance.go.html to see an example of how to use CreateOpaInstance API. // A default retry strategy applies to this operation CreateOpaInstance() @@ -272,7 +272,7 @@ func (client OpaInstanceClient) createOpaInstance(ctx context.Context, request c // DeleteOpaInstance Deletes a OpaInstance resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/DeleteOpaInstance.go.html to see an example of how to use DeleteOpaInstance API. // A default retry strategy applies to this operation DeleteOpaInstance() @@ -330,7 +330,7 @@ func (client OpaInstanceClient) deleteOpaInstance(ctx context.Context, request c // GetOpaInstance Gets a OpaInstance by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/GetOpaInstance.go.html to see an example of how to use GetOpaInstance API. // A default retry strategy applies to this operation GetOpaInstance() @@ -388,7 +388,7 @@ func (client OpaInstanceClient) getOpaInstance(ctx context.Context, request comm // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -446,7 +446,7 @@ func (client OpaInstanceClient) getWorkRequest(ctx context.Context, request comm // ListOpaInstances Returns a list of OpaInstances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/ListOpaInstances.go.html to see an example of how to use ListOpaInstances API. // A default retry strategy applies to this operation ListOpaInstances() @@ -504,7 +504,7 @@ func (client OpaInstanceClient) listOpaInstances(ctx context.Context, request co // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -562,7 +562,7 @@ func (client OpaInstanceClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -620,7 +620,7 @@ func (client OpaInstanceClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -678,7 +678,7 @@ func (client OpaInstanceClient) listWorkRequests(ctx context.Context, request co // UpdateOpaInstance Updates the OpaInstance // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opa/UpdateOpaInstance.go.html to see an example of how to use UpdateOpaInstance API. // A default retry strategy applies to this operation UpdateOpaInstance() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opensearch/opensearch_opensearchcluster_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/opensearch/opensearch_opensearchcluster_client.go index 66c2f44206b..e754e24894a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opensearch/opensearch_opensearchcluster_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opensearch/opensearch_opensearchcluster_client.go @@ -93,7 +93,7 @@ func (client *OpensearchClusterClient) ConfigurationProvider() *common.Configura // BackupOpensearchCluster Backup the opensearch cluster details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/BackupOpensearchCluster.go.html to see an example of how to use BackupOpensearchCluster API. func (client OpensearchClusterClient) BackupOpensearchCluster(ctx context.Context, request BackupOpensearchClusterRequest) (response BackupOpensearchClusterResponse, err error) { @@ -155,7 +155,7 @@ func (client OpensearchClusterClient) backupOpensearchCluster(ctx context.Contex // CreateOpensearchCluster Creates a new OpensearchCluster. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/CreateOpensearchCluster.go.html to see an example of how to use CreateOpensearchCluster API. func (client OpensearchClusterClient) CreateOpensearchCluster(ctx context.Context, request CreateOpensearchClusterRequest) (response CreateOpensearchClusterResponse, err error) { @@ -217,7 +217,7 @@ func (client OpensearchClusterClient) createOpensearchCluster(ctx context.Contex // DeleteOpensearchCluster Deletes a OpensearchCluster resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/DeleteOpensearchCluster.go.html to see an example of how to use DeleteOpensearchCluster API. func (client OpensearchClusterClient) DeleteOpensearchCluster(ctx context.Context, request DeleteOpensearchClusterRequest) (response DeleteOpensearchClusterResponse, err error) { @@ -274,7 +274,7 @@ func (client OpensearchClusterClient) deleteOpensearchCluster(ctx context.Contex // GetOpensearchCluster Gets a OpensearchCluster by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/GetOpensearchCluster.go.html to see an example of how to use GetOpensearchCluster API. func (client OpensearchClusterClient) GetOpensearchCluster(ctx context.Context, request GetOpensearchClusterRequest) (response GetOpensearchClusterResponse, err error) { @@ -331,7 +331,7 @@ func (client OpensearchClusterClient) getOpensearchCluster(ctx context.Context, // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client OpensearchClusterClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -388,7 +388,7 @@ func (client OpensearchClusterClient) getWorkRequest(ctx context.Context, reques // ListOpensearchClusters Returns a list of OpensearchClusters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/ListOpensearchClusters.go.html to see an example of how to use ListOpensearchClusters API. func (client OpensearchClusterClient) ListOpensearchClusters(ctx context.Context, request ListOpensearchClustersRequest) (response ListOpensearchClustersResponse, err error) { @@ -445,7 +445,7 @@ func (client OpensearchClusterClient) listOpensearchClusters(ctx context.Context // ListOpensearchVersions Lists the supported Opensearch versions // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/ListOpensearchVersions.go.html to see an example of how to use ListOpensearchVersions API. func (client OpensearchClusterClient) ListOpensearchVersions(ctx context.Context, request ListOpensearchVersionsRequest) (response ListOpensearchVersionsResponse, err error) { @@ -502,7 +502,7 @@ func (client OpensearchClusterClient) listOpensearchVersions(ctx context.Context // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client OpensearchClusterClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -559,7 +559,7 @@ func (client OpensearchClusterClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client OpensearchClusterClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -616,7 +616,7 @@ func (client OpensearchClusterClient) listWorkRequestLogs(ctx context.Context, r // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client OpensearchClusterClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -673,7 +673,7 @@ func (client OpensearchClusterClient) listWorkRequests(ctx context.Context, requ // OpensearchClusterRestore Restore the opensearch cluster details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/OpensearchClusterRestore.go.html to see an example of how to use OpensearchClusterRestore API. func (client OpensearchClusterClient) OpensearchClusterRestore(ctx context.Context, request OpensearchClusterRestoreRequest) (response OpensearchClusterRestoreResponse, err error) { @@ -735,7 +735,7 @@ func (client OpensearchClusterClient) opensearchClusterRestore(ctx context.Conte // ResizeOpensearchClusterHorizontal Resize the opensearch cluster horizontal details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/ResizeOpensearchClusterHorizontal.go.html to see an example of how to use ResizeOpensearchClusterHorizontal API. func (client OpensearchClusterClient) ResizeOpensearchClusterHorizontal(ctx context.Context, request ResizeOpensearchClusterHorizontalRequest) (response ResizeOpensearchClusterHorizontalResponse, err error) { @@ -797,7 +797,7 @@ func (client OpensearchClusterClient) resizeOpensearchClusterHorizontal(ctx cont // ResizeOpensearchClusterVertical Resize the opensearch cluster vertical details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/ResizeOpensearchClusterVertical.go.html to see an example of how to use ResizeOpensearchClusterVertical API. func (client OpensearchClusterClient) ResizeOpensearchClusterVertical(ctx context.Context, request ResizeOpensearchClusterVerticalRequest) (response ResizeOpensearchClusterVerticalResponse, err error) { @@ -859,7 +859,7 @@ func (client OpensearchClusterClient) resizeOpensearchClusterVertical(ctx contex // UpdateOpensearchCluster Updates the OpensearchCluster // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/UpdateOpensearchCluster.go.html to see an example of how to use UpdateOpensearchCluster API. func (client OpensearchClusterClient) UpdateOpensearchCluster(ctx context.Context, request UpdateOpensearchClusterRequest) (response UpdateOpensearchClusterResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opensearch/opensearch_opensearchclusterbackup_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/opensearch/opensearch_opensearchclusterbackup_client.go index 705e43c5880..2e7c3c41f4c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opensearch/opensearch_opensearchclusterbackup_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opensearch/opensearch_opensearchclusterbackup_client.go @@ -93,7 +93,7 @@ func (client *OpensearchClusterBackupClient) ConfigurationProvider() *common.Con // DeleteOpensearchClusterBackup Deletes a OpensearchClusterBackup resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/DeleteOpensearchClusterBackup.go.html to see an example of how to use DeleteOpensearchClusterBackup API. func (client OpensearchClusterBackupClient) DeleteOpensearchClusterBackup(ctx context.Context, request DeleteOpensearchClusterBackupRequest) (response DeleteOpensearchClusterBackupResponse, err error) { @@ -150,7 +150,7 @@ func (client OpensearchClusterBackupClient) deleteOpensearchClusterBackup(ctx co // GetOpensearchClusterBackup Gets a OpensearchClusterBackup by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/GetOpensearchClusterBackup.go.html to see an example of how to use GetOpensearchClusterBackup API. func (client OpensearchClusterBackupClient) GetOpensearchClusterBackup(ctx context.Context, request GetOpensearchClusterBackupRequest) (response GetOpensearchClusterBackupResponse, err error) { @@ -207,7 +207,7 @@ func (client OpensearchClusterBackupClient) getOpensearchClusterBackup(ctx conte // ListOpensearchClusterBackups Returns a list of OpensearchClusterBackups. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/ListOpensearchClusterBackups.go.html to see an example of how to use ListOpensearchClusterBackups API. func (client OpensearchClusterBackupClient) ListOpensearchClusterBackups(ctx context.Context, request ListOpensearchClusterBackupsRequest) (response ListOpensearchClusterBackupsResponse, err error) { @@ -264,7 +264,7 @@ func (client OpensearchClusterBackupClient) listOpensearchClusterBackups(ctx con // UpdateOpensearchClusterBackup Updates the OpensearchClusterBackup // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opensearch/UpdateOpensearchClusterBackup.go.html to see an example of how to use UpdateOpensearchClusterBackup API. func (client OpensearchClusterBackupClient) UpdateOpensearchClusterBackup(ctx context.Context, request UpdateOpensearchClusterBackupRequest) (response UpdateOpensearchClusterBackupResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_accessrequests_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_accessrequests_client.go index c144bd62d4e..598904cc768 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_accessrequests_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_accessrequests_client.go @@ -95,7 +95,7 @@ func (client *AccessRequestsClient) ConfigurationProvider() *common.Configuratio // ApproveAccessRequest Approves an access request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ApproveAccessRequest.go.html to see an example of how to use ApproveAccessRequest API. // A default retry strategy applies to this operation ApproveAccessRequest() @@ -158,7 +158,7 @@ func (client AccessRequestsClient) approveAccessRequest(ctx context.Context, req // GetAccessRequest Gets details of an access request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/GetAccessRequest.go.html to see an example of how to use GetAccessRequest API. // A default retry strategy applies to this operation GetAccessRequest() @@ -216,7 +216,7 @@ func (client AccessRequestsClient) getAccessRequest(ctx context.Context, request // InteractionRequest Posts query for additional information for the given access request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/InteractionRequest.go.html to see an example of how to use InteractionRequest API. // A default retry strategy applies to this operation InteractionRequest() @@ -279,7 +279,7 @@ func (client AccessRequestsClient) interactionRequest(ctx context.Context, reque // ListAccessRequestHistories Returns a history of all status associated with the accessRequestId. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ListAccessRequestHistories.go.html to see an example of how to use ListAccessRequestHistories API. // A default retry strategy applies to this operation ListAccessRequestHistories() @@ -337,7 +337,7 @@ func (client AccessRequestsClient) listAccessRequestHistories(ctx context.Contex // ListAccessRequests Lists all access requests in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ListAccessRequests.go.html to see an example of how to use ListAccessRequests API. // A default retry strategy applies to this operation ListAccessRequests() @@ -395,7 +395,7 @@ func (client AccessRequestsClient) listAccessRequests(ctx context.Context, reque // ListInteractions Lists the MoreInformation interaction between customer and operators. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ListInteractions.go.html to see an example of how to use ListInteractions API. // A default retry strategy applies to this operation ListInteractions() @@ -453,7 +453,7 @@ func (client AccessRequestsClient) listInteractions(ctx context.Context, request // RejectAccessRequest Rejects an access request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/RejectAccessRequest.go.html to see an example of how to use RejectAccessRequest API. // A default retry strategy applies to this operation RejectAccessRequest() @@ -516,7 +516,7 @@ func (client AccessRequestsClient) rejectAccessRequest(ctx context.Context, requ // ReviewAccessRequest Reviews the access request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ReviewAccessRequest.go.html to see an example of how to use ReviewAccessRequest API. // A default retry strategy applies to this operation ReviewAccessRequest() @@ -579,7 +579,7 @@ func (client AccessRequestsClient) reviewAccessRequest(ctx context.Context, requ // RevokeAccessRequest Revokes an already approved access request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/RevokeAccessRequest.go.html to see an example of how to use RevokeAccessRequest API. // A default retry strategy applies to this operation RevokeAccessRequest() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatoractions_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatoractions_client.go index cf71460efcc..3364a02b622 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatoractions_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatoractions_client.go @@ -95,7 +95,7 @@ func (client *OperatorActionsClient) ConfigurationProvider() *common.Configurati // GetOperatorAction Gets the operator action associated with the specified operator action ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/GetOperatorAction.go.html to see an example of how to use GetOperatorAction API. // A default retry strategy applies to this operation GetOperatorAction() @@ -153,7 +153,7 @@ func (client OperatorActionsClient) getOperatorAction(ctx context.Context, reque // ListOperatorActions Lists all the OperatorActions available in the system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ListOperatorActions.go.html to see an example of how to use ListOperatorActions API. // A default retry strategy applies to this operation ListOperatorActions() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatorcontrol_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatorcontrol_client.go index 675a902c2b4..f8f549f5400 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatorcontrol_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatorcontrol_client.go @@ -95,7 +95,7 @@ func (client *OperatorControlClient) ConfigurationProvider() *common.Configurati // ChangeOperatorControlCompartment Moves the Operator Control resource into a different compartment. When provided, 'If-Match' is checked against 'ETag' values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ChangeOperatorControlCompartment.go.html to see an example of how to use ChangeOperatorControlCompartment API. // A default retry strategy applies to this operation ChangeOperatorControlCompartment() @@ -158,7 +158,7 @@ func (client OperatorControlClient) changeOperatorControlCompartment(ctx context // CreateOperatorControl Creates an Operator Control. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/CreateOperatorControl.go.html to see an example of how to use CreateOperatorControl API. // A default retry strategy applies to this operation CreateOperatorControl() @@ -225,7 +225,7 @@ func (client OperatorControlClient) createOperatorControl(ctx context.Context, r // done under the Operator Control is preserved for future needs. The system purges the deleted Operator Control only when all of the audit data associated with the // Operator Control are also deleted. Therefore, you cannot reuse the name of the deleted Operator Control until the system purges the Operator Control. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/DeleteOperatorControl.go.html to see an example of how to use DeleteOperatorControl API. // A default retry strategy applies to this operation DeleteOperatorControl() @@ -283,7 +283,7 @@ func (client OperatorControlClient) deleteOperatorControl(ctx context.Context, r // GetOperatorControl Gets the Operator Control associated with the specified Operator Control ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/GetOperatorControl.go.html to see an example of how to use GetOperatorControl API. // A default retry strategy applies to this operation GetOperatorControl() @@ -341,7 +341,7 @@ func (client OperatorControlClient) getOperatorControl(ctx context.Context, requ // ListOperatorControls Lists the operator controls in the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ListOperatorControls.go.html to see an example of how to use ListOperatorControls API. // A default retry strategy applies to this operation ListOperatorControls() @@ -399,7 +399,7 @@ func (client OperatorControlClient) listOperatorControls(ctx context.Context, re // UpdateOperatorControl Modifies the existing OperatorControl for a given operator control id except the operator control id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/UpdateOperatorControl.go.html to see an example of how to use UpdateOperatorControl API. // A default retry strategy applies to this operation UpdateOperatorControl() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatorcontrolassignment_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatorcontrolassignment_client.go index 262a4b3a6f0..5e1135ba9b0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatorcontrolassignment_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/operatoraccesscontrol/operatoraccesscontrol_operatorcontrolassignment_client.go @@ -95,7 +95,7 @@ func (client *OperatorControlAssignmentClient) ConfigurationProvider() *common.C // ChangeOperatorControlAssignmentCompartment Changes the compartment of the specified Operator Control assignment ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ChangeOperatorControlAssignmentCompartment.go.html to see an example of how to use ChangeOperatorControlAssignmentCompartment API. // A default retry strategy applies to this operation ChangeOperatorControlAssignmentCompartment() @@ -158,7 +158,7 @@ func (client OperatorControlAssignmentClient) changeOperatorControlAssignmentCom // CreateOperatorControlAssignment Creates an Operator Control Assignment resource. In effect, this brings the target resource under the governance of the Operator Control for specified time duration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/CreateOperatorControlAssignment.go.html to see an example of how to use CreateOperatorControlAssignment API. // A default retry strategy applies to this operation CreateOperatorControlAssignment() @@ -221,7 +221,7 @@ func (client OperatorControlAssignmentClient) createOperatorControlAssignment(ct // DeleteOperatorControlAssignment Deletes the specified Operator Control Assignment. This has the effect of unassigning the specific Operator Control from the target resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/DeleteOperatorControlAssignment.go.html to see an example of how to use DeleteOperatorControlAssignment API. // A default retry strategy applies to this operation DeleteOperatorControlAssignment() @@ -279,7 +279,7 @@ func (client OperatorControlAssignmentClient) deleteOperatorControlAssignment(ct // GetOperatorControlAssignment Gets the details of an Operator Control Assignment of the specified ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/GetOperatorControlAssignment.go.html to see an example of how to use GetOperatorControlAssignment API. // A default retry strategy applies to this operation GetOperatorControlAssignment() @@ -337,7 +337,7 @@ func (client OperatorControlAssignmentClient) getOperatorControlAssignment(ctx c // ListOperatorControlAssignments Lists all Operator Control Assignments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/ListOperatorControlAssignments.go.html to see an example of how to use ListOperatorControlAssignments API. // A default retry strategy applies to this operation ListOperatorControlAssignments() @@ -395,7 +395,7 @@ func (client OperatorControlAssignmentClient) listOperatorControlAssignments(ctx // UpdateOperatorControlAssignment Modifies the existing Operator Control assignment of the specified Operator Control assignment ID. Modifying the assignment does not change the Operator Control assignment ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/operatoraccesscontrol/UpdateOperatorControlAssignment.go.html to see an example of how to use UpdateOperatorControlAssignment API. // A default retry strategy applies to this operation UpdateOperatorControlAssignment() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_configuration_summary.go index 2d37f261da4..ccfb955af0d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_configuration_summary.go @@ -57,52 +57,52 @@ type AutonomousDatabaseConfigurationSummary struct { ProcessorCount *int `mandatory:"false" json:"processorCount"` } -//GetDatabaseInsightId returns DatabaseInsightId +// GetDatabaseInsightId returns DatabaseInsightId func (m AutonomousDatabaseConfigurationSummary) GetDatabaseInsightId() *string { return m.DatabaseInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AutonomousDatabaseConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDatabaseName returns DatabaseName +// GetDatabaseName returns DatabaseName func (m AutonomousDatabaseConfigurationSummary) GetDatabaseName() *string { return m.DatabaseName } -//GetDatabaseDisplayName returns DatabaseDisplayName +// GetDatabaseDisplayName returns DatabaseDisplayName func (m AutonomousDatabaseConfigurationSummary) GetDatabaseDisplayName() *string { return m.DatabaseDisplayName } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m AutonomousDatabaseConfigurationSummary) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m AutonomousDatabaseConfigurationSummary) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetCdbName returns CdbName +// GetCdbName returns CdbName func (m AutonomousDatabaseConfigurationSummary) GetCdbName() *string { return m.CdbName } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AutonomousDatabaseConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AutonomousDatabaseConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m AutonomousDatabaseConfigurationSummary) GetProcessorCount() *int { return m.ProcessorCount } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_insight.go index a64ea466a6d..ae1b9050be1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_insight.go @@ -92,72 +92,72 @@ type AutonomousDatabaseInsight struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m AutonomousDatabaseInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AutonomousDatabaseInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetStatus returns Status +// GetStatus returns Status func (m AutonomousDatabaseInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m AutonomousDatabaseInsight) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m AutonomousDatabaseInsight) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m AutonomousDatabaseInsight) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AutonomousDatabaseInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AutonomousDatabaseInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AutonomousDatabaseInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AutonomousDatabaseInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AutonomousDatabaseInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AutonomousDatabaseInsight) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m AutonomousDatabaseInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails +// GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails func (m AutonomousDatabaseInsight) GetDatabaseConnectionStatusDetails() *string { return m.DatabaseConnectionStatusDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_insight_summary.go index 11debeeaaa6..176c5db8c34 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/autonomous_database_insight_summary.go @@ -85,92 +85,92 @@ type AutonomousDatabaseInsightSummary struct { LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m AutonomousDatabaseInsightSummary) GetId() *string { return m.Id } -//GetDatabaseId returns DatabaseId +// GetDatabaseId returns DatabaseId func (m AutonomousDatabaseInsightSummary) GetDatabaseId() *string { return m.DatabaseId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AutonomousDatabaseInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDatabaseName returns DatabaseName +// GetDatabaseName returns DatabaseName func (m AutonomousDatabaseInsightSummary) GetDatabaseName() *string { return m.DatabaseName } -//GetDatabaseDisplayName returns DatabaseDisplayName +// GetDatabaseDisplayName returns DatabaseDisplayName func (m AutonomousDatabaseInsightSummary) GetDatabaseDisplayName() *string { return m.DatabaseDisplayName } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m AutonomousDatabaseInsightSummary) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m AutonomousDatabaseInsightSummary) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetDatabaseHostNames returns DatabaseHostNames +// GetDatabaseHostNames returns DatabaseHostNames func (m AutonomousDatabaseInsightSummary) GetDatabaseHostNames() []string { return m.DatabaseHostNames } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AutonomousDatabaseInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AutonomousDatabaseInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AutonomousDatabaseInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m AutonomousDatabaseInsightSummary) GetProcessorCount() *int { return m.ProcessorCount } -//GetStatus returns Status +// GetStatus returns Status func (m AutonomousDatabaseInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AutonomousDatabaseInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AutonomousDatabaseInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AutonomousDatabaseInsightSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m AutonomousDatabaseInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails +// GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails func (m AutonomousDatabaseInsightSummary) GetDatabaseConnectionStatusDetails() *string { return m.DatabaseConnectionStatusDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_collection.go index 5eab856f583..d397fd2d3b1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_collection.go @@ -34,17 +34,17 @@ type AwrDatabaseCollection struct { Items []AwrDatabaseSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_cpu_usage_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_cpu_usage_collection.go index d36a218b65e..5023db55411 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_cpu_usage_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_cpu_usage_collection.go @@ -43,17 +43,17 @@ type AwrDatabaseCpuUsageCollection struct { Items []AwrDatabaseCpuUsageSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseCpuUsageCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseCpuUsageCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseCpuUsageCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_metric_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_metric_collection.go index 8b751f8e1e9..679b5d94f4a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_metric_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_metric_collection.go @@ -34,17 +34,17 @@ type AwrDatabaseMetricCollection struct { Items []AwrDatabaseMetricSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseMetricCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseMetricCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseMetricCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_parameter_change_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_parameter_change_collection.go index e57d60974ef..073dbf518db 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_parameter_change_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_parameter_change_collection.go @@ -34,17 +34,17 @@ type AwrDatabaseParameterChangeCollection struct { Items []AwrDatabaseParameterChangeSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseParameterChangeCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseParameterChangeCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseParameterChangeCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_parameter_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_parameter_collection.go index e58add7dcce..c277cbc0fa9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_parameter_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_parameter_collection.go @@ -34,17 +34,17 @@ type AwrDatabaseParameterCollection struct { Items []AwrDatabaseParameterSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseParameterCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseParameterCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseParameterCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_report.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_report.go index f509582b95f..185d7eb5ce2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_report.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_report.go @@ -37,17 +37,17 @@ type AwrDatabaseReport struct { Format AwrDatabaseReportFormatEnum `mandatory:"false" json:"format,omitempty"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseReport) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseReport) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseReport) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_snapshot_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_snapshot_collection.go index 7ee3392c73d..5e1602021c2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_snapshot_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_snapshot_collection.go @@ -34,17 +34,17 @@ type AwrDatabaseSnapshotCollection struct { Items []AwrDatabaseSnapshotSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseSnapshotCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseSnapshotCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseSnapshotCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_snapshot_range_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_snapshot_range_collection.go index 4f732a09650..adf5316b007 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_snapshot_range_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_snapshot_range_collection.go @@ -34,17 +34,17 @@ type AwrDatabaseSnapshotRangeCollection struct { Items []AwrDatabaseSnapshotRangeSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseSnapshotRangeCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseSnapshotRangeCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseSnapshotRangeCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_sql_report.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_sql_report.go index f845aa8057b..ab14cffe702 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_sql_report.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_sql_report.go @@ -37,17 +37,17 @@ type AwrDatabaseSqlReport struct { Format AwrDatabaseSqlReportFormatEnum `mandatory:"false" json:"format,omitempty"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseSqlReport) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseSqlReport) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseSqlReport) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_sysstat_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_sysstat_collection.go index 2b8103724df..110ee5cd868 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_sysstat_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_sysstat_collection.go @@ -34,17 +34,17 @@ type AwrDatabaseSysstatCollection struct { Items []AwrDatabaseSysstatSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseSysstatCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseSysstatCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseSysstatCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_top_wait_event_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_top_wait_event_collection.go index c7126c3a345..eccd7ef52ce 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_top_wait_event_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_top_wait_event_collection.go @@ -34,17 +34,17 @@ type AwrDatabaseTopWaitEventCollection struct { Items []AwrDatabaseTopWaitEventSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseTopWaitEventCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseTopWaitEventCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseTopWaitEventCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_wait_event_bucket_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_wait_event_bucket_collection.go index 4e44ce09018..cbe647d7c55 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_wait_event_bucket_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_wait_event_bucket_collection.go @@ -37,17 +37,17 @@ type AwrDatabaseWaitEventBucketCollection struct { Items []AwrDatabaseWaitEventBucketSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseWaitEventBucketCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseWaitEventBucketCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseWaitEventBucketCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_wait_event_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_wait_event_collection.go index 14980830dcc..26f4296bfda 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_wait_event_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/awr_database_wait_event_collection.go @@ -34,17 +34,17 @@ type AwrDatabaseWaitEventCollection struct { Items []AwrDatabaseWaitEventSummary `mandatory:"false" json:"items"` } -//GetName returns Name +// GetName returns Name func (m AwrDatabaseWaitEventCollection) GetName() *string { return m.Name } -//GetVersion returns Version +// GetVersion returns Version func (m AwrDatabaseWaitEventCollection) GetVersion() *string { return m.Version } -//GetDbQueryTimeInSecs returns DbQueryTimeInSecs +// GetDbQueryTimeInSecs returns DbQueryTimeInSecs func (m AwrDatabaseWaitEventCollection) GetDbQueryTimeInSecs() *float64 { return m.DbQueryTimeInSecs } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/cloud_importable_compute_entity_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/cloud_importable_compute_entity_summary.go index ec7a3228232..0b145ff82d4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/cloud_importable_compute_entity_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/cloud_importable_compute_entity_summary.go @@ -40,17 +40,17 @@ type CloudImportableComputeEntitySummary struct { PlatformType CloudImportableComputeEntitySummaryPlatformTypeEnum `mandatory:"true" json:"platformType"` } -//GetComputeId returns ComputeId +// GetComputeId returns ComputeId func (m CloudImportableComputeEntitySummary) GetComputeId() *string { return m.ComputeId } -//GetComputeDisplayName returns ComputeDisplayName +// GetComputeDisplayName returns ComputeDisplayName func (m CloudImportableComputeEntitySummary) GetComputeDisplayName() *string { return m.ComputeDisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CloudImportableComputeEntitySummary) GetCompartmentId() *string { return m.CompartmentId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_database_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_database_insight_details.go index a7e06701711..46f74d02311 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_database_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_database_insight_details.go @@ -45,17 +45,17 @@ type CreateEmManagedExternalDatabaseInsightDetails struct { ExadataInsightId *string `mandatory:"false" json:"exadataInsightId"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateEmManagedExternalDatabaseInsightDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateEmManagedExternalDatabaseInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateEmManagedExternalDatabaseInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_exadata_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_exadata_insight_details.go index e8e5ce9cc6d..8a39ae63bb8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_exadata_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_exadata_insight_details.go @@ -47,17 +47,17 @@ type CreateEmManagedExternalExadataInsightDetails struct { IsAutoSyncEnabled *bool `mandatory:"false" json:"isAutoSyncEnabled"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateEmManagedExternalExadataInsightDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateEmManagedExternalExadataInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateEmManagedExternalExadataInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_host_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_host_insight_details.go index b71e820508f..9f284f3917a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_host_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_em_managed_external_host_insight_details.go @@ -45,17 +45,17 @@ type CreateEmManagedExternalHostInsightDetails struct { ExadataInsightId *string `mandatory:"false" json:"exadataInsightId"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateEmManagedExternalHostInsightDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateEmManagedExternalHostInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateEmManagedExternalHostInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_macs_managed_cloud_host_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_macs_managed_cloud_host_insight_details.go index 7ba8b267232..77b30ddcc4a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_macs_managed_cloud_host_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_macs_managed_cloud_host_insight_details.go @@ -36,17 +36,17 @@ type CreateMacsManagedCloudHostInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateMacsManagedCloudHostInsightDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMacsManagedCloudHostInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMacsManagedCloudHostInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_macs_managed_external_host_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_macs_managed_external_host_insight_details.go index cc871f9b30e..bd0eb8291e0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_macs_managed_external_host_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_macs_managed_external_host_insight_details.go @@ -36,17 +36,17 @@ type CreateMacsManagedExternalHostInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateMacsManagedExternalHostInsightDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateMacsManagedExternalHostInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateMacsManagedExternalHostInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_opsi_ux_configuration_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_opsi_ux_configuration_details.go index f30f2dd80bf..b24b540ae32 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_opsi_ux_configuration_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_opsi_ux_configuration_details.go @@ -46,37 +46,37 @@ type CreateOpsiUxConfigurationDetails struct { ConfigItems []CreateConfigurationItemDetails `mandatory:"false" json:"configItems"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateOpsiUxConfigurationDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateOpsiUxConfigurationDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateOpsiUxConfigurationDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateOpsiUxConfigurationDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateOpsiUxConfigurationDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m CreateOpsiUxConfigurationDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetConfigItems returns ConfigItems +// GetConfigItems returns ConfigItems func (m CreateOpsiUxConfigurationDetails) GetConfigItems() []CreateConfigurationItemDetails { return m.ConfigItems } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_pe_comanaged_database_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_pe_comanaged_database_insight_details.go index 426c966859c..3cc7f255cb7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_pe_comanaged_database_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_pe_comanaged_database_insight_details.go @@ -59,17 +59,17 @@ type CreatePeComanagedDatabaseInsightDetails struct { DeploymentType CreatePeComanagedDatabaseInsightDetailsDeploymentTypeEnum `mandatory:"true" json:"deploymentType"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreatePeComanagedDatabaseInsightDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreatePeComanagedDatabaseInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreatePeComanagedDatabaseInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_pe_comanaged_exadata_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_pe_comanaged_exadata_insight_details.go index 4c327adc138..5930468f3ef 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_pe_comanaged_exadata_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/create_pe_comanaged_exadata_insight_details.go @@ -38,17 +38,17 @@ type CreatePeComanagedExadataInsightDetails struct { MemberVmClusterDetails []CreatePeComanagedExadataVmclusterDetails `mandatory:"false" json:"memberVmClusterDetails"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreatePeComanagedExadataInsightDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreatePeComanagedExadataInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreatePeComanagedExadataInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/credential_by_vault.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/credential_by_vault.go index d0869e219e8..e6b63fbe951 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/credential_by_vault.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/credential_by_vault.go @@ -37,7 +37,7 @@ type CredentialByVault struct { Role CredentialByVaultRoleEnum `mandatory:"false" json:"role,omitempty"` } -//GetCredentialSourceName returns CredentialSourceName +// GetCredentialSourceName returns CredentialSourceName func (m CredentialByVault) GetCredentialSourceName() *string { return m.CredentialSourceName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/credentials_by_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/credentials_by_source.go index 705016f7aa4..a69c63a6699 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/credentials_by_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/credentials_by_source.go @@ -25,7 +25,7 @@ type CredentialsBySource struct { CredentialSourceName *string `mandatory:"true" json:"credentialSourceName"` } -//GetCredentialSourceName returns CredentialSourceName +// GetCredentialSourceName returns CredentialSourceName func (m CredentialsBySource) GetCredentialSourceName() *string { return m.CredentialSourceName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_core_column_unit.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_core_column_unit.go index de1cd178e1b..4dcf6aafec5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_core_column_unit.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_core_column_unit.go @@ -28,7 +28,7 @@ type DataObjectCoreColumnUnit struct { Unit DataObjectCoreColumnUnitUnitEnum `mandatory:"false" json:"unit,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DataObjectCoreColumnUnit) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_custom_column_unit.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_custom_column_unit.go index a23bafa33d9..cc64de031d5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_custom_column_unit.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_custom_column_unit.go @@ -28,7 +28,7 @@ type DataObjectCustomColumnUnit struct { Unit *string `mandatory:"false" json:"unit"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DataObjectCustomColumnUnit) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_data_size_column_unit.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_data_size_column_unit.go index 99ebf7dad0a..6408f40c0f9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_data_size_column_unit.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_data_size_column_unit.go @@ -28,7 +28,7 @@ type DataObjectDataSizeColumnUnit struct { Unit DataObjectDataSizeColumnUnitUnitEnum `mandatory:"false" json:"unit,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DataObjectDataSizeColumnUnit) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_frequency_column_unit.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_frequency_column_unit.go index 1b75f730b96..b399a480ff5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_frequency_column_unit.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_frequency_column_unit.go @@ -28,7 +28,7 @@ type DataObjectFrequencyColumnUnit struct { Unit DataObjectFrequencyColumnUnitUnitEnum `mandatory:"false" json:"unit,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DataObjectFrequencyColumnUnit) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_other_standard_column_unit.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_other_standard_column_unit.go index 2493edff17a..d4622fe99cc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_other_standard_column_unit.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_other_standard_column_unit.go @@ -28,7 +28,7 @@ type DataObjectOtherStandardColumnUnit struct { Unit DataObjectOtherStandardColumnUnitUnitEnum `mandatory:"false" json:"unit,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DataObjectOtherStandardColumnUnit) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_power_column_unit.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_power_column_unit.go index f0b508b0c33..d33bd4f8431 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_power_column_unit.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_power_column_unit.go @@ -28,7 +28,7 @@ type DataObjectPowerColumnUnit struct { Unit DataObjectPowerColumnUnitUnitEnum `mandatory:"false" json:"unit,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DataObjectPowerColumnUnit) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_rate_column_unit.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_rate_column_unit.go index 838557b3158..389ff2977d6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_rate_column_unit.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_rate_column_unit.go @@ -29,7 +29,7 @@ type DataObjectRateColumnUnit struct { Denominator DataObjectColumnUnit `mandatory:"false" json:"denominator"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DataObjectRateColumnUnit) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_standard_query.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_standard_query.go index adb92d8e6f7..a234b48cd78 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_standard_query.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_standard_query.go @@ -39,12 +39,12 @@ type DataObjectStandardQuery struct { TimeFilters *DataObjectQueryTimeFilters `mandatory:"false" json:"timeFilters"` } -//GetBindParams returns BindParams +// GetBindParams returns BindParams func (m DataObjectStandardQuery) GetBindParams() []DataObjectBindParameter { return m.BindParams } -//GetQueryExecutionTimeoutInSeconds returns QueryExecutionTimeoutInSeconds +// GetQueryExecutionTimeoutInSeconds returns QueryExecutionTimeoutInSeconds func (m DataObjectStandardQuery) GetQueryExecutionTimeoutInSeconds() *float64 { return m.QueryExecutionTimeoutInSeconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_temperature_column_unit.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_temperature_column_unit.go index 8147a12ee98..460bf61196e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_temperature_column_unit.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_temperature_column_unit.go @@ -28,7 +28,7 @@ type DataObjectTemperatureColumnUnit struct { Unit DataObjectTemperatureColumnUnitUnitEnum `mandatory:"false" json:"unit,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DataObjectTemperatureColumnUnit) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_templatized_query.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_templatized_query.go index f858ef42d86..4aa1367dad4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_templatized_query.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_templatized_query.go @@ -54,12 +54,12 @@ type DataObjectTemplatizedQuery struct { TimeFilters *DataObjectQueryTimeFilters `mandatory:"false" json:"timeFilters"` } -//GetBindParams returns BindParams +// GetBindParams returns BindParams func (m DataObjectTemplatizedQuery) GetBindParams() []DataObjectBindParameter { return m.BindParams } -//GetQueryExecutionTimeoutInSeconds returns QueryExecutionTimeoutInSeconds +// GetQueryExecutionTimeoutInSeconds returns QueryExecutionTimeoutInSeconds func (m DataObjectTemplatizedQuery) GetQueryExecutionTimeoutInSeconds() *float64 { return m.QueryExecutionTimeoutInSeconds } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_time_column_unit.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_time_column_unit.go index a8e72115939..abdd6a32dcf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_time_column_unit.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/data_object_time_column_unit.go @@ -28,7 +28,7 @@ type DataObjectTimeColumnUnit struct { Unit DataObjectTimeColumnUnitUnitEnum `mandatory:"false" json:"unit,omitempty"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DataObjectTimeColumnUnit) GetDisplayName() *string { return m.DisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/database_insights_data_object.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/database_insights_data_object.go index 13640beb9da..48eeab155b4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/database_insights_data_object.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/database_insights_data_object.go @@ -48,42 +48,42 @@ type DatabaseInsightsDataObject struct { SupportedQueryParams []OpsiDataObjectSupportedQueryParam `mandatory:"false" json:"supportedQueryParams"` } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DatabaseInsightsDataObject) GetIdentifier() *string { return m.Identifier } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DatabaseInsightsDataObject) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m DatabaseInsightsDataObject) GetDescription() *string { return m.Description } -//GetName returns Name +// GetName returns Name func (m DatabaseInsightsDataObject) GetName() *string { return m.Name } -//GetGroupNames returns GroupNames +// GetGroupNames returns GroupNames func (m DatabaseInsightsDataObject) GetGroupNames() []string { return m.GroupNames } -//GetSupportedQueryTimePeriod returns SupportedQueryTimePeriod +// GetSupportedQueryTimePeriod returns SupportedQueryTimePeriod func (m DatabaseInsightsDataObject) GetSupportedQueryTimePeriod() *string { return m.SupportedQueryTimePeriod } -//GetColumnsMetadata returns ColumnsMetadata +// GetColumnsMetadata returns ColumnsMetadata func (m DatabaseInsightsDataObject) GetColumnsMetadata() []DataObjectColumnMetadata { return m.ColumnsMetadata } -//GetSupportedQueryParams returns SupportedQueryParams +// GetSupportedQueryParams returns SupportedQueryParams func (m DatabaseInsightsDataObject) GetSupportedQueryParams() []OpsiDataObjectSupportedQueryParam { return m.SupportedQueryParams } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/database_insights_data_object_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/database_insights_data_object_summary.go index 70497194db1..a05a353f7be 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/database_insights_data_object_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/database_insights_data_object_summary.go @@ -37,27 +37,27 @@ type DatabaseInsightsDataObjectSummary struct { GroupNames []string `mandatory:"false" json:"groupNames"` } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m DatabaseInsightsDataObjectSummary) GetIdentifier() *string { return m.Identifier } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m DatabaseInsightsDataObjectSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m DatabaseInsightsDataObjectSummary) GetDescription() *string { return m.Description } -//GetName returns Name +// GetName returns Name func (m DatabaseInsightsDataObjectSummary) GetName() *string { return m.Name } -//GetGroupNames returns GroupNames +// GetGroupNames returns GroupNames func (m DatabaseInsightsDataObjectSummary) GetGroupNames() []string { return m.GroupNames } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_external_instance.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_external_instance.go index 656ba306518..5a346a8290e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_external_instance.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_external_instance.go @@ -62,7 +62,7 @@ type DbExternalInstance struct { StartupTime *common.SDKTime `mandatory:"false" json:"startupTime"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m DbExternalInstance) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_external_properties.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_external_properties.go index 7801f18c78f..5937c39ebcc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_external_properties.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_external_properties.go @@ -56,7 +56,7 @@ type DbExternalProperties struct { Created *common.SDKTime `mandatory:"false" json:"created"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m DbExternalProperties) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_parameters.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_parameters.go index 5b3fd3a0635..b88654e2d8b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_parameters.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/db_parameters.go @@ -44,7 +44,7 @@ type DbParameters struct { IsDefault *string `mandatory:"false" json:"isDefault"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m DbParameters) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/dbos_config_instance.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/dbos_config_instance.go index f1ff1961055..b331085fd29 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/dbos_config_instance.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/dbos_config_instance.go @@ -44,7 +44,7 @@ type DbosConfigInstance struct { PhysicalMemoryBytes *float64 `mandatory:"false" json:"physicalMemoryBytes"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m DbosConfigInstance) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_configuration_summary.go index 3b03aa04e0c..cbf1a94dc35 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_configuration_summary.go @@ -65,52 +65,52 @@ type EmManagedExternalDatabaseConfigurationSummary struct { ProcessorCount *int `mandatory:"false" json:"processorCount"` } -//GetDatabaseInsightId returns DatabaseInsightId +// GetDatabaseInsightId returns DatabaseInsightId func (m EmManagedExternalDatabaseConfigurationSummary) GetDatabaseInsightId() *string { return m.DatabaseInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m EmManagedExternalDatabaseConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDatabaseName returns DatabaseName +// GetDatabaseName returns DatabaseName func (m EmManagedExternalDatabaseConfigurationSummary) GetDatabaseName() *string { return m.DatabaseName } -//GetDatabaseDisplayName returns DatabaseDisplayName +// GetDatabaseDisplayName returns DatabaseDisplayName func (m EmManagedExternalDatabaseConfigurationSummary) GetDatabaseDisplayName() *string { return m.DatabaseDisplayName } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m EmManagedExternalDatabaseConfigurationSummary) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m EmManagedExternalDatabaseConfigurationSummary) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetCdbName returns CdbName +// GetCdbName returns CdbName func (m EmManagedExternalDatabaseConfigurationSummary) GetCdbName() *string { return m.CdbName } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m EmManagedExternalDatabaseConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m EmManagedExternalDatabaseConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m EmManagedExternalDatabaseConfigurationSummary) GetProcessorCount() *int { return m.ProcessorCount } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_insight.go index 83e484771c7..d558d1a5760 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_insight.go @@ -88,72 +88,72 @@ type EmManagedExternalDatabaseInsight struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m EmManagedExternalDatabaseInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m EmManagedExternalDatabaseInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetStatus returns Status +// GetStatus returns Status func (m EmManagedExternalDatabaseInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m EmManagedExternalDatabaseInsight) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m EmManagedExternalDatabaseInsight) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m EmManagedExternalDatabaseInsight) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m EmManagedExternalDatabaseInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m EmManagedExternalDatabaseInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m EmManagedExternalDatabaseInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m EmManagedExternalDatabaseInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m EmManagedExternalDatabaseInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m EmManagedExternalDatabaseInsight) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m EmManagedExternalDatabaseInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails +// GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails func (m EmManagedExternalDatabaseInsight) GetDatabaseConnectionStatusDetails() *string { return m.DatabaseConnectionStatusDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_insight_summary.go index 85d723f1b77..1a206175d37 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_database_insight_summary.go @@ -100,92 +100,92 @@ type EmManagedExternalDatabaseInsightSummary struct { LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m EmManagedExternalDatabaseInsightSummary) GetId() *string { return m.Id } -//GetDatabaseId returns DatabaseId +// GetDatabaseId returns DatabaseId func (m EmManagedExternalDatabaseInsightSummary) GetDatabaseId() *string { return m.DatabaseId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m EmManagedExternalDatabaseInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDatabaseName returns DatabaseName +// GetDatabaseName returns DatabaseName func (m EmManagedExternalDatabaseInsightSummary) GetDatabaseName() *string { return m.DatabaseName } -//GetDatabaseDisplayName returns DatabaseDisplayName +// GetDatabaseDisplayName returns DatabaseDisplayName func (m EmManagedExternalDatabaseInsightSummary) GetDatabaseDisplayName() *string { return m.DatabaseDisplayName } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m EmManagedExternalDatabaseInsightSummary) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m EmManagedExternalDatabaseInsightSummary) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetDatabaseHostNames returns DatabaseHostNames +// GetDatabaseHostNames returns DatabaseHostNames func (m EmManagedExternalDatabaseInsightSummary) GetDatabaseHostNames() []string { return m.DatabaseHostNames } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m EmManagedExternalDatabaseInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m EmManagedExternalDatabaseInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m EmManagedExternalDatabaseInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m EmManagedExternalDatabaseInsightSummary) GetProcessorCount() *int { return m.ProcessorCount } -//GetStatus returns Status +// GetStatus returns Status func (m EmManagedExternalDatabaseInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m EmManagedExternalDatabaseInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m EmManagedExternalDatabaseInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m EmManagedExternalDatabaseInsightSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m EmManagedExternalDatabaseInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails +// GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails func (m EmManagedExternalDatabaseInsightSummary) GetDatabaseConnectionStatusDetails() *string { return m.DatabaseConnectionStatusDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_exadata_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_exadata_insight.go index 9399541943e..6c337175e6d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_exadata_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_exadata_insight.go @@ -91,77 +91,77 @@ type EmManagedExternalExadataInsight struct { LifecycleState ExadataInsightLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m EmManagedExternalExadataInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m EmManagedExternalExadataInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetExadataName returns ExadataName +// GetExadataName returns ExadataName func (m EmManagedExternalExadataInsight) GetExadataName() *string { return m.ExadataName } -//GetExadataDisplayName returns ExadataDisplayName +// GetExadataDisplayName returns ExadataDisplayName func (m EmManagedExternalExadataInsight) GetExadataDisplayName() *string { return m.ExadataDisplayName } -//GetExadataType returns ExadataType +// GetExadataType returns ExadataType func (m EmManagedExternalExadataInsight) GetExadataType() ExadataTypeEnum { return m.ExadataType } -//GetExadataRackType returns ExadataRackType +// GetExadataRackType returns ExadataRackType func (m EmManagedExternalExadataInsight) GetExadataRackType() ExadataRackTypeEnum { return m.ExadataRackType } -//GetIsVirtualizedExadata returns IsVirtualizedExadata +// GetIsVirtualizedExadata returns IsVirtualizedExadata func (m EmManagedExternalExadataInsight) GetIsVirtualizedExadata() *bool { return m.IsVirtualizedExadata } -//GetStatus returns Status +// GetStatus returns Status func (m EmManagedExternalExadataInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m EmManagedExternalExadataInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m EmManagedExternalExadataInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m EmManagedExternalExadataInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m EmManagedExternalExadataInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m EmManagedExternalExadataInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m EmManagedExternalExadataInsight) GetLifecycleState() ExadataInsightLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m EmManagedExternalExadataInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_exadata_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_exadata_insight_summary.go index 942a54d627c..4db9b1a3cc2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_exadata_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_exadata_insight_summary.go @@ -85,72 +85,72 @@ type EmManagedExternalExadataInsightSummary struct { LifecycleState ExadataInsightLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m EmManagedExternalExadataInsightSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m EmManagedExternalExadataInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetExadataName returns ExadataName +// GetExadataName returns ExadataName func (m EmManagedExternalExadataInsightSummary) GetExadataName() *string { return m.ExadataName } -//GetExadataDisplayName returns ExadataDisplayName +// GetExadataDisplayName returns ExadataDisplayName func (m EmManagedExternalExadataInsightSummary) GetExadataDisplayName() *string { return m.ExadataDisplayName } -//GetExadataType returns ExadataType +// GetExadataType returns ExadataType func (m EmManagedExternalExadataInsightSummary) GetExadataType() ExadataTypeEnum { return m.ExadataType } -//GetExadataRackType returns ExadataRackType +// GetExadataRackType returns ExadataRackType func (m EmManagedExternalExadataInsightSummary) GetExadataRackType() ExadataRackTypeEnum { return m.ExadataRackType } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m EmManagedExternalExadataInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m EmManagedExternalExadataInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m EmManagedExternalExadataInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetStatus returns Status +// GetStatus returns Status func (m EmManagedExternalExadataInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m EmManagedExternalExadataInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m EmManagedExternalExadataInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m EmManagedExternalExadataInsightSummary) GetLifecycleState() ExadataInsightLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m EmManagedExternalExadataInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_configuration_summary.go index 5bf19830628..646f9dcd272 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_configuration_summary.go @@ -92,97 +92,97 @@ type EmManagedExternalHostConfigurationSummary struct { PlatformType HostConfigurationSummaryPlatformTypeEnum `mandatory:"true" json:"platformType"` } -//GetHostInsightId returns HostInsightId +// GetHostInsightId returns HostInsightId func (m EmManagedExternalHostConfigurationSummary) GetHostInsightId() *string { return m.HostInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m EmManagedExternalHostConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m EmManagedExternalHostConfigurationSummary) GetHostName() *string { return m.HostName } -//GetPlatformType returns PlatformType +// GetPlatformType returns PlatformType func (m EmManagedExternalHostConfigurationSummary) GetPlatformType() HostConfigurationSummaryPlatformTypeEnum { return m.PlatformType } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m EmManagedExternalHostConfigurationSummary) GetPlatformVersion() *string { return m.PlatformVersion } -//GetPlatformVendor returns PlatformVendor +// GetPlatformVendor returns PlatformVendor func (m EmManagedExternalHostConfigurationSummary) GetPlatformVendor() *string { return m.PlatformVendor } -//GetTotalCpus returns TotalCpus +// GetTotalCpus returns TotalCpus func (m EmManagedExternalHostConfigurationSummary) GetTotalCpus() *int { return m.TotalCpus } -//GetTotalMemoryInGBs returns TotalMemoryInGBs +// GetTotalMemoryInGBs returns TotalMemoryInGBs func (m EmManagedExternalHostConfigurationSummary) GetTotalMemoryInGBs() *float64 { return m.TotalMemoryInGBs } -//GetCpuArchitecture returns CpuArchitecture +// GetCpuArchitecture returns CpuArchitecture func (m EmManagedExternalHostConfigurationSummary) GetCpuArchitecture() *string { return m.CpuArchitecture } -//GetCpuCacheInMBs returns CpuCacheInMBs +// GetCpuCacheInMBs returns CpuCacheInMBs func (m EmManagedExternalHostConfigurationSummary) GetCpuCacheInMBs() *float64 { return m.CpuCacheInMBs } -//GetCpuVendor returns CpuVendor +// GetCpuVendor returns CpuVendor func (m EmManagedExternalHostConfigurationSummary) GetCpuVendor() *string { return m.CpuVendor } -//GetCpuFrequencyInMhz returns CpuFrequencyInMhz +// GetCpuFrequencyInMhz returns CpuFrequencyInMhz func (m EmManagedExternalHostConfigurationSummary) GetCpuFrequencyInMhz() *float64 { return m.CpuFrequencyInMhz } -//GetCpuImplementation returns CpuImplementation +// GetCpuImplementation returns CpuImplementation func (m EmManagedExternalHostConfigurationSummary) GetCpuImplementation() *string { return m.CpuImplementation } -//GetCoresPerSocket returns CoresPerSocket +// GetCoresPerSocket returns CoresPerSocket func (m EmManagedExternalHostConfigurationSummary) GetCoresPerSocket() *int { return m.CoresPerSocket } -//GetTotalSockets returns TotalSockets +// GetTotalSockets returns TotalSockets func (m EmManagedExternalHostConfigurationSummary) GetTotalSockets() *int { return m.TotalSockets } -//GetThreadsPerSocket returns ThreadsPerSocket +// GetThreadsPerSocket returns ThreadsPerSocket func (m EmManagedExternalHostConfigurationSummary) GetThreadsPerSocket() *int { return m.ThreadsPerSocket } -//GetIsHyperThreadingEnabled returns IsHyperThreadingEnabled +// GetIsHyperThreadingEnabled returns IsHyperThreadingEnabled func (m EmManagedExternalHostConfigurationSummary) GetIsHyperThreadingEnabled() *bool { return m.IsHyperThreadingEnabled } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m EmManagedExternalHostConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m EmManagedExternalHostConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_insight.go index ecf51eb9896..89996d178e6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_insight.go @@ -100,72 +100,72 @@ type EmManagedExternalHostInsight struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m EmManagedExternalHostInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m EmManagedExternalHostInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m EmManagedExternalHostInsight) GetHostName() *string { return m.HostName } -//GetHostDisplayName returns HostDisplayName +// GetHostDisplayName returns HostDisplayName func (m EmManagedExternalHostInsight) GetHostDisplayName() *string { return m.HostDisplayName } -//GetHostType returns HostType +// GetHostType returns HostType func (m EmManagedExternalHostInsight) GetHostType() *string { return m.HostType } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m EmManagedExternalHostInsight) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m EmManagedExternalHostInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m EmManagedExternalHostInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m EmManagedExternalHostInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetStatus returns Status +// GetStatus returns Status func (m EmManagedExternalHostInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m EmManagedExternalHostInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m EmManagedExternalHostInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m EmManagedExternalHostInsight) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m EmManagedExternalHostInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_insight_summary.go index ab95fdc5d8c..268e542b57d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/em_managed_external_host_insight_summary.go @@ -97,77 +97,77 @@ type EmManagedExternalHostInsightSummary struct { LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m EmManagedExternalHostInsightSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m EmManagedExternalHostInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m EmManagedExternalHostInsightSummary) GetHostName() *string { return m.HostName } -//GetHostDisplayName returns HostDisplayName +// GetHostDisplayName returns HostDisplayName func (m EmManagedExternalHostInsightSummary) GetHostDisplayName() *string { return m.HostDisplayName } -//GetHostType returns HostType +// GetHostType returns HostType func (m EmManagedExternalHostInsightSummary) GetHostType() *string { return m.HostType } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m EmManagedExternalHostInsightSummary) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m EmManagedExternalHostInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m EmManagedExternalHostInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m EmManagedExternalHostInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetOpsiPrivateEndpointId returns OpsiPrivateEndpointId +// GetOpsiPrivateEndpointId returns OpsiPrivateEndpointId func (m EmManagedExternalHostInsightSummary) GetOpsiPrivateEndpointId() *string { return m.OpsiPrivateEndpointId } -//GetStatus returns Status +// GetStatus returns Status func (m EmManagedExternalHostInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m EmManagedExternalHostInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m EmManagedExternalHostInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m EmManagedExternalHostInsightSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m EmManagedExternalHostInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_database_machine_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_database_machine_configuration_summary.go index cbedc3d7d55..84bc9b414fd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_database_machine_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_database_machine_configuration_summary.go @@ -57,47 +57,47 @@ type ExadataDatabaseMachineConfigurationSummary struct { ExadataRackType ExadataRackTypeEnum `mandatory:"true" json:"exadataRackType"` } -//GetExadataInsightId returns ExadataInsightId +// GetExadataInsightId returns ExadataInsightId func (m ExadataDatabaseMachineConfigurationSummary) GetExadataInsightId() *string { return m.ExadataInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ExadataDatabaseMachineConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetExadataName returns ExadataName +// GetExadataName returns ExadataName func (m ExadataDatabaseMachineConfigurationSummary) GetExadataName() *string { return m.ExadataName } -//GetExadataDisplayName returns ExadataDisplayName +// GetExadataDisplayName returns ExadataDisplayName func (m ExadataDatabaseMachineConfigurationSummary) GetExadataDisplayName() *string { return m.ExadataDisplayName } -//GetExadataType returns ExadataType +// GetExadataType returns ExadataType func (m ExadataDatabaseMachineConfigurationSummary) GetExadataType() ExadataTypeEnum { return m.ExadataType } -//GetExadataRackType returns ExadataRackType +// GetExadataRackType returns ExadataRackType func (m ExadataDatabaseMachineConfigurationSummary) GetExadataRackType() ExadataRackTypeEnum { return m.ExadataRackType } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ExadataDatabaseMachineConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ExadataDatabaseMachineConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetVmclusterDetails returns VmclusterDetails +// GetVmclusterDetails returns VmclusterDetails func (m ExadataDatabaseMachineConfigurationSummary) GetVmclusterDetails() []VmClusterSummary { return m.VmclusterDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_exacs_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_exacs_configuration_summary.go index aaeae2e85d7..67916766856 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_exacs_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_exacs_configuration_summary.go @@ -57,47 +57,47 @@ type ExadataExacsConfigurationSummary struct { ExadataRackType ExadataRackTypeEnum `mandatory:"true" json:"exadataRackType"` } -//GetExadataInsightId returns ExadataInsightId +// GetExadataInsightId returns ExadataInsightId func (m ExadataExacsConfigurationSummary) GetExadataInsightId() *string { return m.ExadataInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m ExadataExacsConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetExadataName returns ExadataName +// GetExadataName returns ExadataName func (m ExadataExacsConfigurationSummary) GetExadataName() *string { return m.ExadataName } -//GetExadataDisplayName returns ExadataDisplayName +// GetExadataDisplayName returns ExadataDisplayName func (m ExadataExacsConfigurationSummary) GetExadataDisplayName() *string { return m.ExadataDisplayName } -//GetExadataType returns ExadataType +// GetExadataType returns ExadataType func (m ExadataExacsConfigurationSummary) GetExadataType() ExadataTypeEnum { return m.ExadataType } -//GetExadataRackType returns ExadataRackType +// GetExadataRackType returns ExadataRackType func (m ExadataExacsConfigurationSummary) GetExadataRackType() ExadataRackTypeEnum { return m.ExadataRackType } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m ExadataExacsConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m ExadataExacsConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetVmclusterDetails returns VmclusterDetails +// GetVmclusterDetails returns VmclusterDetails func (m ExadataExacsConfigurationSummary) GetVmclusterDetails() []VmClusterSummary { return m.VmclusterDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_insights_data_object.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_insights_data_object.go index 9372413eb4a..b8b50fd9a8c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_insights_data_object.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_insights_data_object.go @@ -48,42 +48,42 @@ type ExadataInsightsDataObject struct { SupportedQueryParams []OpsiDataObjectSupportedQueryParam `mandatory:"false" json:"supportedQueryParams"` } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ExadataInsightsDataObject) GetIdentifier() *string { return m.Identifier } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExadataInsightsDataObject) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m ExadataInsightsDataObject) GetDescription() *string { return m.Description } -//GetName returns Name +// GetName returns Name func (m ExadataInsightsDataObject) GetName() *string { return m.Name } -//GetGroupNames returns GroupNames +// GetGroupNames returns GroupNames func (m ExadataInsightsDataObject) GetGroupNames() []string { return m.GroupNames } -//GetSupportedQueryTimePeriod returns SupportedQueryTimePeriod +// GetSupportedQueryTimePeriod returns SupportedQueryTimePeriod func (m ExadataInsightsDataObject) GetSupportedQueryTimePeriod() *string { return m.SupportedQueryTimePeriod } -//GetColumnsMetadata returns ColumnsMetadata +// GetColumnsMetadata returns ColumnsMetadata func (m ExadataInsightsDataObject) GetColumnsMetadata() []DataObjectColumnMetadata { return m.ColumnsMetadata } -//GetSupportedQueryParams returns SupportedQueryParams +// GetSupportedQueryParams returns SupportedQueryParams func (m ExadataInsightsDataObject) GetSupportedQueryParams() []OpsiDataObjectSupportedQueryParam { return m.SupportedQueryParams } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_insights_data_object_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_insights_data_object_summary.go index 423d10080e0..6a92a188e26 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_insights_data_object_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/exadata_insights_data_object_summary.go @@ -37,27 +37,27 @@ type ExadataInsightsDataObjectSummary struct { GroupNames []string `mandatory:"false" json:"groupNames"` } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m ExadataInsightsDataObjectSummary) GetIdentifier() *string { return m.Identifier } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m ExadataInsightsDataObjectSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m ExadataInsightsDataObjectSummary) GetDescription() *string { return m.Description } -//GetName returns Name +// GetName returns Name func (m ExadataInsightsDataObjectSummary) GetName() *string { return m.Name } -//GetGroupNames returns GroupNames +// GetGroupNames returns GroupNames func (m ExadataInsightsDataObjectSummary) GetGroupNames() []string { return m.GroupNames } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_hardware_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_hardware_configuration.go index 6f184491785..e548634a801 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_hardware_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_hardware_configuration.go @@ -56,7 +56,7 @@ type HostCpuHardwareConfiguration struct { HyperThreadingEnabled *string `mandatory:"false" json:"hyperThreadingEnabled"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostCpuHardwareConfiguration) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_statistics.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_statistics.go index 9308bfd6953..c12dcf4997c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_statistics.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_statistics.go @@ -36,22 +36,22 @@ type HostCpuStatistics struct { Load *SummaryStatistics `mandatory:"false" json:"load"` } -//GetUsage returns Usage +// GetUsage returns Usage func (m HostCpuStatistics) GetUsage() *float64 { return m.Usage } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m HostCpuStatistics) GetCapacity() *float64 { return m.Capacity } -//GetUtilizationPercent returns UtilizationPercent +// GetUtilizationPercent returns UtilizationPercent func (m HostCpuStatistics) GetUtilizationPercent() *float64 { return m.UtilizationPercent } -//GetUsageChangePercent returns UsageChangePercent +// GetUsageChangePercent returns UsageChangePercent func (m HostCpuStatistics) GetUsageChangePercent() *float64 { return m.UsageChangePercent } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_usage.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_usage.go index 50c04bdb6d8..7c019fe017a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_usage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_cpu_usage.go @@ -53,7 +53,7 @@ type HostCpuUsage struct { CpuLoad15min *float32 `mandatory:"false" json:"cpuLoad15min"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostCpuUsage) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_entities.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_entities.go index aacae07e549..1ca34db559b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_entities.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_entities.go @@ -32,7 +32,7 @@ type HostEntities struct { EntityType *string `mandatory:"true" json:"entityType"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostEntities) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_filesystem_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_filesystem_configuration.go index 1b848b28b20..e9299cb9d75 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_filesystem_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_filesystem_configuration.go @@ -35,7 +35,7 @@ type HostFilesystemConfiguration struct { FileSystemSizeInGB *float64 `mandatory:"true" json:"fileSystemSizeInGB"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostFilesystemConfiguration) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_filesystem_usage.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_filesystem_usage.go index 4a4888f3302..3a357fdabe0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_filesystem_usage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_filesystem_usage.go @@ -33,7 +33,7 @@ type HostFilesystemUsage struct { FileSystemAvailInPercent *float64 `mandatory:"false" json:"fileSystemAvailInPercent"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostFilesystemUsage) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_hardware_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_hardware_configuration.go index d1b7e4075d5..29ae1f7979d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_hardware_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_hardware_configuration.go @@ -29,7 +29,7 @@ type HostHardwareConfiguration struct { CpuArchitecture *string `mandatory:"true" json:"cpuArchitecture"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostHardwareConfiguration) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_importable_agent_entity_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_importable_agent_entity_summary.go index 5dfa5c2bb53..412bf12d5d8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_importable_agent_entity_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_importable_agent_entity_summary.go @@ -37,12 +37,12 @@ type HostImportableAgentEntitySummary struct { PlatformType HostImportableAgentEntitySummaryPlatformTypeEnum `mandatory:"true" json:"platformType"` } -//GetManagementAgentId returns ManagementAgentId +// GetManagementAgentId returns ManagementAgentId func (m HostImportableAgentEntitySummary) GetManagementAgentId() *string { return m.ManagementAgentId } -//GetManagementAgentDisplayName returns ManagementAgentDisplayName +// GetManagementAgentDisplayName returns ManagementAgentDisplayName func (m HostImportableAgentEntitySummary) GetManagementAgentDisplayName() *string { return m.ManagementAgentDisplayName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_insights_data_object.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_insights_data_object.go index 77a5436a3e3..3f27e07e1a3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_insights_data_object.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_insights_data_object.go @@ -48,42 +48,42 @@ type HostInsightsDataObject struct { SupportedQueryParams []OpsiDataObjectSupportedQueryParam `mandatory:"false" json:"supportedQueryParams"` } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m HostInsightsDataObject) GetIdentifier() *string { return m.Identifier } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m HostInsightsDataObject) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m HostInsightsDataObject) GetDescription() *string { return m.Description } -//GetName returns Name +// GetName returns Name func (m HostInsightsDataObject) GetName() *string { return m.Name } -//GetGroupNames returns GroupNames +// GetGroupNames returns GroupNames func (m HostInsightsDataObject) GetGroupNames() []string { return m.GroupNames } -//GetSupportedQueryTimePeriod returns SupportedQueryTimePeriod +// GetSupportedQueryTimePeriod returns SupportedQueryTimePeriod func (m HostInsightsDataObject) GetSupportedQueryTimePeriod() *string { return m.SupportedQueryTimePeriod } -//GetColumnsMetadata returns ColumnsMetadata +// GetColumnsMetadata returns ColumnsMetadata func (m HostInsightsDataObject) GetColumnsMetadata() []DataObjectColumnMetadata { return m.ColumnsMetadata } -//GetSupportedQueryParams returns SupportedQueryParams +// GetSupportedQueryParams returns SupportedQueryParams func (m HostInsightsDataObject) GetSupportedQueryParams() []OpsiDataObjectSupportedQueryParam { return m.SupportedQueryParams } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_insights_data_object_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_insights_data_object_summary.go index bbfc12f487b..38d5ec0080b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_insights_data_object_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_insights_data_object_summary.go @@ -37,27 +37,27 @@ type HostInsightsDataObjectSummary struct { GroupNames []string `mandatory:"false" json:"groupNames"` } -//GetIdentifier returns Identifier +// GetIdentifier returns Identifier func (m HostInsightsDataObjectSummary) GetIdentifier() *string { return m.Identifier } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m HostInsightsDataObjectSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m HostInsightsDataObjectSummary) GetDescription() *string { return m.Description } -//GetName returns Name +// GetName returns Name func (m HostInsightsDataObjectSummary) GetName() *string { return m.Name } -//GetGroupNames returns GroupNames +// GetGroupNames returns GroupNames func (m HostInsightsDataObjectSummary) GetGroupNames() []string { return m.GroupNames } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_configuration.go index ffb189a2603..6a201c11bde 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_configuration.go @@ -41,7 +41,7 @@ type HostMemoryConfiguration struct { HugePagesTotal *int `mandatory:"false" json:"hugePagesTotal"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostMemoryConfiguration) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_statistics.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_statistics.go index 109019ba295..3c1ca368389 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_statistics.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_statistics.go @@ -52,22 +52,22 @@ type HostMemoryStatistics struct { Load *SummaryStatistics `mandatory:"false" json:"load"` } -//GetUsage returns Usage +// GetUsage returns Usage func (m HostMemoryStatistics) GetUsage() *float64 { return m.Usage } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m HostMemoryStatistics) GetCapacity() *float64 { return m.Capacity } -//GetUtilizationPercent returns UtilizationPercent +// GetUtilizationPercent returns UtilizationPercent func (m HostMemoryStatistics) GetUtilizationPercent() *float64 { return m.UtilizationPercent } -//GetUsageChangePercent returns UsageChangePercent +// GetUsageChangePercent returns UsageChangePercent func (m HostMemoryStatistics) GetUsageChangePercent() *float64 { return m.UsageChangePercent } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_usage.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_usage.go index ca881a5e7b9..f5468329e40 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_usage.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_memory_usage.go @@ -68,7 +68,7 @@ type HostMemoryUsage struct { HugePagesSurplus *int `mandatory:"false" json:"hugePagesSurplus"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostMemoryUsage) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_activity_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_activity_summary.go index eaa4430a9ad..367df404fcd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_activity_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_activity_summary.go @@ -38,7 +38,7 @@ type HostNetworkActivitySummary struct { AllNetworkIoInMbps *float64 `mandatory:"false" json:"allNetworkIoInMbps"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostNetworkActivitySummary) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_configuration.go index 2cf46bd9be0..fd8b08494a1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_configuration.go @@ -35,7 +35,7 @@ type HostNetworkConfiguration struct { MacAddress *string `mandatory:"false" json:"macAddress"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostNetworkConfiguration) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_statistics.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_statistics.go index 952793d3a21..a2caba3fdef 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_statistics.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_network_statistics.go @@ -38,22 +38,22 @@ type HostNetworkStatistics struct { NetworkWriteInMBs *float64 `mandatory:"false" json:"networkWriteInMBs"` } -//GetUsage returns Usage +// GetUsage returns Usage func (m HostNetworkStatistics) GetUsage() *float64 { return m.Usage } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m HostNetworkStatistics) GetCapacity() *float64 { return m.Capacity } -//GetUtilizationPercent returns UtilizationPercent +// GetUtilizationPercent returns UtilizationPercent func (m HostNetworkStatistics) GetUtilizationPercent() *float64 { return m.UtilizationPercent } -//GetUsageChangePercent returns UsageChangePercent +// GetUsageChangePercent returns UsageChangePercent func (m HostNetworkStatistics) GetUsageChangePercent() *float64 { return m.UsageChangePercent } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_product.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_product.go index 438244ff264..75773499d6c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_product.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_product.go @@ -35,7 +35,7 @@ type HostProduct struct { Version *string `mandatory:"false" json:"version"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostProduct) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_resource_allocation.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_resource_allocation.go index e02330cf689..4385a0c8f2b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_resource_allocation.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_resource_allocation.go @@ -32,7 +32,7 @@ type HostResourceAllocation struct { TotalMemoryInGB *float64 `mandatory:"false" json:"totalMemoryInGB"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostResourceAllocation) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_storage_statistics.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_storage_statistics.go index 26bc93e6d75..369a78cc337 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_storage_statistics.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_storage_statistics.go @@ -36,22 +36,22 @@ type HostStorageStatistics struct { FilesystemAvailableInPercent *float64 `mandatory:"false" json:"filesystemAvailableInPercent"` } -//GetUsage returns Usage +// GetUsage returns Usage func (m HostStorageStatistics) GetUsage() *float64 { return m.Usage } -//GetCapacity returns Capacity +// GetCapacity returns Capacity func (m HostStorageStatistics) GetCapacity() *float64 { return m.Capacity } -//GetUtilizationPercent returns UtilizationPercent +// GetUtilizationPercent returns UtilizationPercent func (m HostStorageStatistics) GetUtilizationPercent() *float64 { return m.UtilizationPercent } -//GetUsageChangePercent returns UsageChangePercent +// GetUsageChangePercent returns UsageChangePercent func (m HostStorageStatistics) GetUsageChangePercent() *float64 { return m.UsageChangePercent } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_top_processes.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_top_processes.go index 7dbcbf967e8..a7717176b1a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_top_processes.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/host_top_processes.go @@ -57,7 +57,7 @@ type HostTopProcesses struct { TotalProcesses *float32 `mandatory:"false" json:"totalProcesses"` } -//GetTimeCollected returns TimeCollected +// GetTimeCollected returns TimeCollected func (m HostTopProcesses) GetTimeCollected() *common.SDKTime { return m.TimeCollected } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/individual_opsi_data_object_details_in_query.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/individual_opsi_data_object_details_in_query.go index a01cb30b618..56b76598dc1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/individual_opsi_data_object_details_in_query.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/individual_opsi_data_object_details_in_query.go @@ -29,7 +29,7 @@ type IndividualOpsiDataObjectDetailsInQuery struct { QueryParams []OpsiDataObjectQueryParam `mandatory:"false" json:"queryParams"` } -//GetQueryParams returns QueryParams +// GetQueryParams returns QueryParams func (m IndividualOpsiDataObjectDetailsInQuery) GetQueryParams() []OpsiDataObjectQueryParam { return m.QueryParams } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_configuration_summary.go index fe321c9b1f6..3b3096dbd23 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_configuration_summary.go @@ -93,97 +93,97 @@ type MacsManagedCloudHostConfigurationSummary struct { PlatformType HostConfigurationSummaryPlatformTypeEnum `mandatory:"true" json:"platformType"` } -//GetHostInsightId returns HostInsightId +// GetHostInsightId returns HostInsightId func (m MacsManagedCloudHostConfigurationSummary) GetHostInsightId() *string { return m.HostInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MacsManagedCloudHostConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m MacsManagedCloudHostConfigurationSummary) GetHostName() *string { return m.HostName } -//GetPlatformType returns PlatformType +// GetPlatformType returns PlatformType func (m MacsManagedCloudHostConfigurationSummary) GetPlatformType() HostConfigurationSummaryPlatformTypeEnum { return m.PlatformType } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m MacsManagedCloudHostConfigurationSummary) GetPlatformVersion() *string { return m.PlatformVersion } -//GetPlatformVendor returns PlatformVendor +// GetPlatformVendor returns PlatformVendor func (m MacsManagedCloudHostConfigurationSummary) GetPlatformVendor() *string { return m.PlatformVendor } -//GetTotalCpus returns TotalCpus +// GetTotalCpus returns TotalCpus func (m MacsManagedCloudHostConfigurationSummary) GetTotalCpus() *int { return m.TotalCpus } -//GetTotalMemoryInGBs returns TotalMemoryInGBs +// GetTotalMemoryInGBs returns TotalMemoryInGBs func (m MacsManagedCloudHostConfigurationSummary) GetTotalMemoryInGBs() *float64 { return m.TotalMemoryInGBs } -//GetCpuArchitecture returns CpuArchitecture +// GetCpuArchitecture returns CpuArchitecture func (m MacsManagedCloudHostConfigurationSummary) GetCpuArchitecture() *string { return m.CpuArchitecture } -//GetCpuCacheInMBs returns CpuCacheInMBs +// GetCpuCacheInMBs returns CpuCacheInMBs func (m MacsManagedCloudHostConfigurationSummary) GetCpuCacheInMBs() *float64 { return m.CpuCacheInMBs } -//GetCpuVendor returns CpuVendor +// GetCpuVendor returns CpuVendor func (m MacsManagedCloudHostConfigurationSummary) GetCpuVendor() *string { return m.CpuVendor } -//GetCpuFrequencyInMhz returns CpuFrequencyInMhz +// GetCpuFrequencyInMhz returns CpuFrequencyInMhz func (m MacsManagedCloudHostConfigurationSummary) GetCpuFrequencyInMhz() *float64 { return m.CpuFrequencyInMhz } -//GetCpuImplementation returns CpuImplementation +// GetCpuImplementation returns CpuImplementation func (m MacsManagedCloudHostConfigurationSummary) GetCpuImplementation() *string { return m.CpuImplementation } -//GetCoresPerSocket returns CoresPerSocket +// GetCoresPerSocket returns CoresPerSocket func (m MacsManagedCloudHostConfigurationSummary) GetCoresPerSocket() *int { return m.CoresPerSocket } -//GetTotalSockets returns TotalSockets +// GetTotalSockets returns TotalSockets func (m MacsManagedCloudHostConfigurationSummary) GetTotalSockets() *int { return m.TotalSockets } -//GetThreadsPerSocket returns ThreadsPerSocket +// GetThreadsPerSocket returns ThreadsPerSocket func (m MacsManagedCloudHostConfigurationSummary) GetThreadsPerSocket() *int { return m.ThreadsPerSocket } -//GetIsHyperThreadingEnabled returns IsHyperThreadingEnabled +// GetIsHyperThreadingEnabled returns IsHyperThreadingEnabled func (m MacsManagedCloudHostConfigurationSummary) GetIsHyperThreadingEnabled() *bool { return m.IsHyperThreadingEnabled } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MacsManagedCloudHostConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MacsManagedCloudHostConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_insight.go index 6e13959bd13..95a1c05913a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_insight.go @@ -85,72 +85,72 @@ type MacsManagedCloudHostInsight struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m MacsManagedCloudHostInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MacsManagedCloudHostInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m MacsManagedCloudHostInsight) GetHostName() *string { return m.HostName } -//GetHostDisplayName returns HostDisplayName +// GetHostDisplayName returns HostDisplayName func (m MacsManagedCloudHostInsight) GetHostDisplayName() *string { return m.HostDisplayName } -//GetHostType returns HostType +// GetHostType returns HostType func (m MacsManagedCloudHostInsight) GetHostType() *string { return m.HostType } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m MacsManagedCloudHostInsight) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MacsManagedCloudHostInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MacsManagedCloudHostInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MacsManagedCloudHostInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetStatus returns Status +// GetStatus returns Status func (m MacsManagedCloudHostInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MacsManagedCloudHostInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MacsManagedCloudHostInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MacsManagedCloudHostInsight) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MacsManagedCloudHostInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_insight_summary.go index 4c6e83246ac..0212165f7bf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_cloud_host_insight_summary.go @@ -82,77 +82,77 @@ type MacsManagedCloudHostInsightSummary struct { LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m MacsManagedCloudHostInsightSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MacsManagedCloudHostInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m MacsManagedCloudHostInsightSummary) GetHostName() *string { return m.HostName } -//GetHostDisplayName returns HostDisplayName +// GetHostDisplayName returns HostDisplayName func (m MacsManagedCloudHostInsightSummary) GetHostDisplayName() *string { return m.HostDisplayName } -//GetHostType returns HostType +// GetHostType returns HostType func (m MacsManagedCloudHostInsightSummary) GetHostType() *string { return m.HostType } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m MacsManagedCloudHostInsightSummary) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MacsManagedCloudHostInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MacsManagedCloudHostInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MacsManagedCloudHostInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetOpsiPrivateEndpointId returns OpsiPrivateEndpointId +// GetOpsiPrivateEndpointId returns OpsiPrivateEndpointId func (m MacsManagedCloudHostInsightSummary) GetOpsiPrivateEndpointId() *string { return m.OpsiPrivateEndpointId } -//GetStatus returns Status +// GetStatus returns Status func (m MacsManagedCloudHostInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MacsManagedCloudHostInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MacsManagedCloudHostInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MacsManagedCloudHostInsightSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MacsManagedCloudHostInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_configuration_summary.go index 00047e19e5d..186b9ee0a7e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_configuration_summary.go @@ -66,52 +66,52 @@ type MacsManagedExternalDatabaseConfigurationSummary struct { ProcessorCount *int `mandatory:"false" json:"processorCount"` } -//GetDatabaseInsightId returns DatabaseInsightId +// GetDatabaseInsightId returns DatabaseInsightId func (m MacsManagedExternalDatabaseConfigurationSummary) GetDatabaseInsightId() *string { return m.DatabaseInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MacsManagedExternalDatabaseConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDatabaseName returns DatabaseName +// GetDatabaseName returns DatabaseName func (m MacsManagedExternalDatabaseConfigurationSummary) GetDatabaseName() *string { return m.DatabaseName } -//GetDatabaseDisplayName returns DatabaseDisplayName +// GetDatabaseDisplayName returns DatabaseDisplayName func (m MacsManagedExternalDatabaseConfigurationSummary) GetDatabaseDisplayName() *string { return m.DatabaseDisplayName } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m MacsManagedExternalDatabaseConfigurationSummary) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m MacsManagedExternalDatabaseConfigurationSummary) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetCdbName returns CdbName +// GetCdbName returns CdbName func (m MacsManagedExternalDatabaseConfigurationSummary) GetCdbName() *string { return m.CdbName } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MacsManagedExternalDatabaseConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MacsManagedExternalDatabaseConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m MacsManagedExternalDatabaseConfigurationSummary) GetProcessorCount() *int { return m.ProcessorCount } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_insight.go index 2babe1e5832..df838651cd1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_insight.go @@ -92,72 +92,72 @@ type MacsManagedExternalDatabaseInsight struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m MacsManagedExternalDatabaseInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MacsManagedExternalDatabaseInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetStatus returns Status +// GetStatus returns Status func (m MacsManagedExternalDatabaseInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m MacsManagedExternalDatabaseInsight) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m MacsManagedExternalDatabaseInsight) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m MacsManagedExternalDatabaseInsight) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MacsManagedExternalDatabaseInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MacsManagedExternalDatabaseInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MacsManagedExternalDatabaseInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MacsManagedExternalDatabaseInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MacsManagedExternalDatabaseInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MacsManagedExternalDatabaseInsight) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MacsManagedExternalDatabaseInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails +// GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails func (m MacsManagedExternalDatabaseInsight) GetDatabaseConnectionStatusDetails() *string { return m.DatabaseConnectionStatusDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_insight_summary.go index 57c6739fa8d..1f57deadb69 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_database_insight_summary.go @@ -88,92 +88,92 @@ type MacsManagedExternalDatabaseInsightSummary struct { LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m MacsManagedExternalDatabaseInsightSummary) GetId() *string { return m.Id } -//GetDatabaseId returns DatabaseId +// GetDatabaseId returns DatabaseId func (m MacsManagedExternalDatabaseInsightSummary) GetDatabaseId() *string { return m.DatabaseId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MacsManagedExternalDatabaseInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDatabaseName returns DatabaseName +// GetDatabaseName returns DatabaseName func (m MacsManagedExternalDatabaseInsightSummary) GetDatabaseName() *string { return m.DatabaseName } -//GetDatabaseDisplayName returns DatabaseDisplayName +// GetDatabaseDisplayName returns DatabaseDisplayName func (m MacsManagedExternalDatabaseInsightSummary) GetDatabaseDisplayName() *string { return m.DatabaseDisplayName } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m MacsManagedExternalDatabaseInsightSummary) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m MacsManagedExternalDatabaseInsightSummary) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetDatabaseHostNames returns DatabaseHostNames +// GetDatabaseHostNames returns DatabaseHostNames func (m MacsManagedExternalDatabaseInsightSummary) GetDatabaseHostNames() []string { return m.DatabaseHostNames } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MacsManagedExternalDatabaseInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MacsManagedExternalDatabaseInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MacsManagedExternalDatabaseInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m MacsManagedExternalDatabaseInsightSummary) GetProcessorCount() *int { return m.ProcessorCount } -//GetStatus returns Status +// GetStatus returns Status func (m MacsManagedExternalDatabaseInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MacsManagedExternalDatabaseInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MacsManagedExternalDatabaseInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MacsManagedExternalDatabaseInsightSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MacsManagedExternalDatabaseInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails +// GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails func (m MacsManagedExternalDatabaseInsightSummary) GetDatabaseConnectionStatusDetails() *string { return m.DatabaseConnectionStatusDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_configuration_summary.go index b9689b85635..b6cc9b11f99 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_configuration_summary.go @@ -90,97 +90,97 @@ type MacsManagedExternalHostConfigurationSummary struct { PlatformType HostConfigurationSummaryPlatformTypeEnum `mandatory:"true" json:"platformType"` } -//GetHostInsightId returns HostInsightId +// GetHostInsightId returns HostInsightId func (m MacsManagedExternalHostConfigurationSummary) GetHostInsightId() *string { return m.HostInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MacsManagedExternalHostConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m MacsManagedExternalHostConfigurationSummary) GetHostName() *string { return m.HostName } -//GetPlatformType returns PlatformType +// GetPlatformType returns PlatformType func (m MacsManagedExternalHostConfigurationSummary) GetPlatformType() HostConfigurationSummaryPlatformTypeEnum { return m.PlatformType } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m MacsManagedExternalHostConfigurationSummary) GetPlatformVersion() *string { return m.PlatformVersion } -//GetPlatformVendor returns PlatformVendor +// GetPlatformVendor returns PlatformVendor func (m MacsManagedExternalHostConfigurationSummary) GetPlatformVendor() *string { return m.PlatformVendor } -//GetTotalCpus returns TotalCpus +// GetTotalCpus returns TotalCpus func (m MacsManagedExternalHostConfigurationSummary) GetTotalCpus() *int { return m.TotalCpus } -//GetTotalMemoryInGBs returns TotalMemoryInGBs +// GetTotalMemoryInGBs returns TotalMemoryInGBs func (m MacsManagedExternalHostConfigurationSummary) GetTotalMemoryInGBs() *float64 { return m.TotalMemoryInGBs } -//GetCpuArchitecture returns CpuArchitecture +// GetCpuArchitecture returns CpuArchitecture func (m MacsManagedExternalHostConfigurationSummary) GetCpuArchitecture() *string { return m.CpuArchitecture } -//GetCpuCacheInMBs returns CpuCacheInMBs +// GetCpuCacheInMBs returns CpuCacheInMBs func (m MacsManagedExternalHostConfigurationSummary) GetCpuCacheInMBs() *float64 { return m.CpuCacheInMBs } -//GetCpuVendor returns CpuVendor +// GetCpuVendor returns CpuVendor func (m MacsManagedExternalHostConfigurationSummary) GetCpuVendor() *string { return m.CpuVendor } -//GetCpuFrequencyInMhz returns CpuFrequencyInMhz +// GetCpuFrequencyInMhz returns CpuFrequencyInMhz func (m MacsManagedExternalHostConfigurationSummary) GetCpuFrequencyInMhz() *float64 { return m.CpuFrequencyInMhz } -//GetCpuImplementation returns CpuImplementation +// GetCpuImplementation returns CpuImplementation func (m MacsManagedExternalHostConfigurationSummary) GetCpuImplementation() *string { return m.CpuImplementation } -//GetCoresPerSocket returns CoresPerSocket +// GetCoresPerSocket returns CoresPerSocket func (m MacsManagedExternalHostConfigurationSummary) GetCoresPerSocket() *int { return m.CoresPerSocket } -//GetTotalSockets returns TotalSockets +// GetTotalSockets returns TotalSockets func (m MacsManagedExternalHostConfigurationSummary) GetTotalSockets() *int { return m.TotalSockets } -//GetThreadsPerSocket returns ThreadsPerSocket +// GetThreadsPerSocket returns ThreadsPerSocket func (m MacsManagedExternalHostConfigurationSummary) GetThreadsPerSocket() *int { return m.ThreadsPerSocket } -//GetIsHyperThreadingEnabled returns IsHyperThreadingEnabled +// GetIsHyperThreadingEnabled returns IsHyperThreadingEnabled func (m MacsManagedExternalHostConfigurationSummary) GetIsHyperThreadingEnabled() *bool { return m.IsHyperThreadingEnabled } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MacsManagedExternalHostConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MacsManagedExternalHostConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_insight.go index 8e68235ad3f..6d9df299491 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_insight.go @@ -82,72 +82,72 @@ type MacsManagedExternalHostInsight struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m MacsManagedExternalHostInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MacsManagedExternalHostInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m MacsManagedExternalHostInsight) GetHostName() *string { return m.HostName } -//GetHostDisplayName returns HostDisplayName +// GetHostDisplayName returns HostDisplayName func (m MacsManagedExternalHostInsight) GetHostDisplayName() *string { return m.HostDisplayName } -//GetHostType returns HostType +// GetHostType returns HostType func (m MacsManagedExternalHostInsight) GetHostType() *string { return m.HostType } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m MacsManagedExternalHostInsight) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MacsManagedExternalHostInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MacsManagedExternalHostInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MacsManagedExternalHostInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetStatus returns Status +// GetStatus returns Status func (m MacsManagedExternalHostInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MacsManagedExternalHostInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MacsManagedExternalHostInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MacsManagedExternalHostInsight) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MacsManagedExternalHostInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_insight_summary.go index 3b7e06fa928..c7b6622682c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/macs_managed_external_host_insight_summary.go @@ -79,77 +79,77 @@ type MacsManagedExternalHostInsightSummary struct { LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m MacsManagedExternalHostInsightSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m MacsManagedExternalHostInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m MacsManagedExternalHostInsightSummary) GetHostName() *string { return m.HostName } -//GetHostDisplayName returns HostDisplayName +// GetHostDisplayName returns HostDisplayName func (m MacsManagedExternalHostInsightSummary) GetHostDisplayName() *string { return m.HostDisplayName } -//GetHostType returns HostType +// GetHostType returns HostType func (m MacsManagedExternalHostInsightSummary) GetHostType() *string { return m.HostType } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m MacsManagedExternalHostInsightSummary) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m MacsManagedExternalHostInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m MacsManagedExternalHostInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m MacsManagedExternalHostInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetOpsiPrivateEndpointId returns OpsiPrivateEndpointId +// GetOpsiPrivateEndpointId returns OpsiPrivateEndpointId func (m MacsManagedExternalHostInsightSummary) GetOpsiPrivateEndpointId() *string { return m.OpsiPrivateEndpointId } -//GetStatus returns Status +// GetStatus returns Status func (m MacsManagedExternalHostInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m MacsManagedExternalHostInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m MacsManagedExternalHostInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m MacsManagedExternalHostInsightSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m MacsManagedExternalHostInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_data_object_type_opsi_data_object_details_in_query.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_data_object_type_opsi_data_object_details_in_query.go index 7965c4d748f..54dce646abf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_data_object_type_opsi_data_object_details_in_query.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_data_object_type_opsi_data_object_details_in_query.go @@ -29,7 +29,7 @@ type OpsiDataObjectTypeOpsiDataObjectDetailsInQuery struct { DataObjectType OpsiDataObjectTypeEnum `mandatory:"true" json:"dataObjectType"` } -//GetQueryParams returns QueryParams +// GetQueryParams returns QueryParams func (m OpsiDataObjectTypeOpsiDataObjectDetailsInQuery) GetQueryParams() []OpsiDataObjectQueryParam { return m.QueryParams } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_operationsinsights_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_operationsinsights_client.go index 90bed8aa590..05b01a0d9b4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_operationsinsights_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_operationsinsights_client.go @@ -95,7 +95,7 @@ func (client *OperationsInsightsClient) ConfigurationProvider() *common.Configur // AddExadataInsightMembers Add new members (e.g. databases and hosts) to an Exadata system in Operations Insights. Exadata-related metric collection and analysis will be started. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/AddExadataInsightMembers.go.html to see an example of how to use AddExadataInsightMembers API. // A default retry strategy applies to this operation AddExadataInsightMembers() @@ -158,7 +158,7 @@ func (client OperationsInsightsClient) addExadataInsightMembers(ctx context.Cont // ChangeAutonomousDatabaseInsightAdvancedFeatures Update connection detail for advanced features of Autonomous Database in Operations Insights. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ChangeAutonomousDatabaseInsightAdvancedFeatures.go.html to see an example of how to use ChangeAutonomousDatabaseInsightAdvancedFeatures API. // A default retry strategy applies to this operation ChangeAutonomousDatabaseInsightAdvancedFeatures() @@ -221,7 +221,7 @@ func (client OperationsInsightsClient) changeAutonomousDatabaseInsightAdvancedFe // ChangeDatabaseInsightCompartment Moves a DatabaseInsight resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ChangeDatabaseInsightCompartment.go.html to see an example of how to use ChangeDatabaseInsightCompartment API. // A default retry strategy applies to this operation ChangeDatabaseInsightCompartment() @@ -284,7 +284,7 @@ func (client OperationsInsightsClient) changeDatabaseInsightCompartment(ctx cont // ChangeEnterpriseManagerBridgeCompartment Moves a EnterpriseManagerBridge resource from one compartment to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ChangeEnterpriseManagerBridgeCompartment.go.html to see an example of how to use ChangeEnterpriseManagerBridgeCompartment API. // A default retry strategy applies to this operation ChangeEnterpriseManagerBridgeCompartment() @@ -342,7 +342,7 @@ func (client OperationsInsightsClient) changeEnterpriseManagerBridgeCompartment( // ChangeExadataInsightCompartment Moves an Exadata insight resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ChangeExadataInsightCompartment.go.html to see an example of how to use ChangeExadataInsightCompartment API. // A default retry strategy applies to this operation ChangeExadataInsightCompartment() @@ -405,7 +405,7 @@ func (client OperationsInsightsClient) changeExadataInsightCompartment(ctx conte // ChangeHostInsightCompartment Moves a HostInsight resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ChangeHostInsightCompartment.go.html to see an example of how to use ChangeHostInsightCompartment API. // A default retry strategy applies to this operation ChangeHostInsightCompartment() @@ -468,7 +468,7 @@ func (client OperationsInsightsClient) changeHostInsightCompartment(ctx context. // ChangeNewsReportCompartment Moves a news report resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ChangeNewsReportCompartment.go.html to see an example of how to use ChangeNewsReportCompartment API. // A default retry strategy applies to this operation ChangeNewsReportCompartment() @@ -531,7 +531,7 @@ func (client OperationsInsightsClient) changeNewsReportCompartment(ctx context.C // ChangeOperationsInsightsPrivateEndpointCompartment Moves a private endpoint from one compartment to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ChangeOperationsInsightsPrivateEndpointCompartment.go.html to see an example of how to use ChangeOperationsInsightsPrivateEndpointCompartment API. // A default retry strategy applies to this operation ChangeOperationsInsightsPrivateEndpointCompartment() @@ -594,7 +594,7 @@ func (client OperationsInsightsClient) changeOperationsInsightsPrivateEndpointCo // ChangeOpsiConfigurationCompartment Moves an OpsiConfiguration resource from one compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ChangeOpsiConfigurationCompartment.go.html to see an example of how to use ChangeOpsiConfigurationCompartment API. // A default retry strategy applies to this operation ChangeOpsiConfigurationCompartment() @@ -657,7 +657,7 @@ func (client OperationsInsightsClient) changeOpsiConfigurationCompartment(ctx co // ChangePeComanagedDatabaseInsight Change the connection details of a co-managed database insight. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ChangePeComanagedDatabaseInsight.go.html to see an example of how to use ChangePeComanagedDatabaseInsight API. // A default retry strategy applies to this operation ChangePeComanagedDatabaseInsight() @@ -721,7 +721,7 @@ func (client OperationsInsightsClient) changePeComanagedDatabaseInsight(ctx cont // CreateAwrHub Create a AWR hub resource for the tenant in Operations Insights. // This resource will be created in root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateAwrHub.go.html to see an example of how to use CreateAwrHub API. // A default retry strategy applies to this operation CreateAwrHub() @@ -784,7 +784,7 @@ func (client OperationsInsightsClient) createAwrHub(ctx context.Context, request // CreateDatabaseInsight Create a Database Insight resource for a database in Operations Insights. The database will be enabled in Operations Insights. Database metric collection and analysis will be started. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateDatabaseInsight.go.html to see an example of how to use CreateDatabaseInsight API. // A default retry strategy applies to this operation CreateDatabaseInsight() @@ -847,7 +847,7 @@ func (client OperationsInsightsClient) createDatabaseInsight(ctx context.Context // CreateEnterpriseManagerBridge Create a Enterprise Manager bridge in Operations Insights. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateEnterpriseManagerBridge.go.html to see an example of how to use CreateEnterpriseManagerBridge API. // A default retry strategy applies to this operation CreateEnterpriseManagerBridge() @@ -910,7 +910,7 @@ func (client OperationsInsightsClient) createEnterpriseManagerBridge(ctx context // CreateExadataInsight Create an Exadata insight resource for an Exadata system in Operations Insights. The Exadata system will be enabled in Operations Insights. Exadata-related metric collection and analysis will be started. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateExadataInsight.go.html to see an example of how to use CreateExadataInsight API. // A default retry strategy applies to this operation CreateExadataInsight() @@ -973,7 +973,7 @@ func (client OperationsInsightsClient) createExadataInsight(ctx context.Context, // CreateHostInsight Create a Host Insight resource for a host in Operations Insights. The host will be enabled in Operations Insights. Host metric collection and analysis will be started. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateHostInsight.go.html to see an example of how to use CreateHostInsight API. // A default retry strategy applies to this operation CreateHostInsight() @@ -1036,7 +1036,7 @@ func (client OperationsInsightsClient) createHostInsight(ctx context.Context, re // CreateNewsReport Create a news report in Operations Insights. The report will be enabled in Operations Insights. Insights will be emailed as per selected frequency. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateNewsReport.go.html to see an example of how to use CreateNewsReport API. // A default retry strategy applies to this operation CreateNewsReport() @@ -1100,7 +1100,7 @@ func (client OperationsInsightsClient) createNewsReport(ctx context.Context, req // CreateOperationsInsightsPrivateEndpoint Create a private endpoint resource for the tenant in Operations Insights. // This resource will be created in customer compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateOperationsInsightsPrivateEndpoint.go.html to see an example of how to use CreateOperationsInsightsPrivateEndpoint API. // A default retry strategy applies to this operation CreateOperationsInsightsPrivateEndpoint() @@ -1165,7 +1165,7 @@ func (client OperationsInsightsClient) createOperationsInsightsPrivateEndpoint(c // There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. If the 'opsi-warehouse-type' // header is passed to the API, a warehouse resource without ADW or Schema provisioning is created. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateOperationsInsightsWarehouse.go.html to see an example of how to use CreateOperationsInsightsWarehouse API. // A default retry strategy applies to this operation CreateOperationsInsightsWarehouse() @@ -1229,7 +1229,7 @@ func (client OperationsInsightsClient) createOperationsInsightsWarehouse(ctx con // CreateOperationsInsightsWarehouseUser Create a Operations Insights Warehouse user resource for the tenant in Operations Insights. // This resource will be created in root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateOperationsInsightsWarehouseUser.go.html to see an example of how to use CreateOperationsInsightsWarehouseUser API. // A default retry strategy applies to this operation CreateOperationsInsightsWarehouseUser() @@ -1292,7 +1292,7 @@ func (client OperationsInsightsClient) createOperationsInsightsWarehouseUser(ctx // CreateOpsiConfiguration Create an OPSI configuration resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/CreateOpsiConfiguration.go.html to see an example of how to use CreateOpsiConfiguration API. // A default retry strategy applies to this operation CreateOpsiConfiguration() @@ -1355,7 +1355,7 @@ func (client OperationsInsightsClient) createOpsiConfiguration(ctx context.Conte // DeleteAwrHub Deletes an AWR hub. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteAwrHub.go.html to see an example of how to use DeleteAwrHub API. // A default retry strategy applies to this operation DeleteAwrHub() @@ -1413,7 +1413,7 @@ func (client OperationsInsightsClient) deleteAwrHub(ctx context.Context, request // DeleteDatabaseInsight Deletes a database insight. The database insight will be deleted and cannot be enabled again. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteDatabaseInsight.go.html to see an example of how to use DeleteDatabaseInsight API. // A default retry strategy applies to this operation DeleteDatabaseInsight() @@ -1471,7 +1471,7 @@ func (client OperationsInsightsClient) deleteDatabaseInsight(ctx context.Context // DeleteEnterpriseManagerBridge Deletes an Operations Insights Enterprise Manager bridge. If any database insight is still referencing this bridge, the operation will fail. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteEnterpriseManagerBridge.go.html to see an example of how to use DeleteEnterpriseManagerBridge API. // A default retry strategy applies to this operation DeleteEnterpriseManagerBridge() @@ -1529,7 +1529,7 @@ func (client OperationsInsightsClient) deleteEnterpriseManagerBridge(ctx context // DeleteExadataInsight Deletes an Exadata insight. The Exadata insight will be deleted and cannot be enabled again. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteExadataInsight.go.html to see an example of how to use DeleteExadataInsight API. // A default retry strategy applies to this operation DeleteExadataInsight() @@ -1587,7 +1587,7 @@ func (client OperationsInsightsClient) deleteExadataInsight(ctx context.Context, // DeleteHostInsight Deletes a host insight. The host insight will be deleted and cannot be enabled again. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteHostInsight.go.html to see an example of how to use DeleteHostInsight API. // A default retry strategy applies to this operation DeleteHostInsight() @@ -1645,7 +1645,7 @@ func (client OperationsInsightsClient) deleteHostInsight(ctx context.Context, re // DeleteNewsReport Deletes a news report. The news report will be deleted and cannot be enabled again. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteNewsReport.go.html to see an example of how to use DeleteNewsReport API. // A default retry strategy applies to this operation DeleteNewsReport() @@ -1703,7 +1703,7 @@ func (client OperationsInsightsClient) deleteNewsReport(ctx context.Context, req // DeleteOperationsInsightsPrivateEndpoint Deletes a private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteOperationsInsightsPrivateEndpoint.go.html to see an example of how to use DeleteOperationsInsightsPrivateEndpoint API. // A default retry strategy applies to this operation DeleteOperationsInsightsPrivateEndpoint() @@ -1764,7 +1764,7 @@ func (client OperationsInsightsClient) deleteOperationsInsightsPrivateEndpoint(c // User must delete AWR Hub resource for this warehouse before calling this operation. // User must delete the warehouse users before calling this operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteOperationsInsightsWarehouse.go.html to see an example of how to use DeleteOperationsInsightsWarehouse API. // A default retry strategy applies to this operation DeleteOperationsInsightsWarehouse() @@ -1822,7 +1822,7 @@ func (client OperationsInsightsClient) deleteOperationsInsightsWarehouse(ctx con // DeleteOperationsInsightsWarehouseUser Deletes an Operations Insights Warehouse User. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteOperationsInsightsWarehouseUser.go.html to see an example of how to use DeleteOperationsInsightsWarehouseUser API. // A default retry strategy applies to this operation DeleteOperationsInsightsWarehouseUser() @@ -1880,7 +1880,7 @@ func (client OperationsInsightsClient) deleteOperationsInsightsWarehouseUser(ctx // DeleteOpsiConfiguration Deletes an OPSI configuration resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DeleteOpsiConfiguration.go.html to see an example of how to use DeleteOpsiConfiguration API. // A default retry strategy applies to this operation DeleteOpsiConfiguration() @@ -1938,7 +1938,7 @@ func (client OperationsInsightsClient) deleteOpsiConfiguration(ctx context.Conte // DisableAutonomousDatabaseInsightAdvancedFeatures Disable advanced features for an Autonomous Database in Operations Insights. The connection detail and advanced features will be removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DisableAutonomousDatabaseInsightAdvancedFeatures.go.html to see an example of how to use DisableAutonomousDatabaseInsightAdvancedFeatures API. // A default retry strategy applies to this operation DisableAutonomousDatabaseInsightAdvancedFeatures() @@ -2001,7 +2001,7 @@ func (client OperationsInsightsClient) disableAutonomousDatabaseInsightAdvancedF // DisableDatabaseInsight Disables a database in Operations Insights. Database metric collection and analysis will be stopped. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DisableDatabaseInsight.go.html to see an example of how to use DisableDatabaseInsight API. // A default retry strategy applies to this operation DisableDatabaseInsight() @@ -2064,7 +2064,7 @@ func (client OperationsInsightsClient) disableDatabaseInsight(ctx context.Contex // DisableExadataInsight Disables an Exadata system in Operations Insights. Exadata-related metric collection and analysis will be stopped. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DisableExadataInsight.go.html to see an example of how to use DisableExadataInsight API. // A default retry strategy applies to this operation DisableExadataInsight() @@ -2127,7 +2127,7 @@ func (client OperationsInsightsClient) disableExadataInsight(ctx context.Context // DisableHostInsight Disables a host in Operations Insights. Host metric collection and analysis will be stopped. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DisableHostInsight.go.html to see an example of how to use DisableHostInsight API. // A default retry strategy applies to this operation DisableHostInsight() @@ -2190,7 +2190,7 @@ func (client OperationsInsightsClient) disableHostInsight(ctx context.Context, r // DownloadOperationsInsightsWarehouseWallet Download the ADW wallet for Operations Insights Warehouse using which the Hub data is exposed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/DownloadOperationsInsightsWarehouseWallet.go.html to see an example of how to use DownloadOperationsInsightsWarehouseWallet API. // A default retry strategy applies to this operation DownloadOperationsInsightsWarehouseWallet() @@ -2252,7 +2252,7 @@ func (client OperationsInsightsClient) downloadOperationsInsightsWarehouseWallet // EnableAutonomousDatabaseInsightAdvancedFeatures Enables advanced features for an Autonomous Database in Operations Insights. A direct connection will be available for further collection. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/EnableAutonomousDatabaseInsightAdvancedFeatures.go.html to see an example of how to use EnableAutonomousDatabaseInsightAdvancedFeatures API. // A default retry strategy applies to this operation EnableAutonomousDatabaseInsightAdvancedFeatures() @@ -2315,7 +2315,7 @@ func (client OperationsInsightsClient) enableAutonomousDatabaseInsightAdvancedFe // EnableDatabaseInsight Enables a database in Operations Insights. Database metric collection and analysis will be started. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/EnableDatabaseInsight.go.html to see an example of how to use EnableDatabaseInsight API. // A default retry strategy applies to this operation EnableDatabaseInsight() @@ -2378,7 +2378,7 @@ func (client OperationsInsightsClient) enableDatabaseInsight(ctx context.Context // EnableExadataInsight Enables an Exadata system in Operations Insights. Exadata-related metric collection and analysis will be started. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/EnableExadataInsight.go.html to see an example of how to use EnableExadataInsight API. // A default retry strategy applies to this operation EnableExadataInsight() @@ -2441,7 +2441,7 @@ func (client OperationsInsightsClient) enableExadataInsight(ctx context.Context, // EnableHostInsight Enables a host in Operations Insights. Host metric collection and analysis will be started. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/EnableHostInsight.go.html to see an example of how to use EnableHostInsight API. // A default retry strategy applies to this operation EnableHostInsight() @@ -2504,7 +2504,7 @@ func (client OperationsInsightsClient) enableHostInsight(ctx context.Context, re // GetAwrDatabaseReport Gets the AWR report for the specified database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetAwrDatabaseReport.go.html to see an example of how to use GetAwrDatabaseReport API. // A default retry strategy applies to this operation GetAwrDatabaseReport() @@ -2562,7 +2562,7 @@ func (client OperationsInsightsClient) getAwrDatabaseReport(ctx context.Context, // GetAwrDatabaseSqlReport Gets the SQL health check report for one SQL of the specified database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetAwrDatabaseSqlReport.go.html to see an example of how to use GetAwrDatabaseSqlReport API. // A default retry strategy applies to this operation GetAwrDatabaseSqlReport() @@ -2620,7 +2620,7 @@ func (client OperationsInsightsClient) getAwrDatabaseSqlReport(ctx context.Conte // GetAwrHub Gets details of an AWR hub. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetAwrHub.go.html to see an example of how to use GetAwrHub API. // A default retry strategy applies to this operation GetAwrHub() @@ -2679,7 +2679,7 @@ func (client OperationsInsightsClient) getAwrHub(ctx context.Context, request co // GetAwrReport Gets the AWR report for the specified source database in the AWR hub. The difference between the timeGreaterThanOrEqualTo and timeLessThanOrEqualTo should not be greater than 7 days. // Either beginSnapshotIdentifierGreaterThanOrEqualTo & endSnapshotIdentifierLessThanOrEqualTo params Or timeGreaterThanOrEqualTo & timeLessThanOrEqualTo params are required. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetAwrReport.go.html to see an example of how to use GetAwrReport API. // A default retry strategy applies to this operation GetAwrReport() @@ -2737,7 +2737,7 @@ func (client OperationsInsightsClient) getAwrReport(ctx context.Context, request // GetDatabaseInsight Gets details of a database insight. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetDatabaseInsight.go.html to see an example of how to use GetDatabaseInsight API. // A default retry strategy applies to this operation GetDatabaseInsight() @@ -2795,7 +2795,7 @@ func (client OperationsInsightsClient) getDatabaseInsight(ctx context.Context, r // GetEnterpriseManagerBridge Gets details of an Operations Insights Enterprise Manager bridge. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetEnterpriseManagerBridge.go.html to see an example of how to use GetEnterpriseManagerBridge API. // A default retry strategy applies to this operation GetEnterpriseManagerBridge() @@ -2853,7 +2853,7 @@ func (client OperationsInsightsClient) getEnterpriseManagerBridge(ctx context.Co // GetExadataInsight Gets details of an Exadata insight. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetExadataInsight.go.html to see an example of how to use GetExadataInsight API. // A default retry strategy applies to this operation GetExadataInsight() @@ -2911,7 +2911,7 @@ func (client OperationsInsightsClient) getExadataInsight(ctx context.Context, re // GetHostInsight Gets details of a host insight. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetHostInsight.go.html to see an example of how to use GetHostInsight API. // A default retry strategy applies to this operation GetHostInsight() @@ -2969,7 +2969,7 @@ func (client OperationsInsightsClient) getHostInsight(ctx context.Context, reque // GetNewsReport Gets details of a news report. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetNewsReport.go.html to see an example of how to use GetNewsReport API. // A default retry strategy applies to this operation GetNewsReport() @@ -3027,7 +3027,7 @@ func (client OperationsInsightsClient) getNewsReport(ctx context.Context, reques // GetOperationsInsightsPrivateEndpoint Gets the details of the specified private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetOperationsInsightsPrivateEndpoint.go.html to see an example of how to use GetOperationsInsightsPrivateEndpoint API. // A default retry strategy applies to this operation GetOperationsInsightsPrivateEndpoint() @@ -3086,7 +3086,7 @@ func (client OperationsInsightsClient) getOperationsInsightsPrivateEndpoint(ctx // GetOperationsInsightsWarehouse Gets details of an Operations Insights Warehouse. // There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetOperationsInsightsWarehouse.go.html to see an example of how to use GetOperationsInsightsWarehouse API. // A default retry strategy applies to this operation GetOperationsInsightsWarehouse() @@ -3144,7 +3144,7 @@ func (client OperationsInsightsClient) getOperationsInsightsWarehouse(ctx contex // GetOperationsInsightsWarehouseUser Gets details of an Operations Insights Warehouse User. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetOperationsInsightsWarehouseUser.go.html to see an example of how to use GetOperationsInsightsWarehouseUser API. // A default retry strategy applies to this operation GetOperationsInsightsWarehouseUser() @@ -3204,7 +3204,7 @@ func (client OperationsInsightsClient) getOperationsInsightsWarehouseUser(ctx co // Values specified in configItemField and configItemCustomStatus query params will be considered, only if configItems field is requested as part of opsiConfigField query param. // Values specified in configItemCustomStatus will determine whether only customized configuration items or only non-customized configuration items or both have to be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetOpsiConfiguration.go.html to see an example of how to use GetOpsiConfiguration API. // A default retry strategy applies to this operation GetOpsiConfiguration() @@ -3262,7 +3262,7 @@ func (client OperationsInsightsClient) getOpsiConfiguration(ctx context.Context, // GetOpsiDataObject Gets details of an OPSI data object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetOpsiDataObject.go.html to see an example of how to use GetOpsiDataObject API. // A default retry strategy applies to this operation GetOpsiDataObject() @@ -3320,7 +3320,7 @@ func (client OperationsInsightsClient) getOpsiDataObject(ctx context.Context, re // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -3379,7 +3379,7 @@ func (client OperationsInsightsClient) getWorkRequest(ctx context.Context, reque // IngestAddmReports This endpoint takes in a JSON payload, persists it in Operation Insights ingest pipeline. // Either databaseId or id must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/IngestAddmReports.go.html to see an example of how to use IngestAddmReports API. // A default retry strategy applies to this operation IngestAddmReports() @@ -3442,7 +3442,7 @@ func (client OperationsInsightsClient) ingestAddmReports(ctx context.Context, re // IngestDatabaseConfiguration This is a generic ingest endpoint for all database configuration metrics. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/IngestDatabaseConfiguration.go.html to see an example of how to use IngestDatabaseConfiguration API. // A default retry strategy applies to this operation IngestDatabaseConfiguration() @@ -3505,7 +3505,7 @@ func (client OperationsInsightsClient) ingestDatabaseConfiguration(ctx context.C // IngestHostConfiguration This is a generic ingest endpoint for all the host configuration metrics // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/IngestHostConfiguration.go.html to see an example of how to use IngestHostConfiguration API. // A default retry strategy applies to this operation IngestHostConfiguration() @@ -3568,7 +3568,7 @@ func (client OperationsInsightsClient) ingestHostConfiguration(ctx context.Conte // IngestHostMetrics This is a generic ingest endpoint for all the host performance metrics // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/IngestHostMetrics.go.html to see an example of how to use IngestHostMetrics API. // A default retry strategy applies to this operation IngestHostMetrics() @@ -3632,7 +3632,7 @@ func (client OperationsInsightsClient) ingestHostMetrics(ctx context.Context, re // IngestSqlBucket The sqlbucket endpoint takes in a JSON payload, persists it in Operations Insights ingest pipeline. // Either databaseId or id must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/IngestSqlBucket.go.html to see an example of how to use IngestSqlBucket API. // A default retry strategy applies to this operation IngestSqlBucket() @@ -3696,7 +3696,7 @@ func (client OperationsInsightsClient) ingestSqlBucket(ctx context.Context, requ // IngestSqlPlanLines The SqlPlanLines endpoint takes in a JSON payload, persists it in Operation Insights ingest pipeline. // Either databaseId or id must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/IngestSqlPlanLines.go.html to see an example of how to use IngestSqlPlanLines API. // A default retry strategy applies to this operation IngestSqlPlanLines() @@ -3760,7 +3760,7 @@ func (client OperationsInsightsClient) ingestSqlPlanLines(ctx context.Context, r // IngestSqlStats The SQL Stats endpoint takes in a JSON payload, persists it in Operations Insights ingest pipeline. // Either databaseId or id must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/IngestSqlStats.go.html to see an example of how to use IngestSqlStats API. // A default retry strategy applies to this operation IngestSqlStats() @@ -3825,7 +3825,7 @@ func (client OperationsInsightsClient) ingestSqlStats(ctx context.Context, reque // Either databaseId or id must be specified. // Disclaimer: SQL text being uploaded explicitly via APIs is not masked. Any sensitive literals contained in the sqlFullText column should be masked prior to ingestion. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/IngestSqlText.go.html to see an example of how to use IngestSqlText API. // A default retry strategy applies to this operation IngestSqlText() @@ -3888,7 +3888,7 @@ func (client OperationsInsightsClient) ingestSqlText(ctx context.Context, reques // ListAddmDbFindingCategories Gets list of ADDM finding categories. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAddmDbFindingCategories.go.html to see an example of how to use ListAddmDbFindingCategories API. // A default retry strategy applies to this operation ListAddmDbFindingCategories() @@ -3946,7 +3946,7 @@ func (client OperationsInsightsClient) listAddmDbFindingCategories(ctx context.C // ListAddmDbFindingsTimeSeries Get the ADDM findings time series for the specified databases for a given time period. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAddmDbFindingsTimeSeries.go.html to see an example of how to use ListAddmDbFindingsTimeSeries API. // A default retry strategy applies to this operation ListAddmDbFindingsTimeSeries() @@ -4004,7 +4004,7 @@ func (client OperationsInsightsClient) listAddmDbFindingsTimeSeries(ctx context. // ListAddmDbParameterCategories Gets list of ADDM database parameter categories for the specified databases. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAddmDbParameterCategories.go.html to see an example of how to use ListAddmDbParameterCategories API. // A default retry strategy applies to this operation ListAddmDbParameterCategories() @@ -4062,7 +4062,7 @@ func (client OperationsInsightsClient) listAddmDbParameterCategories(ctx context // ListAddmDbRecommendationCategories Gets list of ADDM recommendation categories for the specified databases. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAddmDbRecommendationCategories.go.html to see an example of how to use ListAddmDbRecommendationCategories API. // A default retry strategy applies to this operation ListAddmDbRecommendationCategories() @@ -4120,7 +4120,7 @@ func (client OperationsInsightsClient) listAddmDbRecommendationCategories(ctx co // ListAddmDbRecommendationsTimeSeries Gets time series data for ADDM recommendations for the specified databases. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAddmDbRecommendationsTimeSeries.go.html to see an example of how to use ListAddmDbRecommendationsTimeSeries API. // A default retry strategy applies to this operation ListAddmDbRecommendationsTimeSeries() @@ -4178,7 +4178,7 @@ func (client OperationsInsightsClient) listAddmDbRecommendationsTimeSeries(ctx c // ListAddmDbs Gets a list of ADDM database information // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAddmDbs.go.html to see an example of how to use ListAddmDbs API. // A default retry strategy applies to this operation ListAddmDbs() @@ -4236,7 +4236,7 @@ func (client OperationsInsightsClient) listAddmDbs(ctx context.Context, request // ListAwrDatabaseSnapshots Lists AWR snapshots for the specified database in the AWR. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAwrDatabaseSnapshots.go.html to see an example of how to use ListAwrDatabaseSnapshots API. // A default retry strategy applies to this operation ListAwrDatabaseSnapshots() @@ -4294,7 +4294,7 @@ func (client OperationsInsightsClient) listAwrDatabaseSnapshots(ctx context.Cont // ListAwrDatabases Gets the list of databases and their snapshot summary details available in the AWRHub. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAwrDatabases.go.html to see an example of how to use ListAwrDatabases API. // A default retry strategy applies to this operation ListAwrDatabases() @@ -4352,7 +4352,7 @@ func (client OperationsInsightsClient) listAwrDatabases(ctx context.Context, req // ListAwrHubs Gets a list of AWR hubs. Either compartmentId or id must be specified. All these resources are expected to be in root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAwrHubs.go.html to see an example of how to use ListAwrHubs API. // A default retry strategy applies to this operation ListAwrHubs() @@ -4411,7 +4411,7 @@ func (client OperationsInsightsClient) listAwrHubs(ctx context.Context, request // ListAwrSnapshots Lists AWR snapshots for the specified source database in the AWR hub. The difference between the timeGreaterThanOrEqualTo and timeLessThanOrEqualTo should not exceed an elapsed range of 1 day. // The timeGreaterThanOrEqualTo & timeLessThanOrEqualTo params are optional. If these params are not provided, by default last 1 day snapshots will be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListAwrSnapshots.go.html to see an example of how to use ListAwrSnapshots API. // A default retry strategy applies to this operation ListAwrSnapshots() @@ -4470,7 +4470,7 @@ func (client OperationsInsightsClient) listAwrSnapshots(ctx context.Context, req // ListDatabaseConfigurations Gets a list of database insight configurations based on the query parameters specified. Either compartmentId or databaseInsightId query parameter must be specified. // When both compartmentId and compartmentIdInSubtree are specified, a list of database insight configurations in that compartment and in all sub-compartments will be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListDatabaseConfigurations.go.html to see an example of how to use ListDatabaseConfigurations API. // A default retry strategy applies to this operation ListDatabaseConfigurations() @@ -4529,7 +4529,7 @@ func (client OperationsInsightsClient) listDatabaseConfigurations(ctx context.Co // ListDatabaseInsights Gets a list of database insights based on the query parameters specified. Either compartmentId or id query parameter must be specified. // When both compartmentId and compartmentIdInSubtree are specified, a list of database insights in that compartment and in all sub-compartments will be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListDatabaseInsights.go.html to see an example of how to use ListDatabaseInsights API. // A default retry strategy applies to this operation ListDatabaseInsights() @@ -4588,7 +4588,7 @@ func (client OperationsInsightsClient) listDatabaseInsights(ctx context.Context, // ListEnterpriseManagerBridges Gets a list of Operations Insights Enterprise Manager bridges. Either compartmentId or id must be specified. // When both compartmentId and compartmentIdInSubtree are specified, a list of bridges in that compartment and in all sub-compartments will be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListEnterpriseManagerBridges.go.html to see an example of how to use ListEnterpriseManagerBridges API. // A default retry strategy applies to this operation ListEnterpriseManagerBridges() @@ -4646,7 +4646,7 @@ func (client OperationsInsightsClient) listEnterpriseManagerBridges(ctx context. // ListExadataConfigurations Gets a list of exadata insight configurations. Either compartmentId or exadataInsightsId query parameter must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListExadataConfigurations.go.html to see an example of how to use ListExadataConfigurations API. // A default retry strategy applies to this operation ListExadataConfigurations() @@ -4705,7 +4705,7 @@ func (client OperationsInsightsClient) listExadataConfigurations(ctx context.Con // ListExadataInsights Gets a list of Exadata insights based on the query parameters specified. Either compartmentId or id query parameter must be specified. // When both compartmentId and compartmentIdInSubtree are specified, a list of Exadata insights in that compartment and in all sub-compartments will be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListExadataInsights.go.html to see an example of how to use ListExadataInsights API. // A default retry strategy applies to this operation ListExadataInsights() @@ -4764,7 +4764,7 @@ func (client OperationsInsightsClient) listExadataInsights(ctx context.Context, // ListHostConfigurations Gets a list of host insight configurations based on the query parameters specified. Either compartmentId or hostInsightId query parameter must be specified. // When both compartmentId and compartmentIdInSubtree are specified, a list of host insight configurations in that compartment and in all sub-compartments will be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListHostConfigurations.go.html to see an example of how to use ListHostConfigurations API. // A default retry strategy applies to this operation ListHostConfigurations() @@ -4823,7 +4823,7 @@ func (client OperationsInsightsClient) listHostConfigurations(ctx context.Contex // ListHostInsights Gets a list of host insights based on the query parameters specified. Either compartmentId or id query parameter must be specified. // When both compartmentId and compartmentIdInSubtree are specified, a list of host insights in that compartment and in all sub-compartments will be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListHostInsights.go.html to see an example of how to use ListHostInsights API. // A default retry strategy applies to this operation ListHostInsights() @@ -4881,7 +4881,7 @@ func (client OperationsInsightsClient) listHostInsights(ctx context.Context, req // ListHostedEntities Get a list of hosted entities details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListHostedEntities.go.html to see an example of how to use ListHostedEntities API. // A default retry strategy applies to this operation ListHostedEntities() @@ -4939,11 +4939,11 @@ func (client OperationsInsightsClient) listHostedEntities(ctx context.Context, r // ListImportableAgentEntities Gets a list of agent entities available to add a new hostInsight. An agent entity is "available" // and will be shown if all the following conditions are true: -// 1. The agent OCID is not already being used for an existing hostInsight. -// 2. The agent availabilityStatus = 'ACTIVE' -// 3. The agent lifecycleState = 'ACTIVE' +// 1. The agent OCID is not already being used for an existing hostInsight. +// 2. The agent availabilityStatus = 'ACTIVE' +// 3. The agent lifecycleState = 'ACTIVE' // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListImportableAgentEntities.go.html to see an example of how to use ListImportableAgentEntities API. // A default retry strategy applies to this operation ListImportableAgentEntities() @@ -5001,13 +5001,13 @@ func (client OperationsInsightsClient) listImportableAgentEntities(ctx context.C // ListImportableComputeEntities Gets a list of available compute intances running cloud agent to add a new hostInsight. An Compute entity is "available" // and will be shown if all the following conditions are true: -// 1. Compute is running OCA -// 2. OCI Management Agent is not enabled or If OCI Management Agent is enabled -// 2.1 The agent OCID is not already being used for an existing hostInsight. -// 2.2 The agent availabilityStatus = 'ACTIVE' -// 2.3 The agent lifecycleState = 'ACTIVE' +// 1. Compute is running OCA +// 2. OCI Management Agent is not enabled or If OCI Management Agent is enabled +// 2.1 The agent OCID is not already being used for an existing hostInsight. +// 2.2 The agent availabilityStatus = 'ACTIVE' +// 2.3 The agent lifecycleState = 'ACTIVE' // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListImportableComputeEntities.go.html to see an example of how to use ListImportableComputeEntities API. // A default retry strategy applies to this operation ListImportableComputeEntities() @@ -5065,7 +5065,7 @@ func (client OperationsInsightsClient) listImportableComputeEntities(ctx context // ListImportableEnterpriseManagerEntities Gets a list of importable entities for an Operations Insights Enterprise Manager bridge that have not been imported before. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListImportableEnterpriseManagerEntities.go.html to see an example of how to use ListImportableEnterpriseManagerEntities API. // A default retry strategy applies to this operation ListImportableEnterpriseManagerEntities() @@ -5123,7 +5123,7 @@ func (client OperationsInsightsClient) listImportableEnterpriseManagerEntities(c // ListNewsReports Gets a list of news reports based on the query parameters specified. Either compartmentId or id query parameter must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListNewsReports.go.html to see an example of how to use ListNewsReports API. // A default retry strategy applies to this operation ListNewsReports() @@ -5181,7 +5181,7 @@ func (client OperationsInsightsClient) listNewsReports(ctx context.Context, requ // ListOperationsInsightsPrivateEndpoints Gets a list of Operation Insights private endpoints. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListOperationsInsightsPrivateEndpoints.go.html to see an example of how to use ListOperationsInsightsPrivateEndpoints API. // A default retry strategy applies to this operation ListOperationsInsightsPrivateEndpoints() @@ -5239,7 +5239,7 @@ func (client OperationsInsightsClient) listOperationsInsightsPrivateEndpoints(ct // ListOperationsInsightsWarehouseUsers Gets a list of Operations Insights Warehouse users. Either compartmentId or id must be specified. All these resources are expected to be in root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListOperationsInsightsWarehouseUsers.go.html to see an example of how to use ListOperationsInsightsWarehouseUsers API. // A default retry strategy applies to this operation ListOperationsInsightsWarehouseUsers() @@ -5298,7 +5298,7 @@ func (client OperationsInsightsClient) listOperationsInsightsWarehouseUsers(ctx // ListOperationsInsightsWarehouses Gets a list of Operations Insights warehouses. Either compartmentId or id must be specified. // There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListOperationsInsightsWarehouses.go.html to see an example of how to use ListOperationsInsightsWarehouses API. // A default retry strategy applies to this operation ListOperationsInsightsWarehouses() @@ -5356,7 +5356,7 @@ func (client OperationsInsightsClient) listOperationsInsightsWarehouses(ctx cont // ListOpsiConfigurations Gets a list of OPSI configuration resources based on the query parameters specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListOpsiConfigurations.go.html to see an example of how to use ListOpsiConfigurations API. // A default retry strategy applies to this operation ListOpsiConfigurations() @@ -5414,7 +5414,7 @@ func (client OperationsInsightsClient) listOpsiConfigurations(ctx context.Contex // ListOpsiDataObjects Gets a list of OPSI data objects based on the query parameters specified. CompartmentId id query parameter must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListOpsiDataObjects.go.html to see an example of how to use ListOpsiDataObjects API. // A default retry strategy applies to this operation ListOpsiDataObjects() @@ -5473,7 +5473,7 @@ func (client OperationsInsightsClient) listOpsiDataObjects(ctx context.Context, // ListSqlPlans Query SQL Warehouse to list the plan xml for a given SQL execution plan. This returns a SqlPlanCollection object, but is currently limited to a single plan. // Either databaseId or id must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListSqlPlans.go.html to see an example of how to use ListSqlPlans API. // A default retry strategy applies to this operation ListSqlPlans() @@ -5532,7 +5532,7 @@ func (client OperationsInsightsClient) listSqlPlans(ctx context.Context, request // ListSqlSearches Search SQL by SQL Identifier across databases in a compartment and in all sub-compartments if specified. // And get the SQL Text and the details of the databases executing the SQL for a given time period. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListSqlSearches.go.html to see an example of how to use ListSqlSearches API. // A default retry strategy applies to this operation ListSqlSearches() @@ -5590,7 +5590,7 @@ func (client OperationsInsightsClient) listSqlSearches(ctx context.Context, requ // ListSqlTexts Query SQL Warehouse to get the full SQL Text for a SQL in a compartment and in all sub-compartments if specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListSqlTexts.go.html to see an example of how to use ListSqlTexts API. // A default retry strategy applies to this operation ListSqlTexts() @@ -5648,7 +5648,7 @@ func (client OperationsInsightsClient) listSqlTexts(ctx context.Context, request // ListWarehouseDataObjects Gets a list of Warehouse data objects (e.g: views, tables), based on the query parameters specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListWarehouseDataObjects.go.html to see an example of how to use ListWarehouseDataObjects API. // A default retry strategy applies to this operation ListWarehouseDataObjects() @@ -5706,7 +5706,7 @@ func (client OperationsInsightsClient) listWarehouseDataObjects(ctx context.Cont // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -5764,7 +5764,7 @@ func (client OperationsInsightsClient) listWorkRequestErrors(ctx context.Context // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -5822,7 +5822,7 @@ func (client OperationsInsightsClient) listWorkRequestLogs(ctx context.Context, // ListWorkRequests Lists the work requests in a compartment. Either compartmentId or id must be specified. Only one of id, resourceId or relatedResourceId can be specified optionally. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -5881,7 +5881,7 @@ func (client OperationsInsightsClient) listWorkRequests(ctx context.Context, req // QueryOpsiDataObjectData Queries an OPSI data object with the inputs provided and sends the result set back. Either analysisTimeInterval // or timeIntervalStart and timeIntervalEnd parameters need to be passed as well. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/QueryOpsiDataObjectData.go.html to see an example of how to use QueryOpsiDataObjectData API. // A default retry strategy applies to this operation QueryOpsiDataObjectData() @@ -5940,7 +5940,7 @@ func (client OperationsInsightsClient) queryOpsiDataObjectData(ctx context.Conte // QueryWarehouseDataObjectData Queries Warehouse data objects (e.g: views, tables) with the inputs provided and sends the result set back. // Any data to which an OperationsInsightsWarehouseUser with a permission to the corresponding Warehouse can be queried. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/QueryWarehouseDataObjectData.go.html to see an example of how to use QueryWarehouseDataObjectData API. // A default retry strategy applies to this operation QueryWarehouseDataObjectData() @@ -5998,7 +5998,7 @@ func (client OperationsInsightsClient) queryWarehouseDataObjectData(ctx context. // RotateOperationsInsightsWarehouseWallet Rotate the ADW wallet for Operations Insights Warehouse using which the Hub data is exposed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/RotateOperationsInsightsWarehouseWallet.go.html to see an example of how to use RotateOperationsInsightsWarehouseWallet API. // A default retry strategy applies to this operation RotateOperationsInsightsWarehouseWallet() @@ -6056,7 +6056,7 @@ func (client OperationsInsightsClient) rotateOperationsInsightsWarehouseWallet(c // SummarizeAddmDbFindings Summarizes ADDM findings for the specified databases. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAddmDbFindings.go.html to see an example of how to use SummarizeAddmDbFindings API. // A default retry strategy applies to this operation SummarizeAddmDbFindings() @@ -6116,7 +6116,7 @@ func (client OperationsInsightsClient) summarizeAddmDbFindings(ctx context.Conte // be one element for each time that parameter changed during the specified time period. // This API is limited to only one parameter per request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAddmDbParameterChanges.go.html to see an example of how to use SummarizeAddmDbParameterChanges API. // A default retry strategy applies to this operation SummarizeAddmDbParameterChanges() @@ -6177,7 +6177,7 @@ func (client OperationsInsightsClient) summarizeAddmDbParameterChanges(ctx conte // time period. The response does not include the individual parameter changes within the time // period. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAddmDbParameters.go.html to see an example of how to use SummarizeAddmDbParameters API. // A default retry strategy applies to this operation SummarizeAddmDbParameters() @@ -6235,7 +6235,7 @@ func (client OperationsInsightsClient) summarizeAddmDbParameters(ctx context.Con // SummarizeAddmDbRecommendations Summarizes ADDM recommendations for the specified databases. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAddmDbRecommendations.go.html to see an example of how to use SummarizeAddmDbRecommendations API. // A default retry strategy applies to this operation SummarizeAddmDbRecommendations() @@ -6293,7 +6293,7 @@ func (client OperationsInsightsClient) summarizeAddmDbRecommendations(ctx contex // SummarizeAddmDbSchemaObjects Summarizes Schema objects for the specified databases for the specified objectIdentifiers // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAddmDbSchemaObjects.go.html to see an example of how to use SummarizeAddmDbSchemaObjects API. // A default retry strategy applies to this operation SummarizeAddmDbSchemaObjects() @@ -6351,7 +6351,7 @@ func (client OperationsInsightsClient) summarizeAddmDbSchemaObjects(ctx context. // SummarizeAddmDbSqlStatements Summarizes SQL Statements for the specified databases for the specified sqlIdentifiers // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAddmDbSqlStatements.go.html to see an example of how to use SummarizeAddmDbSqlStatements API. // A default retry strategy applies to this operation SummarizeAddmDbSqlStatements() @@ -6413,7 +6413,7 @@ func (client OperationsInsightsClient) summarizeAddmDbSqlStatements(ctx context. // - if time range is <=2 hours then the metrics points will be for every 10 SECONDS // - if time range is >7 days then the metrics points will be for every HOUR. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrDatabaseCpuUsages.go.html to see an example of how to use SummarizeAwrDatabaseCpuUsages API. // A default retry strategy applies to this operation SummarizeAwrDatabaseCpuUsages() @@ -6471,7 +6471,7 @@ func (client OperationsInsightsClient) summarizeAwrDatabaseCpuUsages(ctx context // SummarizeAwrDatabaseMetrics Summarizes the metric samples for the specified database in the AWR. The metric samples are summarized based on the Time dimension for each metric. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrDatabaseMetrics.go.html to see an example of how to use SummarizeAwrDatabaseMetrics API. // A default retry strategy applies to this operation SummarizeAwrDatabaseMetrics() @@ -6533,7 +6533,7 @@ func (client OperationsInsightsClient) summarizeAwrDatabaseMetrics(ctx context.C // To get a list of all the database parameters whose values were changed during a specified time range, use the following API endpoint: // /awrHubs/{awrHubId}/awrDbParameters?awrSourceDatabaseIdentifier={awrSourceDbId} // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrDatabaseParameterChanges.go.html to see an example of how to use SummarizeAwrDatabaseParameterChanges API. // A default retry strategy applies to this operation SummarizeAwrDatabaseParameterChanges() @@ -6599,7 +6599,7 @@ func (client OperationsInsightsClient) summarizeAwrDatabaseParameterChanges(ctx // Note that this API does not return information on the number of times each database parameter has been changed within the time range. To get the database parameter value change history for a specific parameter, use the following API endpoint: // /awrHubs/{awrHubId}/awrDbParameterChanges?awrSourceDatabaseIdentifier={awrSourceDbId} // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrDatabaseParameters.go.html to see an example of how to use SummarizeAwrDatabaseParameters API. // A default retry strategy applies to this operation SummarizeAwrDatabaseParameters() @@ -6657,7 +6657,7 @@ func (client OperationsInsightsClient) summarizeAwrDatabaseParameters(ctx contex // SummarizeAwrDatabaseSnapshotRanges Summarizes the AWR snapshot ranges that contain continuous snapshots, for the specified AWRHub. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrDatabaseSnapshotRanges.go.html to see an example of how to use SummarizeAwrDatabaseSnapshotRanges API. // A default retry strategy applies to this operation SummarizeAwrDatabaseSnapshotRanges() @@ -6715,7 +6715,7 @@ func (client OperationsInsightsClient) summarizeAwrDatabaseSnapshotRanges(ctx co // SummarizeAwrDatabaseSysstats Summarizes the AWR SYSSTAT sample data for the specified database in AWR. The statistical data is summarized based on the Time dimension for each statistic. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrDatabaseSysstats.go.html to see an example of how to use SummarizeAwrDatabaseSysstats API. // A default retry strategy applies to this operation SummarizeAwrDatabaseSysstats() @@ -6773,7 +6773,7 @@ func (client OperationsInsightsClient) summarizeAwrDatabaseSysstats(ctx context. // SummarizeAwrDatabaseTopWaitEvents Summarizes the AWR top wait events. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrDatabaseTopWaitEvents.go.html to see an example of how to use SummarizeAwrDatabaseTopWaitEvents API. // A default retry strategy applies to this operation SummarizeAwrDatabaseTopWaitEvents() @@ -6831,7 +6831,7 @@ func (client OperationsInsightsClient) summarizeAwrDatabaseTopWaitEvents(ctx con // SummarizeAwrDatabaseWaitEventBuckets Summarizes AWR wait event data into value buckets and frequency, for the specified database in the AWR. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrDatabaseWaitEventBuckets.go.html to see an example of how to use SummarizeAwrDatabaseWaitEventBuckets API. // A default retry strategy applies to this operation SummarizeAwrDatabaseWaitEventBuckets() @@ -6889,7 +6889,7 @@ func (client OperationsInsightsClient) summarizeAwrDatabaseWaitEventBuckets(ctx // SummarizeAwrDatabaseWaitEvents Summarizes the AWR wait event sample data for the specified database in the AWR. The event data is summarized based on the Time dimension for each event. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrDatabaseWaitEvents.go.html to see an example of how to use SummarizeAwrDatabaseWaitEvents API. // A default retry strategy applies to this operation SummarizeAwrDatabaseWaitEvents() @@ -6947,7 +6947,7 @@ func (client OperationsInsightsClient) summarizeAwrDatabaseWaitEvents(ctx contex // SummarizeAwrSourcesSummaries Gets a list of summary of AWR Sources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeAwrSourcesSummaries.go.html to see an example of how to use SummarizeAwrSourcesSummaries API. // A default retry strategy applies to this operation SummarizeAwrSourcesSummaries() @@ -7006,7 +7006,7 @@ func (client OperationsInsightsClient) summarizeAwrSourcesSummaries(ctx context. // SummarizeConfigurationItems Gets the applicable configuration items based on the query parameters specified. Configuration items for an opsiConfigType with respect to a compartmentId can be fetched. // Values specified in configItemField param will determine what fields for each configuration items have to be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeConfigurationItems.go.html to see an example of how to use SummarizeConfigurationItems API. // A default retry strategy applies to this operation SummarizeConfigurationItems() @@ -7066,7 +7066,7 @@ func (client OperationsInsightsClient) summarizeConfigurationItems(ctx context.C // The maximum time range for analysis is 2 years, hence this is intentionally not paginated. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeDatabaseInsightResourceCapacityTrend.go.html to see an example of how to use SummarizeDatabaseInsightResourceCapacityTrend API. // A default retry strategy applies to this operation SummarizeDatabaseInsightResourceCapacityTrend() @@ -7125,7 +7125,7 @@ func (client OperationsInsightsClient) summarizeDatabaseInsightResourceCapacityT // SummarizeDatabaseInsightResourceForecastTrend Get Forecast predictions for CPU and Storage resources since a time in the past. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeDatabaseInsightResourceForecastTrend.go.html to see an example of how to use SummarizeDatabaseInsightResourceForecastTrend API. // A default retry strategy applies to this operation SummarizeDatabaseInsightResourceForecastTrend() @@ -7184,7 +7184,7 @@ func (client OperationsInsightsClient) summarizeDatabaseInsightResourceForecastT // SummarizeDatabaseInsightResourceStatistics Lists the Resource statistics (usage,capacity, usage change percent, utilization percent, base capacity, isAutoScalingEnabled) // for each database filtered by utilization level in a compartment and in all sub-compartments if specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeDatabaseInsightResourceStatistics.go.html to see an example of how to use SummarizeDatabaseInsightResourceStatistics API. // A default retry strategy applies to this operation SummarizeDatabaseInsightResourceStatistics() @@ -7245,7 +7245,7 @@ func (client OperationsInsightsClient) summarizeDatabaseInsightResourceStatistic // Linear regression functions are used to calculate the usage change percentage. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeDatabaseInsightResourceUsage.go.html to see an example of how to use SummarizeDatabaseInsightResourceUsage API. // A default retry strategy applies to this operation SummarizeDatabaseInsightResourceUsage() @@ -7305,7 +7305,7 @@ func (client OperationsInsightsClient) summarizeDatabaseInsightResourceUsage(ctx // The maximum time range for analysis is 2 years, hence this is intentionally not paginated. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeDatabaseInsightResourceUsageTrend.go.html to see an example of how to use SummarizeDatabaseInsightResourceUsageTrend API. // A default retry strategy applies to this operation SummarizeDatabaseInsightResourceUsageTrend() @@ -7364,7 +7364,7 @@ func (client OperationsInsightsClient) summarizeDatabaseInsightResourceUsageTren // SummarizeDatabaseInsightResourceUtilizationInsight Gets resources with current utilization (high and low) and projected utilization (high and low) for a resource type over specified time period. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeDatabaseInsightResourceUtilizationInsight.go.html to see an example of how to use SummarizeDatabaseInsightResourceUtilizationInsight API. // A default retry strategy applies to this operation SummarizeDatabaseInsightResourceUtilizationInsight() @@ -7424,7 +7424,7 @@ func (client OperationsInsightsClient) summarizeDatabaseInsightResourceUtilizati // The maximum time range for analysis is 2 years, hence this is intentionally not paginated. // Either databaseId or id must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeDatabaseInsightTablespaceUsageTrend.go.html to see an example of how to use SummarizeDatabaseInsightTablespaceUsageTrend API. // A default retry strategy applies to this operation SummarizeDatabaseInsightTablespaceUsageTrend() @@ -7489,7 +7489,7 @@ func (client OperationsInsightsClient) summarizeDatabaseInsightTablespaceUsageTr // and asmName is returned in name field for resourceMetric STORAGE. StorageServerName query parameter applies to ResourceType STORAGE_SERVER. // Valid values for ResourceType DISKGROUP is STORAGE. Comma delimited (asmName,diskgroupName) is returned in name field. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeExadataInsightResourceCapacityTrend.go.html to see an example of how to use SummarizeExadataInsightResourceCapacityTrend API. // A default retry strategy applies to this operation SummarizeExadataInsightResourceCapacityTrend() @@ -7551,7 +7551,7 @@ func (client OperationsInsightsClient) summarizeExadataInsightResourceCapacityTr // Valid values for ResourceType HOST are CPU and MEMORY. // Valid values for ResourceType STORAGE_SERVER are STORAGE, IOPS and THROUGHPUT. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeExadataInsightResourceCapacityTrendAggregated.go.html to see an example of how to use SummarizeExadataInsightResourceCapacityTrendAggregated API. // A default retry strategy applies to this operation SummarizeExadataInsightResourceCapacityTrendAggregated() @@ -7616,7 +7616,7 @@ func (client OperationsInsightsClient) summarizeExadataInsightResourceCapacityTr // and asmName is returned in name field for resourceMetric STORAGE. StorageServerName query parameter applies to ResourceType STORAGE_SERVER. // Valid value for ResourceType DISKGROUP is STORAGE. Comma delimited (asmName,diskgroupName) is returned in name field. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeExadataInsightResourceForecastTrend.go.html to see an example of how to use SummarizeExadataInsightResourceForecastTrend API. // A default retry strategy applies to this operation SummarizeExadataInsightResourceForecastTrend() @@ -7677,7 +7677,7 @@ func (client OperationsInsightsClient) summarizeExadataInsightResourceForecastTr // Valid values for ResourceType HOST are CPU and MEMORY. // Valid values for ResourceType STORAGE_SERVER are STORAGE, IOPS and THROUGHPUT. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeExadataInsightResourceForecastTrendAggregated.go.html to see an example of how to use SummarizeExadataInsightResourceForecastTrendAggregated API. // A default retry strategy applies to this operation SummarizeExadataInsightResourceForecastTrendAggregated() @@ -7739,7 +7739,7 @@ func (client OperationsInsightsClient) summarizeExadataInsightResourceForecastTr // Valid values for ResourceType STORAGE_SERVER are STORAGE, IOPS, THROUGHPUT. // Valid value for ResourceType DISKGROUP is STORAGE. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeExadataInsightResourceStatistics.go.html to see an example of how to use SummarizeExadataInsightResourceStatistics API. // A default retry strategy applies to this operation SummarizeExadataInsightResourceStatistics() @@ -7802,7 +7802,7 @@ func (client OperationsInsightsClient) summarizeExadataInsightResourceStatistics // Valid values for ResourceType HOST are CPU and MEMORY. // Valid values for ResourceType STORAGE_SERVER are STORAGE, IOPS and THROUGHPUT. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeExadataInsightResourceUsage.go.html to see an example of how to use SummarizeExadataInsightResourceUsage API. // A default retry strategy applies to this operation SummarizeExadataInsightResourceUsage() @@ -7865,7 +7865,7 @@ func (client OperationsInsightsClient) summarizeExadataInsightResourceUsage(ctx // Valid values for ResourceType HOST are CPU and MEMORY. // Valid values for ResourceType STORAGE_SERVER are STORAGE, IOPS and THROUGHPUT. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeExadataInsightResourceUsageAggregated.go.html to see an example of how to use SummarizeExadataInsightResourceUsageAggregated API. // A default retry strategy applies to this operation SummarizeExadataInsightResourceUsageAggregated() @@ -7923,7 +7923,7 @@ func (client OperationsInsightsClient) summarizeExadataInsightResourceUsageAggre // SummarizeExadataInsightResourceUtilizationInsight Gets current utilization, projected utilization and days to reach projectedUtilization for an exadata system over specified time period. Valid values for ResourceType DATABASE are CPU,MEMORY,IO and STORAGE. Valid values for ResourceType HOST are CPU and MEMORY. Valid values for ResourceType STORAGE_SERVER are STORAGE, IOPS and THROUGHPUT. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeExadataInsightResourceUtilizationInsight.go.html to see an example of how to use SummarizeExadataInsightResourceUtilizationInsight API. // A default retry strategy applies to this operation SummarizeExadataInsightResourceUtilizationInsight() @@ -7981,7 +7981,7 @@ func (client OperationsInsightsClient) summarizeExadataInsightResourceUtilizatio // SummarizeExadataMembers Lists the software and hardware inventory of the Exadata System. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeExadataMembers.go.html to see an example of how to use SummarizeExadataMembers API. // A default retry strategy applies to this operation SummarizeExadataMembers() @@ -8039,7 +8039,7 @@ func (client OperationsInsightsClient) summarizeExadataMembers(ctx context.Conte // SummarizeHostInsightNetworkUsageTrend Returns response with usage time series data with breakdown by network interface for the time period specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightNetworkUsageTrend.go.html to see an example of how to use SummarizeHostInsightNetworkUsageTrend API. // A default retry strategy applies to this operation SummarizeHostInsightNetworkUsageTrend() @@ -8099,7 +8099,7 @@ func (client OperationsInsightsClient) summarizeHostInsightNetworkUsageTrend(ctx // The maximum time range for analysis is 2 years, hence this is intentionally not paginated. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightResourceCapacityTrend.go.html to see an example of how to use SummarizeHostInsightResourceCapacityTrend API. // A default retry strategy applies to this operation SummarizeHostInsightResourceCapacityTrend() @@ -8158,7 +8158,7 @@ func (client OperationsInsightsClient) summarizeHostInsightResourceCapacityTrend // SummarizeHostInsightResourceForecastTrend Get Forecast predictions for CPU or memory resources since a time in the past. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightResourceForecastTrend.go.html to see an example of how to use SummarizeHostInsightResourceForecastTrend API. // A default retry strategy applies to this operation SummarizeHostInsightResourceForecastTrend() @@ -8217,7 +8217,7 @@ func (client OperationsInsightsClient) summarizeHostInsightResourceForecastTrend // SummarizeHostInsightResourceStatistics Lists the resource statistics (usage, capacity, usage change percent, utilization percent, load) for each host filtered // by utilization level in a compartment and in all sub-compartments if specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightResourceStatistics.go.html to see an example of how to use SummarizeHostInsightResourceStatistics API. // A default retry strategy applies to this operation SummarizeHostInsightResourceStatistics() @@ -8278,7 +8278,7 @@ func (client OperationsInsightsClient) summarizeHostInsightResourceStatistics(ct // Linear regression functions are used to calculate the usage change percentage. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightResourceUsage.go.html to see an example of how to use SummarizeHostInsightResourceUsage API. // A default retry strategy applies to this operation SummarizeHostInsightResourceUsage() @@ -8338,7 +8338,7 @@ func (client OperationsInsightsClient) summarizeHostInsightResourceUsage(ctx con // The maximum time range for analysis is 2 years, hence this is intentionally not paginated. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightResourceUsageTrend.go.html to see an example of how to use SummarizeHostInsightResourceUsageTrend API. // A default retry strategy applies to this operation SummarizeHostInsightResourceUsageTrend() @@ -8397,7 +8397,7 @@ func (client OperationsInsightsClient) summarizeHostInsightResourceUsageTrend(ct // SummarizeHostInsightResourceUtilizationInsight Gets resources with current utilization (high and low) and projected utilization (high and low) for a resource type over specified time period. // If compartmentIdInSubtree is specified, aggregates resources in a compartment and in all sub-compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightResourceUtilizationInsight.go.html to see an example of how to use SummarizeHostInsightResourceUtilizationInsight API. // A default retry strategy applies to this operation SummarizeHostInsightResourceUtilizationInsight() @@ -8455,7 +8455,7 @@ func (client OperationsInsightsClient) summarizeHostInsightResourceUtilizationIn // SummarizeHostInsightStorageUsageTrend Returns response with usage time series data with breakdown by filesystem for the time period specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightStorageUsageTrend.go.html to see an example of how to use SummarizeHostInsightStorageUsageTrend API. // A default retry strategy applies to this operation SummarizeHostInsightStorageUsageTrend() @@ -8515,7 +8515,7 @@ func (client OperationsInsightsClient) summarizeHostInsightStorageUsageTrend(ctx // Data is aggregated for the time specified and processes are sorted descendent by the process metric specified (CPU, MEMORY, VIRTUAL_MEMORY). // hostInsightId, processMetric must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightTopProcessesUsage.go.html to see an example of how to use SummarizeHostInsightTopProcessesUsage API. // A default retry strategy applies to this operation SummarizeHostInsightTopProcessesUsage() @@ -8575,7 +8575,7 @@ func (client OperationsInsightsClient) summarizeHostInsightTopProcessesUsage(ctx // Data is aggregated for the time period specified and proceses are sorted descendent by the proces metric specified (CPU, MEMORY, VIRTUAL_MEMORY). // HostInsight Id and Process metric must be specified // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeHostInsightTopProcessesUsageTrend.go.html to see an example of how to use SummarizeHostInsightTopProcessesUsageTrend API. // A default retry strategy applies to this operation SummarizeHostInsightTopProcessesUsageTrend() @@ -8634,7 +8634,7 @@ func (client OperationsInsightsClient) summarizeHostInsightTopProcessesUsageTren // SummarizeOperationsInsightsWarehouseResourceUsage Gets the details of resources used by an Operations Insights Warehouse. // There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeOperationsInsightsWarehouseResourceUsage.go.html to see an example of how to use SummarizeOperationsInsightsWarehouseResourceUsage API. // A default retry strategy applies to this operation SummarizeOperationsInsightsWarehouseResourceUsage() @@ -8693,7 +8693,7 @@ func (client OperationsInsightsClient) summarizeOperationsInsightsWarehouseResou // SummarizeSqlInsights Query SQL Warehouse to get the performance insights for SQLs taking greater than X% database time for a given // time period across the given databases or database types in a compartment and in all sub-compartments if specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeSqlInsights.go.html to see an example of how to use SummarizeSqlInsights API. // A default retry strategy applies to this operation SummarizeSqlInsights() @@ -8752,7 +8752,7 @@ func (client OperationsInsightsClient) summarizeSqlInsights(ctx context.Context, // SummarizeSqlPlanInsights Query SQL Warehouse to get the performance insights on the execution plans for a given SQL for a given time period. // Either databaseId or id must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeSqlPlanInsights.go.html to see an example of how to use SummarizeSqlPlanInsights API. // A default retry strategy applies to this operation SummarizeSqlPlanInsights() @@ -8811,7 +8811,7 @@ func (client OperationsInsightsClient) summarizeSqlPlanInsights(ctx context.Cont // SummarizeSqlResponseTimeDistributions Query SQL Warehouse to summarize the response time distribution of query executions for a given SQL for a given time period. // Either databaseId or id must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeSqlResponseTimeDistributions.go.html to see an example of how to use SummarizeSqlResponseTimeDistributions API. // A default retry strategy applies to this operation SummarizeSqlResponseTimeDistributions() @@ -8870,7 +8870,7 @@ func (client OperationsInsightsClient) summarizeSqlResponseTimeDistributions(ctx // SummarizeSqlStatistics Query SQL Warehouse to get the performance statistics for SQLs taking greater than X% database time for a given // time period across the given databases or database types in a compartment and in all sub-compartments if specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeSqlStatistics.go.html to see an example of how to use SummarizeSqlStatistics API. // A default retry strategy applies to this operation SummarizeSqlStatistics() @@ -8929,7 +8929,7 @@ func (client OperationsInsightsClient) summarizeSqlStatistics(ctx context.Contex // SummarizeSqlStatisticsTimeSeries Query SQL Warehouse to get the performance statistics time series for a given SQL across given databases for a // given time period in a compartment and in all sub-compartments if specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeSqlStatisticsTimeSeries.go.html to see an example of how to use SummarizeSqlStatisticsTimeSeries API. // A default retry strategy applies to this operation SummarizeSqlStatisticsTimeSeries() @@ -8988,7 +8988,7 @@ func (client OperationsInsightsClient) summarizeSqlStatisticsTimeSeries(ctx cont // SummarizeSqlStatisticsTimeSeriesByPlan Query SQL Warehouse to get the performance statistics time series for a given SQL by execution plans for a given time period. // Either databaseId or id must be specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/SummarizeSqlStatisticsTimeSeriesByPlan.go.html to see an example of how to use SummarizeSqlStatisticsTimeSeriesByPlan API. // A default retry strategy applies to this operation SummarizeSqlStatisticsTimeSeriesByPlan() @@ -9046,7 +9046,7 @@ func (client OperationsInsightsClient) summarizeSqlStatisticsTimeSeriesByPlan(ct // UpdateAwrHub Updates the configuration of a hub . // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateAwrHub.go.html to see an example of how to use UpdateAwrHub API. // A default retry strategy applies to this operation UpdateAwrHub() @@ -9104,7 +9104,7 @@ func (client OperationsInsightsClient) updateAwrHub(ctx context.Context, request // UpdateDatabaseInsight Updates configuration of a database insight. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateDatabaseInsight.go.html to see an example of how to use UpdateDatabaseInsight API. // A default retry strategy applies to this operation UpdateDatabaseInsight() @@ -9162,7 +9162,7 @@ func (client OperationsInsightsClient) updateDatabaseInsight(ctx context.Context // UpdateEnterpriseManagerBridge Updates configuration of an Operations Insights Enterprise Manager bridge. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateEnterpriseManagerBridge.go.html to see an example of how to use UpdateEnterpriseManagerBridge API. // A default retry strategy applies to this operation UpdateEnterpriseManagerBridge() @@ -9220,7 +9220,7 @@ func (client OperationsInsightsClient) updateEnterpriseManagerBridge(ctx context // UpdateExadataInsight Updates configuration of an Exadata insight. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateExadataInsight.go.html to see an example of how to use UpdateExadataInsight API. // A default retry strategy applies to this operation UpdateExadataInsight() @@ -9278,7 +9278,7 @@ func (client OperationsInsightsClient) updateExadataInsight(ctx context.Context, // UpdateHostInsight Updates configuration of a host insight. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateHostInsight.go.html to see an example of how to use UpdateHostInsight API. // A default retry strategy applies to this operation UpdateHostInsight() @@ -9336,7 +9336,7 @@ func (client OperationsInsightsClient) updateHostInsight(ctx context.Context, re // UpdateNewsReport Updates the configuration of a news report. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateNewsReport.go.html to see an example of how to use UpdateNewsReport API. // A default retry strategy applies to this operation UpdateNewsReport() @@ -9394,7 +9394,7 @@ func (client OperationsInsightsClient) updateNewsReport(ctx context.Context, req // UpdateOperationsInsightsPrivateEndpoint Updates one or more attributes of the specified private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateOperationsInsightsPrivateEndpoint.go.html to see an example of how to use UpdateOperationsInsightsPrivateEndpoint API. // A default retry strategy applies to this operation UpdateOperationsInsightsPrivateEndpoint() @@ -9453,7 +9453,7 @@ func (client OperationsInsightsClient) updateOperationsInsightsPrivateEndpoint(c // UpdateOperationsInsightsWarehouse Updates the configuration of an Operations Insights Warehouse. // There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateOperationsInsightsWarehouse.go.html to see an example of how to use UpdateOperationsInsightsWarehouse API. // A default retry strategy applies to this operation UpdateOperationsInsightsWarehouse() @@ -9511,7 +9511,7 @@ func (client OperationsInsightsClient) updateOperationsInsightsWarehouse(ctx con // UpdateOperationsInsightsWarehouseUser Updates the configuration of an Operations Insights Warehouse User. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateOperationsInsightsWarehouseUser.go.html to see an example of how to use UpdateOperationsInsightsWarehouseUser API. // A default retry strategy applies to this operation UpdateOperationsInsightsWarehouseUser() @@ -9569,7 +9569,7 @@ func (client OperationsInsightsClient) updateOperationsInsightsWarehouseUser(ctx // UpdateOpsiConfiguration Updates an OPSI configuration resource with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/opsi/UpdateOpsiConfiguration.go.html to see an example of how to use UpdateOpsiConfiguration API. // A default retry strategy applies to this operation UpdateOpsiConfiguration() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_ux_configuration.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_ux_configuration.go index a3a0f0f7e42..83333e521ae 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_ux_configuration.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_ux_configuration.go @@ -61,62 +61,62 @@ type OpsiUxConfiguration struct { LifecycleState OpsiConfigurationLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OpsiUxConfiguration) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OpsiUxConfiguration) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OpsiUxConfiguration) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m OpsiUxConfiguration) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OpsiUxConfiguration) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OpsiUxConfiguration) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OpsiUxConfiguration) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OpsiUxConfiguration) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OpsiUxConfiguration) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OpsiUxConfiguration) GetLifecycleState() OpsiConfigurationLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OpsiUxConfiguration) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetConfigItems returns ConfigItems +// GetConfigItems returns ConfigItems func (m OpsiUxConfiguration) GetConfigItems() []OpsiConfigurationConfigurationItemSummary { return m.ConfigItems } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_ux_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_ux_configuration_summary.go index 2ec1e640da5..c0b04bc1878 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_ux_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/opsi_ux_configuration_summary.go @@ -58,57 +58,57 @@ type OpsiUxConfigurationSummary struct { LifecycleState OpsiConfigurationLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m OpsiUxConfigurationSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m OpsiUxConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m OpsiUxConfigurationSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m OpsiUxConfigurationSummary) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m OpsiUxConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m OpsiUxConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m OpsiUxConfigurationSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m OpsiUxConfigurationSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m OpsiUxConfigurationSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m OpsiUxConfigurationSummary) GetLifecycleState() OpsiConfigurationLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m OpsiUxConfigurationSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_database_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_database_insight.go index ffe50a73016..bb08842bf67 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_database_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_database_insight.go @@ -92,72 +92,72 @@ type PeComanagedDatabaseInsight struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m PeComanagedDatabaseInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PeComanagedDatabaseInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetStatus returns Status +// GetStatus returns Status func (m PeComanagedDatabaseInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m PeComanagedDatabaseInsight) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m PeComanagedDatabaseInsight) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m PeComanagedDatabaseInsight) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PeComanagedDatabaseInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PeComanagedDatabaseInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m PeComanagedDatabaseInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PeComanagedDatabaseInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m PeComanagedDatabaseInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PeComanagedDatabaseInsight) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PeComanagedDatabaseInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails +// GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails func (m PeComanagedDatabaseInsight) GetDatabaseConnectionStatusDetails() *string { return m.DatabaseConnectionStatusDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_database_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_database_insight_summary.go index 26a45ea2603..16d50f95261 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_database_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_database_insight_summary.go @@ -91,92 +91,92 @@ type PeComanagedDatabaseInsightSummary struct { LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m PeComanagedDatabaseInsightSummary) GetId() *string { return m.Id } -//GetDatabaseId returns DatabaseId +// GetDatabaseId returns DatabaseId func (m PeComanagedDatabaseInsightSummary) GetDatabaseId() *string { return m.DatabaseId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PeComanagedDatabaseInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDatabaseName returns DatabaseName +// GetDatabaseName returns DatabaseName func (m PeComanagedDatabaseInsightSummary) GetDatabaseName() *string { return m.DatabaseName } -//GetDatabaseDisplayName returns DatabaseDisplayName +// GetDatabaseDisplayName returns DatabaseDisplayName func (m PeComanagedDatabaseInsightSummary) GetDatabaseDisplayName() *string { return m.DatabaseDisplayName } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m PeComanagedDatabaseInsightSummary) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m PeComanagedDatabaseInsightSummary) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetDatabaseHostNames returns DatabaseHostNames +// GetDatabaseHostNames returns DatabaseHostNames func (m PeComanagedDatabaseInsightSummary) GetDatabaseHostNames() []string { return m.DatabaseHostNames } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PeComanagedDatabaseInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PeComanagedDatabaseInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m PeComanagedDatabaseInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m PeComanagedDatabaseInsightSummary) GetProcessorCount() *int { return m.ProcessorCount } -//GetStatus returns Status +// GetStatus returns Status func (m PeComanagedDatabaseInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PeComanagedDatabaseInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m PeComanagedDatabaseInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PeComanagedDatabaseInsightSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PeComanagedDatabaseInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails +// GetDatabaseConnectionStatusDetails returns DatabaseConnectionStatusDetails func (m PeComanagedDatabaseInsightSummary) GetDatabaseConnectionStatusDetails() *string { return m.DatabaseConnectionStatusDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_exadata_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_exadata_insight.go index 8618fe91941..edf49a2c21d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_exadata_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_exadata_insight.go @@ -79,77 +79,77 @@ type PeComanagedExadataInsight struct { ExadataInfraResourceType ExadataResourceTypeEnum `mandatory:"true" json:"exadataInfraResourceType"` } -//GetId returns Id +// GetId returns Id func (m PeComanagedExadataInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PeComanagedExadataInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetExadataName returns ExadataName +// GetExadataName returns ExadataName func (m PeComanagedExadataInsight) GetExadataName() *string { return m.ExadataName } -//GetExadataDisplayName returns ExadataDisplayName +// GetExadataDisplayName returns ExadataDisplayName func (m PeComanagedExadataInsight) GetExadataDisplayName() *string { return m.ExadataDisplayName } -//GetExadataType returns ExadataType +// GetExadataType returns ExadataType func (m PeComanagedExadataInsight) GetExadataType() ExadataTypeEnum { return m.ExadataType } -//GetExadataRackType returns ExadataRackType +// GetExadataRackType returns ExadataRackType func (m PeComanagedExadataInsight) GetExadataRackType() ExadataRackTypeEnum { return m.ExadataRackType } -//GetIsVirtualizedExadata returns IsVirtualizedExadata +// GetIsVirtualizedExadata returns IsVirtualizedExadata func (m PeComanagedExadataInsight) GetIsVirtualizedExadata() *bool { return m.IsVirtualizedExadata } -//GetStatus returns Status +// GetStatus returns Status func (m PeComanagedExadataInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PeComanagedExadataInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PeComanagedExadataInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m PeComanagedExadataInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PeComanagedExadataInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m PeComanagedExadataInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PeComanagedExadataInsight) GetLifecycleState() ExadataInsightLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PeComanagedExadataInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_exadata_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_exadata_insight_summary.go index 2d8813142ae..d0f13866dd6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_exadata_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_exadata_insight_summary.go @@ -76,72 +76,72 @@ type PeComanagedExadataInsightSummary struct { ExadataInfraResourceType ExadataResourceTypeEnum `mandatory:"true" json:"exadataInfraResourceType"` } -//GetId returns Id +// GetId returns Id func (m PeComanagedExadataInsightSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PeComanagedExadataInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetExadataName returns ExadataName +// GetExadataName returns ExadataName func (m PeComanagedExadataInsightSummary) GetExadataName() *string { return m.ExadataName } -//GetExadataDisplayName returns ExadataDisplayName +// GetExadataDisplayName returns ExadataDisplayName func (m PeComanagedExadataInsightSummary) GetExadataDisplayName() *string { return m.ExadataDisplayName } -//GetExadataType returns ExadataType +// GetExadataType returns ExadataType func (m PeComanagedExadataInsightSummary) GetExadataType() ExadataTypeEnum { return m.ExadataType } -//GetExadataRackType returns ExadataRackType +// GetExadataRackType returns ExadataRackType func (m PeComanagedExadataInsightSummary) GetExadataRackType() ExadataRackTypeEnum { return m.ExadataRackType } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PeComanagedExadataInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PeComanagedExadataInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m PeComanagedExadataInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetStatus returns Status +// GetStatus returns Status func (m PeComanagedExadataInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PeComanagedExadataInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m PeComanagedExadataInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PeComanagedExadataInsightSummary) GetLifecycleState() ExadataInsightLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PeComanagedExadataInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_configuration_summary.go index 34a1dae5c10..a80217f1d6d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_configuration_summary.go @@ -92,97 +92,97 @@ type PeComanagedHostConfigurationSummary struct { PlatformType HostConfigurationSummaryPlatformTypeEnum `mandatory:"true" json:"platformType"` } -//GetHostInsightId returns HostInsightId +// GetHostInsightId returns HostInsightId func (m PeComanagedHostConfigurationSummary) GetHostInsightId() *string { return m.HostInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PeComanagedHostConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m PeComanagedHostConfigurationSummary) GetHostName() *string { return m.HostName } -//GetPlatformType returns PlatformType +// GetPlatformType returns PlatformType func (m PeComanagedHostConfigurationSummary) GetPlatformType() HostConfigurationSummaryPlatformTypeEnum { return m.PlatformType } -//GetPlatformVersion returns PlatformVersion +// GetPlatformVersion returns PlatformVersion func (m PeComanagedHostConfigurationSummary) GetPlatformVersion() *string { return m.PlatformVersion } -//GetPlatformVendor returns PlatformVendor +// GetPlatformVendor returns PlatformVendor func (m PeComanagedHostConfigurationSummary) GetPlatformVendor() *string { return m.PlatformVendor } -//GetTotalCpus returns TotalCpus +// GetTotalCpus returns TotalCpus func (m PeComanagedHostConfigurationSummary) GetTotalCpus() *int { return m.TotalCpus } -//GetTotalMemoryInGBs returns TotalMemoryInGBs +// GetTotalMemoryInGBs returns TotalMemoryInGBs func (m PeComanagedHostConfigurationSummary) GetTotalMemoryInGBs() *float64 { return m.TotalMemoryInGBs } -//GetCpuArchitecture returns CpuArchitecture +// GetCpuArchitecture returns CpuArchitecture func (m PeComanagedHostConfigurationSummary) GetCpuArchitecture() *string { return m.CpuArchitecture } -//GetCpuCacheInMBs returns CpuCacheInMBs +// GetCpuCacheInMBs returns CpuCacheInMBs func (m PeComanagedHostConfigurationSummary) GetCpuCacheInMBs() *float64 { return m.CpuCacheInMBs } -//GetCpuVendor returns CpuVendor +// GetCpuVendor returns CpuVendor func (m PeComanagedHostConfigurationSummary) GetCpuVendor() *string { return m.CpuVendor } -//GetCpuFrequencyInMhz returns CpuFrequencyInMhz +// GetCpuFrequencyInMhz returns CpuFrequencyInMhz func (m PeComanagedHostConfigurationSummary) GetCpuFrequencyInMhz() *float64 { return m.CpuFrequencyInMhz } -//GetCpuImplementation returns CpuImplementation +// GetCpuImplementation returns CpuImplementation func (m PeComanagedHostConfigurationSummary) GetCpuImplementation() *string { return m.CpuImplementation } -//GetCoresPerSocket returns CoresPerSocket +// GetCoresPerSocket returns CoresPerSocket func (m PeComanagedHostConfigurationSummary) GetCoresPerSocket() *int { return m.CoresPerSocket } -//GetTotalSockets returns TotalSockets +// GetTotalSockets returns TotalSockets func (m PeComanagedHostConfigurationSummary) GetTotalSockets() *int { return m.TotalSockets } -//GetThreadsPerSocket returns ThreadsPerSocket +// GetThreadsPerSocket returns ThreadsPerSocket func (m PeComanagedHostConfigurationSummary) GetThreadsPerSocket() *int { return m.ThreadsPerSocket } -//GetIsHyperThreadingEnabled returns IsHyperThreadingEnabled +// GetIsHyperThreadingEnabled returns IsHyperThreadingEnabled func (m PeComanagedHostConfigurationSummary) GetIsHyperThreadingEnabled() *bool { return m.IsHyperThreadingEnabled } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PeComanagedHostConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PeComanagedHostConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_insight.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_insight.go index ec28a43349b..6732583184f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_insight.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_insight.go @@ -82,72 +82,72 @@ type PeComanagedHostInsight struct { LifecycleState LifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m PeComanagedHostInsight) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PeComanagedHostInsight) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m PeComanagedHostInsight) GetHostName() *string { return m.HostName } -//GetHostDisplayName returns HostDisplayName +// GetHostDisplayName returns HostDisplayName func (m PeComanagedHostInsight) GetHostDisplayName() *string { return m.HostDisplayName } -//GetHostType returns HostType +// GetHostType returns HostType func (m PeComanagedHostInsight) GetHostType() *string { return m.HostType } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m PeComanagedHostInsight) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PeComanagedHostInsight) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PeComanagedHostInsight) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m PeComanagedHostInsight) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetStatus returns Status +// GetStatus returns Status func (m PeComanagedHostInsight) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PeComanagedHostInsight) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m PeComanagedHostInsight) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PeComanagedHostInsight) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PeComanagedHostInsight) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_insight_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_insight_summary.go index 20cd08c4d79..e0d71376f4d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_insight_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_host_insight_summary.go @@ -82,77 +82,77 @@ type PeComanagedHostInsightSummary struct { LifecycleState LifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m PeComanagedHostInsightSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PeComanagedHostInsightSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetHostName returns HostName +// GetHostName returns HostName func (m PeComanagedHostInsightSummary) GetHostName() *string { return m.HostName } -//GetHostDisplayName returns HostDisplayName +// GetHostDisplayName returns HostDisplayName func (m PeComanagedHostInsightSummary) GetHostDisplayName() *string { return m.HostDisplayName } -//GetHostType returns HostType +// GetHostType returns HostType func (m PeComanagedHostInsightSummary) GetHostType() *string { return m.HostType } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m PeComanagedHostInsightSummary) GetProcessorCount() *int { return m.ProcessorCount } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PeComanagedHostInsightSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PeComanagedHostInsightSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m PeComanagedHostInsightSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetOpsiPrivateEndpointId returns OpsiPrivateEndpointId +// GetOpsiPrivateEndpointId returns OpsiPrivateEndpointId func (m PeComanagedHostInsightSummary) GetOpsiPrivateEndpointId() *string { return m.OpsiPrivateEndpointId } -//GetStatus returns Status +// GetStatus returns Status func (m PeComanagedHostInsightSummary) GetStatus() ResourceStatusEnum { return m.Status } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PeComanagedHostInsightSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m PeComanagedHostInsightSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m PeComanagedHostInsightSummary) GetLifecycleState() LifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m PeComanagedHostInsightSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_managed_external_database_configuration_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_managed_external_database_configuration_summary.go index 181279dfa06..f8aebca2679 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_managed_external_database_configuration_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/pe_comanaged_managed_external_database_configuration_summary.go @@ -68,52 +68,52 @@ type PeComanagedManagedExternalDatabaseConfigurationSummary struct { ProcessorCount *int `mandatory:"false" json:"processorCount"` } -//GetDatabaseInsightId returns DatabaseInsightId +// GetDatabaseInsightId returns DatabaseInsightId func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetDatabaseInsightId() *string { return m.DatabaseInsightId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDatabaseName returns DatabaseName +// GetDatabaseName returns DatabaseName func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetDatabaseName() *string { return m.DatabaseName } -//GetDatabaseDisplayName returns DatabaseDisplayName +// GetDatabaseDisplayName returns DatabaseDisplayName func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetDatabaseDisplayName() *string { return m.DatabaseDisplayName } -//GetDatabaseType returns DatabaseType +// GetDatabaseType returns DatabaseType func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetDatabaseType() *string { return m.DatabaseType } -//GetDatabaseVersion returns DatabaseVersion +// GetDatabaseVersion returns DatabaseVersion func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetDatabaseVersion() *string { return m.DatabaseVersion } -//GetCdbName returns CdbName +// GetCdbName returns CdbName func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetCdbName() *string { return m.CdbName } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetProcessorCount returns ProcessorCount +// GetProcessorCount returns ProcessorCount func (m PeComanagedManagedExternalDatabaseConfigurationSummary) GetProcessorCount() *int { return m.ProcessorCount } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_autonomous_database_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_autonomous_database_insight_details.go index 2e24673e922..828315935ea 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_autonomous_database_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_autonomous_database_insight_details.go @@ -30,12 +30,12 @@ type UpdateAutonomousDatabaseInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateAutonomousDatabaseInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateAutonomousDatabaseInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_database_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_database_insight_details.go index 16e752f70cd..1e9fc529dbe 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_database_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_database_insight_details.go @@ -30,12 +30,12 @@ type UpdateEmManagedExternalDatabaseInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateEmManagedExternalDatabaseInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateEmManagedExternalDatabaseInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_exadata_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_exadata_insight_details.go index f8c1b1dbbe6..40100fee58e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_exadata_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_exadata_insight_details.go @@ -33,12 +33,12 @@ type UpdateEmManagedExternalExadataInsightDetails struct { IsAutoSyncEnabled *bool `mandatory:"false" json:"isAutoSyncEnabled"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateEmManagedExternalExadataInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateEmManagedExternalExadataInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_host_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_host_insight_details.go index e2a8b3b7a9c..0f88078737d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_host_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_em_managed_external_host_insight_details.go @@ -30,12 +30,12 @@ type UpdateEmManagedExternalHostInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateEmManagedExternalHostInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateEmManagedExternalHostInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_cloud_host_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_cloud_host_insight_details.go index 5c5230e4d3a..bb7f27d6671 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_cloud_host_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_cloud_host_insight_details.go @@ -30,12 +30,12 @@ type UpdateMacsManagedCloudHostInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateMacsManagedCloudHostInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateMacsManagedCloudHostInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_external_database_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_external_database_insight_details.go index dfc7ffce5d8..5c33276498b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_external_database_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_external_database_insight_details.go @@ -30,12 +30,12 @@ type UpdateMacsManagedExternalDatabaseInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateMacsManagedExternalDatabaseInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateMacsManagedExternalDatabaseInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_external_host_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_external_host_insight_details.go index 56573ba0855..74c08e6fd86 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_external_host_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_macs_managed_external_host_insight_details.go @@ -30,12 +30,12 @@ type UpdateMacsManagedExternalHostInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateMacsManagedExternalHostInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateMacsManagedExternalHostInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_opsi_ux_configuration_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_opsi_ux_configuration_details.go index 83faefcb150..fb3971a4d60 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_opsi_ux_configuration_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_opsi_ux_configuration_details.go @@ -44,32 +44,32 @@ type UpdateOpsiUxConfigurationDetails struct { ConfigItems []UpdateConfigurationItemDetails `mandatory:"false" json:"configItems"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateOpsiUxConfigurationDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateOpsiUxConfigurationDetails) GetDescription() *string { return m.Description } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateOpsiUxConfigurationDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateOpsiUxConfigurationDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m UpdateOpsiUxConfigurationDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } -//GetConfigItems returns ConfigItems +// GetConfigItems returns ConfigItems func (m UpdateOpsiUxConfigurationDetails) GetConfigItems() []UpdateConfigurationItemDetails { return m.ConfigItems } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_pe_comanaged_database_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_pe_comanaged_database_insight_details.go index 64455d1e6e3..3d9410235f6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_pe_comanaged_database_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_pe_comanaged_database_insight_details.go @@ -30,12 +30,12 @@ type UpdatePeComanagedDatabaseInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdatePeComanagedDatabaseInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdatePeComanagedDatabaseInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_pe_comanaged_exadata_insight_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_pe_comanaged_exadata_insight_details.go index 64e49f171dc..eaab7158e07 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_pe_comanaged_exadata_insight_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/update_pe_comanaged_exadata_insight_details.go @@ -30,12 +30,12 @@ type UpdatePeComanagedExadataInsightDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdatePeComanagedExadataInsightDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdatePeComanagedExadataInsightDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/ux_configuration_items_collection.go b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/ux_configuration_items_collection.go index b25cc3d0b0d..d6467b75aab 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/opsi/ux_configuration_items_collection.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/opsi/ux_configuration_items_collection.go @@ -25,7 +25,7 @@ type UxConfigurationItemsCollection struct { ConfigItems []ConfigurationItemSummary `mandatory:"false" json:"configItems"` } -//GetConfigItems returns ConfigItems +// GetConfigItems returns ConfigItems func (m UxConfigurationItemsCollection) GetConfigItems() []ConfigurationItemSummary { return m.ConfigItems } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/optimizer/optimizer_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/optimizer/optimizer_client.go index 878be56d40c..3fb3908eece 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/optimizer/optimizer_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/optimizer/optimizer_client.go @@ -95,7 +95,7 @@ func (client *OptimizerClient) ConfigurationProvider() *common.ConfigurationProv // BulkApplyRecommendations Applies the specified recommendations to the resources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/BulkApplyRecommendations.go.html to see an example of how to use BulkApplyRecommendations API. func (client OptimizerClient) BulkApplyRecommendations(ctx context.Context, request BulkApplyRecommendationsRequest) (response BulkApplyRecommendationsResponse, err error) { @@ -157,7 +157,7 @@ func (client OptimizerClient) bulkApplyRecommendations(ctx context.Context, requ // CreateProfile Creates a new profile. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/CreateProfile.go.html to see an example of how to use CreateProfile API. func (client OptimizerClient) CreateProfile(ctx context.Context, request CreateProfileRequest) (response CreateProfileResponse, err error) { @@ -219,7 +219,7 @@ func (client OptimizerClient) createProfile(ctx context.Context, request common. // DeleteProfile Deletes the specified profile. Uses the profile's OCID to determine which profile to delete. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/DeleteProfile.go.html to see an example of how to use DeleteProfile API. func (client OptimizerClient) DeleteProfile(ctx context.Context, request DeleteProfileRequest) (response DeleteProfileResponse, err error) { @@ -276,7 +276,7 @@ func (client OptimizerClient) deleteProfile(ctx context.Context, request common. // FilterResourceActions Queries the Cloud Advisor resource actions that are supported. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/FilterResourceActions.go.html to see an example of how to use FilterResourceActions API. func (client OptimizerClient) FilterResourceActions(ctx context.Context, request FilterResourceActionsRequest) (response FilterResourceActionsResponse, err error) { @@ -333,7 +333,7 @@ func (client OptimizerClient) filterResourceActions(ctx context.Context, request // GetCategory Gets the category that corresponds to the specified OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/GetCategory.go.html to see an example of how to use GetCategory API. func (client OptimizerClient) GetCategory(ctx context.Context, request GetCategoryRequest) (response GetCategoryResponse, err error) { @@ -390,7 +390,7 @@ func (client OptimizerClient) getCategory(ctx context.Context, request common.OC // GetEnrollmentStatus Gets the Cloud Advisor enrollment status. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/GetEnrollmentStatus.go.html to see an example of how to use GetEnrollmentStatus API. func (client OptimizerClient) GetEnrollmentStatus(ctx context.Context, request GetEnrollmentStatusRequest) (response GetEnrollmentStatusResponse, err error) { @@ -447,7 +447,7 @@ func (client OptimizerClient) getEnrollmentStatus(ctx context.Context, request c // GetProfile Gets the specified profile's information. Uses the profile's OCID to determine which profile to retrieve. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/GetProfile.go.html to see an example of how to use GetProfile API. func (client OptimizerClient) GetProfile(ctx context.Context, request GetProfileRequest) (response GetProfileResponse, err error) { @@ -504,7 +504,7 @@ func (client OptimizerClient) getProfile(ctx context.Context, request common.OCI // GetRecommendation Gets the recommendation for the specified OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/GetRecommendation.go.html to see an example of how to use GetRecommendation API. func (client OptimizerClient) GetRecommendation(ctx context.Context, request GetRecommendationRequest) (response GetRecommendationResponse, err error) { @@ -561,7 +561,7 @@ func (client OptimizerClient) getRecommendation(ctx context.Context, request com // GetResourceAction Gets the resource action that corresponds to the specified OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/GetResourceAction.go.html to see an example of how to use GetResourceAction API. func (client OptimizerClient) GetResourceAction(ctx context.Context, request GetResourceActionRequest) (response GetResourceActionResponse, err error) { @@ -618,7 +618,7 @@ func (client OptimizerClient) getResourceAction(ctx context.Context, request com // GetWorkRequest Gets the status of the work request associated with the specified ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client OptimizerClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -675,7 +675,7 @@ func (client OptimizerClient) getWorkRequest(ctx context.Context, request common // ListCategories Lists the supported Cloud Advisor categories. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListCategories.go.html to see an example of how to use ListCategories API. func (client OptimizerClient) ListCategories(ctx context.Context, request ListCategoriesRequest) (response ListCategoriesResponse, err error) { @@ -732,7 +732,7 @@ func (client OptimizerClient) listCategories(ctx context.Context, request common // ListEnrollmentStatuses Lists the Cloud Advisor enrollment statuses. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListEnrollmentStatuses.go.html to see an example of how to use ListEnrollmentStatuses API. func (client OptimizerClient) ListEnrollmentStatuses(ctx context.Context, request ListEnrollmentStatusesRequest) (response ListEnrollmentStatusesResponse, err error) { @@ -790,7 +790,7 @@ func (client OptimizerClient) listEnrollmentStatuses(ctx context.Context, reques // ListHistories Lists changes to the recommendations based on user activity. // For example, lists when recommendations have been implemented, dismissed, postponed, or reactivated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListHistories.go.html to see an example of how to use ListHistories API. func (client OptimizerClient) ListHistories(ctx context.Context, request ListHistoriesRequest) (response ListHistoriesResponse, err error) { @@ -847,7 +847,7 @@ func (client OptimizerClient) listHistories(ctx context.Context, request common. // ListProfileLevels Lists the existing profile levels. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListProfileLevels.go.html to see an example of how to use ListProfileLevels API. func (client OptimizerClient) ListProfileLevels(ctx context.Context, request ListProfileLevelsRequest) (response ListProfileLevelsResponse, err error) { @@ -904,7 +904,7 @@ func (client OptimizerClient) listProfileLevels(ctx context.Context, request com // ListProfiles Lists the existing profiles. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListProfiles.go.html to see an example of how to use ListProfiles API. func (client OptimizerClient) ListProfiles(ctx context.Context, request ListProfilesRequest) (response ListProfilesResponse, err error) { @@ -961,7 +961,7 @@ func (client OptimizerClient) listProfiles(ctx context.Context, request common.O // ListRecommendationStrategies Lists the existing strategies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListRecommendationStrategies.go.html to see an example of how to use ListRecommendationStrategies API. func (client OptimizerClient) ListRecommendationStrategies(ctx context.Context, request ListRecommendationStrategiesRequest) (response ListRecommendationStrategiesResponse, err error) { @@ -1018,7 +1018,7 @@ func (client OptimizerClient) listRecommendationStrategies(ctx context.Context, // ListRecommendations Lists the Cloud Advisor recommendations that are currently supported. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListRecommendations.go.html to see an example of how to use ListRecommendations API. func (client OptimizerClient) ListRecommendations(ctx context.Context, request ListRecommendationsRequest) (response ListRecommendationsResponse, err error) { @@ -1075,7 +1075,7 @@ func (client OptimizerClient) listRecommendations(ctx context.Context, request c // ListResourceActionQueryableFields Lists the fields that are indexed for querying and their associated value types. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListResourceActionQueryableFields.go.html to see an example of how to use ListResourceActionQueryableFields API. func (client OptimizerClient) ListResourceActionQueryableFields(ctx context.Context, request ListResourceActionQueryableFieldsRequest) (response ListResourceActionQueryableFieldsResponse, err error) { @@ -1132,7 +1132,7 @@ func (client OptimizerClient) listResourceActionQueryableFields(ctx context.Cont // ListResourceActions Lists the Cloud Advisor resource actions that are supported. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListResourceActions.go.html to see an example of how to use ListResourceActions API. func (client OptimizerClient) ListResourceActions(ctx context.Context, request ListResourceActionsRequest) (response ListResourceActionsResponse, err error) { @@ -1189,7 +1189,7 @@ func (client OptimizerClient) listResourceActions(ctx context.Context, request c // ListWorkRequestErrors Lists errors associated with the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client OptimizerClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -1246,7 +1246,7 @@ func (client OptimizerClient) listWorkRequestErrors(ctx context.Context, request // ListWorkRequestLogs Lists the logs associated with the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client OptimizerClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -1303,7 +1303,7 @@ func (client OptimizerClient) listWorkRequestLogs(ctx context.Context, request c // ListWorkRequests Lists the work requests in the tenancy. The tenancy is the root compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client OptimizerClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -1360,7 +1360,7 @@ func (client OptimizerClient) listWorkRequests(ctx context.Context, request comm // UpdateEnrollmentStatus Updates the enrollment status of the tenancy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/UpdateEnrollmentStatus.go.html to see an example of how to use UpdateEnrollmentStatus API. func (client OptimizerClient) UpdateEnrollmentStatus(ctx context.Context, request UpdateEnrollmentStatusRequest) (response UpdateEnrollmentStatusResponse, err error) { @@ -1417,7 +1417,7 @@ func (client OptimizerClient) updateEnrollmentStatus(ctx context.Context, reques // UpdateProfile Updates the specified profile. Uses the profile's OCID to determine which profile to update. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/UpdateProfile.go.html to see an example of how to use UpdateProfile API. func (client OptimizerClient) UpdateProfile(ctx context.Context, request UpdateProfileRequest) (response UpdateProfileResponse, err error) { @@ -1474,11 +1474,11 @@ func (client OptimizerClient) updateProfile(ctx context.Context, request common. // UpdateRecommendation Updates the recommendation that corresponds to the specified OCID. // Use this operation to implement the following actions: -// * Postpone recommendation -// * Dismiss recommendation -// * Reactivate recommendation +// - Postpone recommendation +// - Dismiss recommendation +// - Reactivate recommendation // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/UpdateRecommendation.go.html to see an example of how to use UpdateRecommendation API. func (client OptimizerClient) UpdateRecommendation(ctx context.Context, request UpdateRecommendationRequest) (response UpdateRecommendationResponse, err error) { @@ -1535,11 +1535,11 @@ func (client OptimizerClient) updateRecommendation(ctx context.Context, request // UpdateResourceAction Updates the resource action that corresponds to the specified OCID. // Use this operation to implement the following actions: -// * Postpone resource action -// * Ignore resource action -// * Reactivate resource action +// - Postpone resource action +// - Ignore resource action +// - Reactivate resource action // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/optimizer/UpdateResourceAction.go.html to see an example of how to use UpdateResourceAction API. func (client OptimizerClient) UpdateResourceAction(ctx context.Context, request UpdateResourceActionRequest) (response UpdateResourceActionResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/kernel_crash_event.go b/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/kernel_crash_event.go index 5793b0fbc05..731381effa2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/kernel_crash_event.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/kernel_crash_event.go @@ -70,57 +70,57 @@ type KernelCrashEvent struct { System *CrashEventSystemInformation `mandatory:"false" json:"system"` } -//GetId returns Id +// GetId returns Id func (m KernelCrashEvent) GetId() *string { return m.Id } -//GetInstanceId returns InstanceId +// GetInstanceId returns InstanceId func (m KernelCrashEvent) GetInstanceId() *string { return m.InstanceId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m KernelCrashEvent) GetCompartmentId() *string { return m.CompartmentId } -//GetTenancyId returns TenancyId +// GetTenancyId returns TenancyId func (m KernelCrashEvent) GetTenancyId() *string { return m.TenancyId } -//GetSummary returns Summary +// GetSummary returns Summary func (m KernelCrashEvent) GetSummary() *string { return m.Summary } -//GetTimestamp returns Timestamp +// GetTimestamp returns Timestamp func (m KernelCrashEvent) GetTimestamp() *common.SDKTime { return m.Timestamp } -//GetEventFingerprint returns EventFingerprint +// GetEventFingerprint returns EventFingerprint func (m KernelCrashEvent) GetEventFingerprint() *string { return m.EventFingerprint } -//GetCount returns Count +// GetCount returns Count func (m KernelCrashEvent) GetCount() *int { return m.Count } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m KernelCrashEvent) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m KernelCrashEvent) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m KernelCrashEvent) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/kernel_oops_event.go b/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/kernel_oops_event.go index 496386a040b..660f2c54f47 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/kernel_oops_event.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/kernel_oops_event.go @@ -70,57 +70,57 @@ type KernelOopsEvent struct { System *CrashEventSystemInformation `mandatory:"false" json:"system"` } -//GetId returns Id +// GetId returns Id func (m KernelOopsEvent) GetId() *string { return m.Id } -//GetInstanceId returns InstanceId +// GetInstanceId returns InstanceId func (m KernelOopsEvent) GetInstanceId() *string { return m.InstanceId } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m KernelOopsEvent) GetCompartmentId() *string { return m.CompartmentId } -//GetTenancyId returns TenancyId +// GetTenancyId returns TenancyId func (m KernelOopsEvent) GetTenancyId() *string { return m.TenancyId } -//GetSummary returns Summary +// GetSummary returns Summary func (m KernelOopsEvent) GetSummary() *string { return m.Summary } -//GetTimestamp returns Timestamp +// GetTimestamp returns Timestamp func (m KernelOopsEvent) GetTimestamp() *common.SDKTime { return m.Timestamp } -//GetEventFingerprint returns EventFingerprint +// GetEventFingerprint returns EventFingerprint func (m KernelOopsEvent) GetEventFingerprint() *string { return m.EventFingerprint } -//GetCount returns Count +// GetCount returns Count func (m KernelOopsEvent) GetCount() *int { return m.Count } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m KernelOopsEvent) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m KernelOopsEvent) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m KernelOopsEvent) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/osmanagement_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/osmanagement_client.go index 05392aa937b..7f5a2974019 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/osmanagement_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/osmanagement_client.go @@ -94,7 +94,7 @@ func (client *OsManagementClient) ConfigurationProvider() *common.ConfigurationP // AddPackagesToSoftwareSource Adds a given list of Software Packages to a specific Software Source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/AddPackagesToSoftwareSource.go.html to see an example of how to use AddPackagesToSoftwareSource API. func (client OsManagementClient) AddPackagesToSoftwareSource(ctx context.Context, request AddPackagesToSoftwareSourceRequest) (response AddPackagesToSoftwareSourceResponse, err error) { @@ -153,7 +153,7 @@ func (client OsManagementClient) addPackagesToSoftwareSource(ctx context.Context // source has been added, then packages from that software source can be // installed on the managed instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/AttachChildSoftwareSourceToManagedInstance.go.html to see an example of how to use AttachChildSoftwareSourceToManagedInstance API. func (client OsManagementClient) AttachChildSoftwareSourceToManagedInstance(ctx context.Context, request AttachChildSoftwareSourceToManagedInstanceRequest) (response AttachChildSoftwareSourceToManagedInstanceResponse, err error) { @@ -218,7 +218,7 @@ func (client OsManagementClient) attachChildSoftwareSourceToManagedInstance(ctx // Instance Group which will then apply to all Managed Instances in the // group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/AttachManagedInstanceToManagedInstanceGroup.go.html to see an example of how to use AttachManagedInstanceToManagedInstanceGroup API. func (client OsManagementClient) AttachManagedInstanceToManagedInstanceGroup(ctx context.Context, request AttachManagedInstanceToManagedInstanceGroupRequest) (response AttachManagedInstanceToManagedInstanceGroupResponse, err error) { @@ -283,7 +283,7 @@ func (client OsManagementClient) attachManagedInstanceToManagedInstanceGroup(ctx // installed on the managed instance. Software sources that have this // software source as a parent will be able to be added to this managed instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/AttachParentSoftwareSourceToManagedInstance.go.html to see an example of how to use AttachParentSoftwareSourceToManagedInstance API. func (client OsManagementClient) AttachParentSoftwareSourceToManagedInstance(ctx context.Context, request AttachParentSoftwareSourceToManagedInstanceRequest) (response AttachParentSoftwareSourceToManagedInstanceResponse, err error) { @@ -346,7 +346,7 @@ func (client OsManagementClient) attachParentSoftwareSourceToManagedInstance(ctx // ChangeManagedInstanceGroupCompartment Moves a resource into a different compartment. When provided, If-Match // is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ChangeManagedInstanceGroupCompartment.go.html to see an example of how to use ChangeManagedInstanceGroupCompartment API. func (client OsManagementClient) ChangeManagedInstanceGroupCompartment(ctx context.Context, request ChangeManagedInstanceGroupCompartmentRequest) (response ChangeManagedInstanceGroupCompartmentResponse, err error) { @@ -409,7 +409,7 @@ func (client OsManagementClient) changeManagedInstanceGroupCompartment(ctx conte // ChangeScheduledJobCompartment Moves a resource into a different compartment. When provided, If-Match // is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ChangeScheduledJobCompartment.go.html to see an example of how to use ChangeScheduledJobCompartment API. func (client OsManagementClient) ChangeScheduledJobCompartment(ctx context.Context, request ChangeScheduledJobCompartmentRequest) (response ChangeScheduledJobCompartmentResponse, err error) { @@ -472,7 +472,7 @@ func (client OsManagementClient) changeScheduledJobCompartment(ctx context.Conte // ChangeSoftwareSourceCompartment Moves a resource into a different compartment. When provided, If-Match // is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ChangeSoftwareSourceCompartment.go.html to see an example of how to use ChangeSoftwareSourceCompartment API. func (client OsManagementClient) ChangeSoftwareSourceCompartment(ctx context.Context, request ChangeSoftwareSourceCompartmentRequest) (response ChangeSoftwareSourceCompartmentResponse, err error) { @@ -536,7 +536,7 @@ func (client OsManagementClient) changeSoftwareSourceCompartment(ctx context.Con // This will not contain any managed instances after it is first created, // and they must be added later. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/CreateManagedInstanceGroup.go.html to see an example of how to use CreateManagedInstanceGroup API. func (client OsManagementClient) CreateManagedInstanceGroup(ctx context.Context, request CreateManagedInstanceGroupRequest) (response CreateManagedInstanceGroupResponse, err error) { @@ -601,7 +601,7 @@ func (client OsManagementClient) createManagedInstanceGroup(ctx context.Context, // as a one-time execution in the future, or as a recurring execution // that repeats on a defined interval. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/CreateScheduledJob.go.html to see an example of how to use CreateScheduledJob API. func (client OsManagementClient) CreateScheduledJob(ctx context.Context, request CreateScheduledJobRequest) (response CreateScheduledJobResponse, err error) { @@ -665,7 +665,7 @@ func (client OsManagementClient) createScheduledJob(ctx context.Context, request // This will not contain any packages after it is first created, // and they must be added later. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/CreateSoftwareSource.go.html to see an example of how to use CreateSoftwareSource API. func (client OsManagementClient) CreateSoftwareSource(ctx context.Context, request CreateSoftwareSourceRequest) (response CreateSoftwareSourceResponse, err error) { @@ -727,7 +727,7 @@ func (client OsManagementClient) createSoftwareSource(ctx context.Context, reque // DeleteManagedInstanceGroup Deletes a Managed Instance Group from the management system // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/DeleteManagedInstanceGroup.go.html to see an example of how to use DeleteManagedInstanceGroup API. func (client OsManagementClient) DeleteManagedInstanceGroup(ctx context.Context, request DeleteManagedInstanceGroupRequest) (response DeleteManagedInstanceGroupResponse, err error) { @@ -784,7 +784,7 @@ func (client OsManagementClient) deleteManagedInstanceGroup(ctx context.Context, // DeleteScheduledJob Cancels an existing Scheduled Job on the management system // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/DeleteScheduledJob.go.html to see an example of how to use DeleteScheduledJob API. func (client OsManagementClient) DeleteScheduledJob(ctx context.Context, request DeleteScheduledJobRequest) (response DeleteScheduledJobResponse, err error) { @@ -841,7 +841,7 @@ func (client OsManagementClient) deleteScheduledJob(ctx context.Context, request // DeleteSoftwareSource Deletes a custom Software Source on the management system // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/DeleteSoftwareSource.go.html to see an example of how to use DeleteSoftwareSource API. func (client OsManagementClient) DeleteSoftwareSource(ctx context.Context, request DeleteSoftwareSourceRequest) (response DeleteSoftwareSourceResponse, err error) { @@ -899,7 +899,7 @@ func (client OsManagementClient) deleteSoftwareSource(ctx context.Context, reque // DetachChildSoftwareSourceFromManagedInstance Removes a child software source from a managed instance. Packages will no longer be able to be // installed from these software sources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/DetachChildSoftwareSourceFromManagedInstance.go.html to see an example of how to use DetachChildSoftwareSourceFromManagedInstance API. func (client OsManagementClient) DetachChildSoftwareSourceFromManagedInstance(ctx context.Context, request DetachChildSoftwareSourceFromManagedInstanceRequest) (response DetachChildSoftwareSourceFromManagedInstanceResponse, err error) { @@ -961,7 +961,7 @@ func (client OsManagementClient) detachChildSoftwareSourceFromManagedInstance(ct // DetachManagedInstanceFromManagedInstanceGroup Removes a Managed Instance from a Managed Instance Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/DetachManagedInstanceFromManagedInstanceGroup.go.html to see an example of how to use DetachManagedInstanceFromManagedInstanceGroup API. func (client OsManagementClient) DetachManagedInstanceFromManagedInstanceGroup(ctx context.Context, request DetachManagedInstanceFromManagedInstanceGroupRequest) (response DetachManagedInstanceFromManagedInstanceGroupResponse, err error) { @@ -1024,7 +1024,7 @@ func (client OsManagementClient) detachManagedInstanceFromManagedInstanceGroup(c // DetachParentSoftwareSourceFromManagedInstance Removes a software source from a managed instance. All child software sources will also be removed // from the managed instance. Packages will no longer be able to be installed from these software sources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/DetachParentSoftwareSourceFromManagedInstance.go.html to see an example of how to use DetachParentSoftwareSourceFromManagedInstance API. func (client OsManagementClient) DetachParentSoftwareSourceFromManagedInstance(ctx context.Context, request DetachParentSoftwareSourceFromManagedInstanceRequest) (response DetachParentSoftwareSourceFromManagedInstanceResponse, err error) { @@ -1089,7 +1089,7 @@ func (client OsManagementClient) detachParentSoftwareSourceFromManagedInstance(c // contained by the stream. All installed profiles must be removed prior // to disabling a module stream. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/DisableModuleStreamOnManagedInstance.go.html to see an example of how to use DisableModuleStreamOnManagedInstance API. func (client OsManagementClient) DisableModuleStreamOnManagedInstance(ctx context.Context, request DisableModuleStreamOnManagedInstanceRequest) (response DisableModuleStreamOnManagedInstanceResponse, err error) { @@ -1155,7 +1155,7 @@ func (client OsManagementClient) disableModuleStreamOnManagedInstance(ctx contex // succeed. Attempting to enable a different stream for a module that // already has a stream enabled results in an error. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/EnableModuleStreamOnManagedInstance.go.html to see an example of how to use EnableModuleStreamOnManagedInstance API. func (client OsManagementClient) EnableModuleStreamOnManagedInstance(ctx context.Context, request EnableModuleStreamOnManagedInstanceRequest) (response EnableModuleStreamOnManagedInstanceResponse, err error) { @@ -1217,7 +1217,7 @@ func (client OsManagementClient) enableModuleStreamOnManagedInstance(ctx context // GetErratum Returns a specific erratum. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetErratum.go.html to see an example of how to use GetErratum API. func (client OsManagementClient) GetErratum(ctx context.Context, request GetErratumRequest) (response GetErratumResponse, err error) { @@ -1274,7 +1274,7 @@ func (client OsManagementClient) getErratum(ctx context.Context, request common. // GetManagedInstance Returns a specific Managed Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetManagedInstance.go.html to see an example of how to use GetManagedInstance API. func (client OsManagementClient) GetManagedInstance(ctx context.Context, request GetManagedInstanceRequest) (response GetManagedInstanceResponse, err error) { @@ -1331,7 +1331,7 @@ func (client OsManagementClient) getManagedInstance(ctx context.Context, request // GetManagedInstanceGroup Returns a specific Managed Instance Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetManagedInstanceGroup.go.html to see an example of how to use GetManagedInstanceGroup API. func (client OsManagementClient) GetManagedInstanceGroup(ctx context.Context, request GetManagedInstanceGroupRequest) (response GetManagedInstanceGroupResponse, err error) { @@ -1388,7 +1388,7 @@ func (client OsManagementClient) getManagedInstanceGroup(ctx context.Context, re // GetModuleStream Retrieve a detailed description of a module stream from a software source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetModuleStream.go.html to see an example of how to use GetModuleStream API. func (client OsManagementClient) GetModuleStream(ctx context.Context, request GetModuleStreamRequest) (response GetModuleStreamResponse, err error) { @@ -1445,7 +1445,7 @@ func (client OsManagementClient) getModuleStream(ctx context.Context, request co // GetModuleStreamProfile Retrieve a detailed description of a module stream profile from a software source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetModuleStreamProfile.go.html to see an example of how to use GetModuleStreamProfile API. func (client OsManagementClient) GetModuleStreamProfile(ctx context.Context, request GetModuleStreamProfileRequest) (response GetModuleStreamProfileResponse, err error) { @@ -1502,7 +1502,7 @@ func (client OsManagementClient) getModuleStreamProfile(ctx context.Context, req // GetScheduledJob Gets the detailed information for the Scheduled Job with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetScheduledJob.go.html to see an example of how to use GetScheduledJob API. func (client OsManagementClient) GetScheduledJob(ctx context.Context, request GetScheduledJobRequest) (response GetScheduledJobResponse, err error) { @@ -1559,7 +1559,7 @@ func (client OsManagementClient) getScheduledJob(ctx context.Context, request co // GetSoftwarePackage Returns a specific Software Package. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetSoftwarePackage.go.html to see an example of how to use GetSoftwarePackage API. func (client OsManagementClient) GetSoftwarePackage(ctx context.Context, request GetSoftwarePackageRequest) (response GetSoftwarePackageResponse, err error) { @@ -1616,7 +1616,7 @@ func (client OsManagementClient) getSoftwarePackage(ctx context.Context, request // GetSoftwareSource Returns a specific Software Source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetSoftwareSource.go.html to see an example of how to use GetSoftwareSource API. func (client OsManagementClient) GetSoftwareSource(ctx context.Context, request GetSoftwareSourceRequest) (response GetSoftwareSourceResponse, err error) { @@ -1673,7 +1673,7 @@ func (client OsManagementClient) getSoftwareSource(ctx context.Context, request // GetWindowsUpdate Returns a Windows Update object. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetWindowsUpdate.go.html to see an example of how to use GetWindowsUpdate API. func (client OsManagementClient) GetWindowsUpdate(ctx context.Context, request GetWindowsUpdateRequest) (response GetWindowsUpdateResponse, err error) { @@ -1730,7 +1730,7 @@ func (client OsManagementClient) getWindowsUpdate(ctx context.Context, request c // GetWorkRequest Gets the detailed information for the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client OsManagementClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -1787,7 +1787,7 @@ func (client OsManagementClient) getWorkRequest(ctx context.Context, request com // InstallAllPackageUpdatesOnManagedInstance Install all of the available package updates for the managed instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/InstallAllPackageUpdatesOnManagedInstance.go.html to see an example of how to use InstallAllPackageUpdatesOnManagedInstance API. func (client OsManagementClient) InstallAllPackageUpdatesOnManagedInstance(ctx context.Context, request InstallAllPackageUpdatesOnManagedInstanceRequest) (response InstallAllPackageUpdatesOnManagedInstanceResponse, err error) { @@ -1849,7 +1849,7 @@ func (client OsManagementClient) installAllPackageUpdatesOnManagedInstance(ctx c // InstallAllUpdatesOnManagedInstanceGroup Install all of the available updates for the Managed Instance Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/InstallAllUpdatesOnManagedInstanceGroup.go.html to see an example of how to use InstallAllUpdatesOnManagedInstanceGroup API. func (client OsManagementClient) InstallAllUpdatesOnManagedInstanceGroup(ctx context.Context, request InstallAllUpdatesOnManagedInstanceGroupRequest) (response InstallAllUpdatesOnManagedInstanceGroupResponse, err error) { @@ -1911,7 +1911,7 @@ func (client OsManagementClient) installAllUpdatesOnManagedInstanceGroup(ctx con // InstallAllWindowsUpdatesOnManagedInstance Install all of the available Windows updates for the managed instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/InstallAllWindowsUpdatesOnManagedInstance.go.html to see an example of how to use InstallAllWindowsUpdatesOnManagedInstance API. func (client OsManagementClient) InstallAllWindowsUpdatesOnManagedInstance(ctx context.Context, request InstallAllWindowsUpdatesOnManagedInstanceRequest) (response InstallAllWindowsUpdatesOnManagedInstanceResponse, err error) { @@ -1975,7 +1975,7 @@ func (client OsManagementClient) installAllWindowsUpdatesOnManagedInstance(ctx c // enabled before a profile can be installed. If a module stream // defines multiple profiles, each one can be installed independently. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/InstallModuleStreamProfileOnManagedInstance.go.html to see an example of how to use InstallModuleStreamProfileOnManagedInstance API. func (client OsManagementClient) InstallModuleStreamProfileOnManagedInstance(ctx context.Context, request InstallModuleStreamProfileOnManagedInstanceRequest) (response InstallModuleStreamProfileOnManagedInstanceResponse, err error) { @@ -2037,7 +2037,7 @@ func (client OsManagementClient) installModuleStreamProfileOnManagedInstance(ctx // InstallPackageOnManagedInstance Installs a package on a managed instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/InstallPackageOnManagedInstance.go.html to see an example of how to use InstallPackageOnManagedInstance API. func (client OsManagementClient) InstallPackageOnManagedInstance(ctx context.Context, request InstallPackageOnManagedInstanceRequest) (response InstallPackageOnManagedInstanceResponse, err error) { @@ -2099,7 +2099,7 @@ func (client OsManagementClient) installPackageOnManagedInstance(ctx context.Con // InstallPackageUpdateOnManagedInstance Updates a package on a managed instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/InstallPackageUpdateOnManagedInstance.go.html to see an example of how to use InstallPackageUpdateOnManagedInstance API. func (client OsManagementClient) InstallPackageUpdateOnManagedInstance(ctx context.Context, request InstallPackageUpdateOnManagedInstanceRequest) (response InstallPackageUpdateOnManagedInstanceResponse, err error) { @@ -2161,7 +2161,7 @@ func (client OsManagementClient) installPackageUpdateOnManagedInstance(ctx conte // InstallWindowsUpdateOnManagedInstance Installs a Windows update on a managed instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/InstallWindowsUpdateOnManagedInstance.go.html to see an example of how to use InstallWindowsUpdateOnManagedInstance API. func (client OsManagementClient) InstallWindowsUpdateOnManagedInstance(ctx context.Context, request InstallWindowsUpdateOnManagedInstanceRequest) (response InstallWindowsUpdateOnManagedInstanceResponse, err error) { @@ -2223,7 +2223,7 @@ func (client OsManagementClient) installWindowsUpdateOnManagedInstance(ctx conte // ListAvailablePackagesForManagedInstance Returns a list of packages available for install on the Managed Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListAvailablePackagesForManagedInstance.go.html to see an example of how to use ListAvailablePackagesForManagedInstance API. func (client OsManagementClient) ListAvailablePackagesForManagedInstance(ctx context.Context, request ListAvailablePackagesForManagedInstanceRequest) (response ListAvailablePackagesForManagedInstanceResponse, err error) { @@ -2280,7 +2280,7 @@ func (client OsManagementClient) listAvailablePackagesForManagedInstance(ctx con // ListAvailableSoftwareSourcesForManagedInstance Returns a list of available software sources for a Managed Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListAvailableSoftwareSourcesForManagedInstance.go.html to see an example of how to use ListAvailableSoftwareSourcesForManagedInstance API. func (client OsManagementClient) ListAvailableSoftwareSourcesForManagedInstance(ctx context.Context, request ListAvailableSoftwareSourcesForManagedInstanceRequest) (response ListAvailableSoftwareSourcesForManagedInstanceResponse, err error) { @@ -2337,7 +2337,7 @@ func (client OsManagementClient) listAvailableSoftwareSourcesForManagedInstance( // ListAvailableUpdatesForManagedInstance Returns a list of available updates for a Managed Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListAvailableUpdatesForManagedInstance.go.html to see an example of how to use ListAvailableUpdatesForManagedInstance API. func (client OsManagementClient) ListAvailableUpdatesForManagedInstance(ctx context.Context, request ListAvailableUpdatesForManagedInstanceRequest) (response ListAvailableUpdatesForManagedInstanceResponse, err error) { @@ -2394,7 +2394,7 @@ func (client OsManagementClient) listAvailableUpdatesForManagedInstance(ctx cont // ListAvailableWindowsUpdatesForManagedInstance Returns a list of available Windows updates for a Managed Instance. This is only applicable to Windows instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListAvailableWindowsUpdatesForManagedInstance.go.html to see an example of how to use ListAvailableWindowsUpdatesForManagedInstance API. func (client OsManagementClient) ListAvailableWindowsUpdatesForManagedInstance(ctx context.Context, request ListAvailableWindowsUpdatesForManagedInstanceRequest) (response ListAvailableWindowsUpdatesForManagedInstanceResponse, err error) { @@ -2451,7 +2451,7 @@ func (client OsManagementClient) listAvailableWindowsUpdatesForManagedInstance(c // ListErrata Returns a list of all of the currently available Errata in the system // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListErrata.go.html to see an example of how to use ListErrata API. func (client OsManagementClient) ListErrata(ctx context.Context, request ListErrataRequest) (response ListErrataResponse, err error) { @@ -2508,7 +2508,7 @@ func (client OsManagementClient) listErrata(ctx context.Context, request common. // ListManagedInstanceErrata Returns a list of errata relevant to the Managed Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListManagedInstanceErrata.go.html to see an example of how to use ListManagedInstanceErrata API. func (client OsManagementClient) ListManagedInstanceErrata(ctx context.Context, request ListManagedInstanceErrataRequest) (response ListManagedInstanceErrataResponse, err error) { @@ -2565,7 +2565,7 @@ func (client OsManagementClient) listManagedInstanceErrata(ctx context.Context, // ListManagedInstanceGroups Returns a list of all Managed Instance Groups. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListManagedInstanceGroups.go.html to see an example of how to use ListManagedInstanceGroups API. func (client OsManagementClient) ListManagedInstanceGroups(ctx context.Context, request ListManagedInstanceGroupsRequest) (response ListManagedInstanceGroupsResponse, err error) { @@ -2622,7 +2622,7 @@ func (client OsManagementClient) listManagedInstanceGroups(ctx context.Context, // ListManagedInstances Returns a list of all Managed Instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListManagedInstances.go.html to see an example of how to use ListManagedInstances API. func (client OsManagementClient) ListManagedInstances(ctx context.Context, request ListManagedInstancesRequest) (response ListManagedInstancesResponse, err error) { @@ -2690,7 +2690,7 @@ func (client OsManagementClient) listManagedInstances(ctx context.Context, reque // without a "moduleName". It is also not valid to supply a "profileName" // without a "streamName". // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListModuleStreamProfiles.go.html to see an example of how to use ListModuleStreamProfiles API. func (client OsManagementClient) ListModuleStreamProfiles(ctx context.Context, request ListModuleStreamProfilesRequest) (response ListModuleStreamProfilesResponse, err error) { @@ -2767,7 +2767,7 @@ func (client OsManagementClient) listModuleStreamProfiles(ctx context.Context, r // When sorting by display name, the result set is sorted first by // module name, then by stream name, and finally by profile name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListModuleStreamProfilesOnManagedInstance.go.html to see an example of how to use ListModuleStreamProfilesOnManagedInstance API. func (client OsManagementClient) ListModuleStreamProfilesOnManagedInstance(ctx context.Context, request ListModuleStreamProfilesOnManagedInstanceRequest) (response ListModuleStreamProfilesOnManagedInstanceResponse, err error) { @@ -2838,7 +2838,7 @@ func (client OsManagementClient) listModuleStreamProfilesOnManagedInstance(ctx c // When sorting by display name, the result set is sorted first by // module name, then by stream name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListModuleStreams.go.html to see an example of how to use ListModuleStreams API. func (client OsManagementClient) ListModuleStreams(ctx context.Context, request ListModuleStreamsRequest) (response ListModuleStreamsResponse, err error) { @@ -2912,7 +2912,7 @@ func (client OsManagementClient) listModuleStreams(ctx context.Context, request // When sorting by the display name, the result set is sorted first // by the module name and then by the stream name. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListModuleStreamsOnManagedInstance.go.html to see an example of how to use ListModuleStreamsOnManagedInstance API. func (client OsManagementClient) ListModuleStreamsOnManagedInstance(ctx context.Context, request ListModuleStreamsOnManagedInstanceRequest) (response ListModuleStreamsOnManagedInstanceResponse, err error) { @@ -2969,7 +2969,7 @@ func (client OsManagementClient) listModuleStreamsOnManagedInstance(ctx context. // ListPackagesInstalledOnManagedInstance Returns a list of installed packages on the Managed Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListPackagesInstalledOnManagedInstance.go.html to see an example of how to use ListPackagesInstalledOnManagedInstance API. func (client OsManagementClient) ListPackagesInstalledOnManagedInstance(ctx context.Context, request ListPackagesInstalledOnManagedInstanceRequest) (response ListPackagesInstalledOnManagedInstanceResponse, err error) { @@ -3026,7 +3026,7 @@ func (client OsManagementClient) listPackagesInstalledOnManagedInstance(ctx cont // ListScheduledJobs Returns a list of all of the currently active Scheduled Jobs in the system // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListScheduledJobs.go.html to see an example of how to use ListScheduledJobs API. func (client OsManagementClient) ListScheduledJobs(ctx context.Context, request ListScheduledJobsRequest) (response ListScheduledJobsResponse, err error) { @@ -3083,7 +3083,7 @@ func (client OsManagementClient) listScheduledJobs(ctx context.Context, request // ListSoftwareSourcePackages Lists Software Packages in a Software Source // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListSoftwareSourcePackages.go.html to see an example of how to use ListSoftwareSourcePackages API. func (client OsManagementClient) ListSoftwareSourcePackages(ctx context.Context, request ListSoftwareSourcePackagesRequest) (response ListSoftwareSourcePackagesResponse, err error) { @@ -3140,7 +3140,7 @@ func (client OsManagementClient) listSoftwareSourcePackages(ctx context.Context, // ListSoftwareSources Returns a list of all Software Sources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListSoftwareSources.go.html to see an example of how to use ListSoftwareSources API. func (client OsManagementClient) ListSoftwareSources(ctx context.Context, request ListSoftwareSourcesRequest) (response ListSoftwareSourcesResponse, err error) { @@ -3197,7 +3197,7 @@ func (client OsManagementClient) listSoftwareSources(ctx context.Context, reques // ListUpcomingScheduledJobs Returns a list of all of the Scheduled Jobs whose next execution time is at or before the specified time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListUpcomingScheduledJobs.go.html to see an example of how to use ListUpcomingScheduledJobs API. func (client OsManagementClient) ListUpcomingScheduledJobs(ctx context.Context, request ListUpcomingScheduledJobsRequest) (response ListUpcomingScheduledJobsResponse, err error) { @@ -3254,7 +3254,7 @@ func (client OsManagementClient) listUpcomingScheduledJobs(ctx context.Context, // ListWindowsUpdates Returns a list of Windows Updates. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListWindowsUpdates.go.html to see an example of how to use ListWindowsUpdates API. func (client OsManagementClient) ListWindowsUpdates(ctx context.Context, request ListWindowsUpdatesRequest) (response ListWindowsUpdatesResponse, err error) { @@ -3311,7 +3311,7 @@ func (client OsManagementClient) listWindowsUpdates(ctx context.Context, request // ListWindowsUpdatesInstalledOnManagedInstance Returns a list of installed Windows updates for a Managed Instance. This is only applicable to Windows instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListWindowsUpdatesInstalledOnManagedInstance.go.html to see an example of how to use ListWindowsUpdatesInstalledOnManagedInstance API. func (client OsManagementClient) ListWindowsUpdatesInstalledOnManagedInstance(ctx context.Context, request ListWindowsUpdatesInstalledOnManagedInstanceRequest) (response ListWindowsUpdatesInstalledOnManagedInstanceResponse, err error) { @@ -3368,7 +3368,7 @@ func (client OsManagementClient) listWindowsUpdatesInstalledOnManagedInstance(ct // ListWorkRequestErrors Gets the errors for the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client OsManagementClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -3425,7 +3425,7 @@ func (client OsManagementClient) listWorkRequestErrors(ctx context.Context, requ // ListWorkRequestLogs Lists the log entries for the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client OsManagementClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -3482,7 +3482,7 @@ func (client OsManagementClient) listWorkRequestLogs(ctx context.Context, reques // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client OsManagementClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -3590,7 +3590,7 @@ func (client OsManagementClient) listWorkRequests(ctx context.Context, request c // contains a structured message containing the results of one // or more operations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ManageModuleStreamsOnManagedInstance.go.html to see an example of how to use ManageModuleStreamsOnManagedInstance API. func (client OsManagementClient) ManageModuleStreamsOnManagedInstance(ctx context.Context, request ManageModuleStreamsOnManagedInstanceRequest) (response ManageModuleStreamsOnManagedInstanceResponse, err error) { @@ -3654,7 +3654,7 @@ func (client OsManagementClient) manageModuleStreamsOnManagedInstance(ctx contex // If a module stream is provided, rather than a fully qualified profile, all // profiles that have been installed for the module stream will be removed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/RemoveModuleStreamProfileFromManagedInstance.go.html to see an example of how to use RemoveModuleStreamProfileFromManagedInstance API. func (client OsManagementClient) RemoveModuleStreamProfileFromManagedInstance(ctx context.Context, request RemoveModuleStreamProfileFromManagedInstanceRequest) (response RemoveModuleStreamProfileFromManagedInstanceResponse, err error) { @@ -3716,7 +3716,7 @@ func (client OsManagementClient) removeModuleStreamProfileFromManagedInstance(ct // RemovePackageFromManagedInstance Removes an installed package from a managed instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/RemovePackageFromManagedInstance.go.html to see an example of how to use RemovePackageFromManagedInstance API. func (client OsManagementClient) RemovePackageFromManagedInstance(ctx context.Context, request RemovePackageFromManagedInstanceRequest) (response RemovePackageFromManagedInstanceResponse, err error) { @@ -3778,7 +3778,7 @@ func (client OsManagementClient) removePackageFromManagedInstance(ctx context.Co // RemovePackagesFromSoftwareSource Removes a given list of Software Packages from a specific Software Source. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/RemovePackagesFromSoftwareSource.go.html to see an example of how to use RemovePackagesFromSoftwareSource API. func (client OsManagementClient) RemovePackagesFromSoftwareSource(ctx context.Context, request RemovePackagesFromSoftwareSourceRequest) (response RemovePackagesFromSoftwareSourceResponse, err error) { @@ -3836,7 +3836,7 @@ func (client OsManagementClient) removePackagesFromSoftwareSource(ctx context.Co // RunScheduledJobNow This will trigger an already created Scheduled Job to being executing // immediately instead of waiting for its next regularly scheduled time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/RunScheduledJobNow.go.html to see an example of how to use RunScheduledJobNow API. func (client OsManagementClient) RunScheduledJobNow(ctx context.Context, request RunScheduledJobNowRequest) (response RunScheduledJobNowResponse, err error) { @@ -3899,7 +3899,7 @@ func (client OsManagementClient) runScheduledJobNow(ctx context.Context, request // SearchSoftwarePackages Searches all of the available Software Sources and returns any/all Software Packages matching // the search criteria. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/SearchSoftwarePackages.go.html to see an example of how to use SearchSoftwarePackages API. func (client OsManagementClient) SearchSoftwarePackages(ctx context.Context, request SearchSoftwarePackagesRequest) (response SearchSoftwarePackagesResponse, err error) { @@ -3957,7 +3957,7 @@ func (client OsManagementClient) searchSoftwarePackages(ctx context.Context, req // SkipNextScheduledJobExecution This will force an already created Scheduled Job to skip its // next regularly scheduled execution // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/SkipNextScheduledJobExecution.go.html to see an example of how to use SkipNextScheduledJobExecution API. func (client OsManagementClient) SkipNextScheduledJobExecution(ctx context.Context, request SkipNextScheduledJobExecutionRequest) (response SkipNextScheduledJobExecutionResponse, err error) { @@ -4022,7 +4022,7 @@ func (client OsManagementClient) skipNextScheduledJobExecution(ctx context.Conte // switching to a new stream will remove the existing packages and // install their counterparts in the new stream. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/SwitchModuleStreamOnManagedInstance.go.html to see an example of how to use SwitchModuleStreamOnManagedInstance API. func (client OsManagementClient) SwitchModuleStreamOnManagedInstance(ctx context.Context, request SwitchModuleStreamOnManagedInstanceRequest) (response SwitchModuleStreamOnManagedInstanceResponse, err error) { @@ -4084,7 +4084,7 @@ func (client OsManagementClient) switchModuleStreamOnManagedInstance(ctx context // UpdateManagedInstance Updates a specific Managed Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/UpdateManagedInstance.go.html to see an example of how to use UpdateManagedInstance API. func (client OsManagementClient) UpdateManagedInstance(ctx context.Context, request UpdateManagedInstanceRequest) (response UpdateManagedInstanceResponse, err error) { @@ -4141,7 +4141,7 @@ func (client OsManagementClient) updateManagedInstance(ctx context.Context, requ // UpdateManagedInstanceGroup Updates a specific Managed Instance Group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/UpdateManagedInstanceGroup.go.html to see an example of how to use UpdateManagedInstanceGroup API. func (client OsManagementClient) UpdateManagedInstanceGroup(ctx context.Context, request UpdateManagedInstanceGroupRequest) (response UpdateManagedInstanceGroupResponse, err error) { @@ -4198,7 +4198,7 @@ func (client OsManagementClient) updateManagedInstanceGroup(ctx context.Context, // UpdateScheduledJob Updates an existing Scheduled Job on the management system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/UpdateScheduledJob.go.html to see an example of how to use UpdateScheduledJob API. func (client OsManagementClient) UpdateScheduledJob(ctx context.Context, request UpdateScheduledJobRequest) (response UpdateScheduledJobResponse, err error) { @@ -4255,7 +4255,7 @@ func (client OsManagementClient) updateScheduledJob(ctx context.Context, request // UpdateSoftwareSource Updates an existing custom Software Source on the management system. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/UpdateSoftwareSource.go.html to see an example of how to use UpdateSoftwareSource API. func (client OsManagementClient) UpdateSoftwareSource(ctx context.Context, request UpdateSoftwareSourceRequest) (response UpdateSoftwareSourceResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/osmanagement_event_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/osmanagement_event_client.go index 19fcdf874f4..4fa7947cbd9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/osmanagement_event_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osmanagement/osmanagement_event_client.go @@ -94,7 +94,7 @@ func (client *EventClient) ConfigurationProvider() *common.ConfigurationProvider // DeleteEventContent Delete an event content ZIP archive from the service // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/DeleteEventContent.go.html to see an example of how to use DeleteEventContent API. func (client EventClient) DeleteEventContent(ctx context.Context, request DeleteEventContentRequest) (response DeleteEventContentResponse, err error) { @@ -156,7 +156,7 @@ func (client EventClient) deleteEventContent(ctx context.Context, request common // GetEvent Gets an Event by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetEvent.go.html to see an example of how to use GetEvent API. func (client EventClient) GetEvent(ctx context.Context, request GetEventRequest) (response GetEventResponse, err error) { @@ -213,7 +213,7 @@ func (client EventClient) getEvent(ctx context.Context, request common.OCIReques // GetEventContent Get additional data about a event as a ZIP archive. The archive content depends on the event eventType. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetEventContent.go.html to see an example of how to use GetEventContent API. func (client EventClient) GetEventContent(ctx context.Context, request GetEventContentRequest) (response GetEventContentResponse, err error) { @@ -269,7 +269,7 @@ func (client EventClient) getEventContent(ctx context.Context, request common.OC // GetEventReport Get summary information about events on this instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/GetEventReport.go.html to see an example of how to use GetEventReport API. func (client EventClient) GetEventReport(ctx context.Context, request GetEventReportRequest) (response GetEventReportResponse, err error) { @@ -326,7 +326,7 @@ func (client EventClient) getEventReport(ctx context.Context, request common.OCI // ListEvents Returns a list of Events. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListEvents.go.html to see an example of how to use ListEvents API. func (client EventClient) ListEvents(ctx context.Context, request ListEventsRequest) (response ListEventsResponse, err error) { @@ -383,7 +383,7 @@ func (client EventClient) listEvents(ctx context.Context, request common.OCIRequ // ListRelatedEvents Returns a list of related events. For now pagination is not implemented. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/ListRelatedEvents.go.html to see an example of how to use ListRelatedEvents API. func (client EventClient) ListRelatedEvents(ctx context.Context, request ListRelatedEventsRequest) (response ListRelatedEventsResponse, err error) { @@ -440,7 +440,7 @@ func (client EventClient) listRelatedEvents(ctx context.Context, request common. // UpdateEvent Updates an existing event associated to a managed instance // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/UpdateEvent.go.html to see an example of how to use UpdateEvent API. func (client EventClient) UpdateEvent(ctx context.Context, request UpdateEventRequest) (response UpdateEventResponse, err error) { @@ -497,7 +497,7 @@ func (client EventClient) updateEvent(ctx context.Context, request common.OCIReq // UploadEventContent Upload the event content as a ZIP archive from the managed instance to the service // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osmanagement/UploadEventContent.go.html to see an example of how to use UploadEventContent API. func (client EventClient) UploadEventContent(ctx context.Context, request UploadEventContentRequest) (response UploadEventContentResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/credit_card_payment_detail.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/credit_card_payment_detail.go index 88ca5b6395d..c538e8c5326 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/credit_card_payment_detail.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/credit_card_payment_detail.go @@ -41,17 +41,17 @@ type CreditCardPaymentDetail struct { CreditCardType CreditCardPaymentDetailCreditCardTypeEnum `mandatory:"false" json:"creditCardType,omitempty"` } -//GetTimePaidOn returns TimePaidOn +// GetTimePaidOn returns TimePaidOn func (m CreditCardPaymentDetail) GetTimePaidOn() *common.SDKTime { return m.TimePaidOn } -//GetPaidBy returns PaidBy +// GetPaidBy returns PaidBy func (m CreditCardPaymentDetail) GetPaidBy() *string { return m.PaidBy } -//GetAmountPaid returns AmountPaid +// GetAmountPaid returns AmountPaid func (m CreditCardPaymentDetail) GetAmountPaid() *float32 { return m.AmountPaid } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/credit_card_payment_option.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/credit_card_payment_option.go index a41c5ea0301..13e83943604 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/credit_card_payment_option.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/credit_card_payment_option.go @@ -38,12 +38,12 @@ type CreditCardPaymentOption struct { CreditCardType CreditCardTypeEnum `mandatory:"false" json:"creditCardType,omitempty"` } -//GetWalletInstrumentId returns WalletInstrumentId +// GetWalletInstrumentId returns WalletInstrumentId func (m CreditCardPaymentOption) GetWalletInstrumentId() *string { return m.WalletInstrumentId } -//GetWalletTransactionId returns WalletTransactionId +// GetWalletTransactionId returns WalletTransactionId func (m CreditCardPaymentOption) GetWalletTransactionId() *string { return m.WalletTransactionId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/echeck_payment_detail.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/echeck_payment_detail.go index fdbfc3b57a5..7ad4713e5d8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/echeck_payment_detail.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/echeck_payment_detail.go @@ -41,17 +41,17 @@ type EcheckPaymentDetail struct { CardType EcheckPaymentDetailCardTypeEnum `mandatory:"false" json:"cardType,omitempty"` } -//GetTimePaidOn returns TimePaidOn +// GetTimePaidOn returns TimePaidOn func (m EcheckPaymentDetail) GetTimePaidOn() *common.SDKTime { return m.TimePaidOn } -//GetPaidBy returns PaidBy +// GetPaidBy returns PaidBy func (m EcheckPaymentDetail) GetPaidBy() *string { return m.PaidBy } -//GetAmountPaid returns AmountPaid +// GetAmountPaid returns AmountPaid func (m EcheckPaymentDetail) GetAmountPaid() *float32 { return m.AmountPaid } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_addressruleservice_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_addressruleservice_client.go index 4fb2ca7610e..8fc7fcc8064 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_addressruleservice_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_addressruleservice_client.go @@ -93,7 +93,7 @@ func (client *AddressRuleServiceClient) ConfigurationProvider() *common.Configur // GetAddressRule Get the address rule for the compartment based on the country code // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/GetAddressRule.go.html to see an example of how to use GetAddressRule API. // A default retry strategy applies to this operation GetAddressRule() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_addressservice_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_addressservice_client.go index dd9557859f2..8bed46d8da2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_addressservice_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_addressservice_client.go @@ -93,7 +93,7 @@ func (client *AddressServiceClient) ConfigurationProvider() *common.Configuratio // GetAddress Get the address by id for the compartment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/GetAddress.go.html to see an example of how to use GetAddress API. // A default retry strategy applies to this operation GetAddress() @@ -151,7 +151,7 @@ func (client AddressServiceClient) getAddress(ctx context.Context, request commo // VerifyAddress Verify address // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/VerifyAddress.go.html to see an example of how to use VerifyAddress API. // A default retry strategy applies to this operation VerifyAddress() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_invoiceservice_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_invoiceservice_client.go index 1d7c6111c3b..858f678079b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_invoiceservice_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_invoiceservice_client.go @@ -93,7 +93,7 @@ func (client *InvoiceServiceClient) ConfigurationProvider() *common.Configuratio // DownloadPdfContent Returns an invoice in pdf format // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/DownloadPdfContent.go.html to see an example of how to use DownloadPdfContent API. // A default retry strategy applies to this operation DownloadPdfContent() @@ -150,7 +150,7 @@ func (client InvoiceServiceClient) downloadPdfContent(ctx context.Context, reque // GetInvoice Returns an invoice by invoice id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/GetInvoice.go.html to see an example of how to use GetInvoice API. // A default retry strategy applies to this operation GetInvoice() @@ -208,7 +208,7 @@ func (client InvoiceServiceClient) getInvoice(ctx context.Context, request commo // ListInvoiceLines Returns the invoice product list by invoice id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/ListInvoiceLines.go.html to see an example of how to use ListInvoiceLines API. // A default retry strategy applies to this operation ListInvoiceLines() @@ -266,7 +266,7 @@ func (client InvoiceServiceClient) listInvoiceLines(ctx context.Context, request // ListInvoices Returns a list of invoices // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/ListInvoices.go.html to see an example of how to use ListInvoices API. // A default retry strategy applies to this operation ListInvoices() @@ -324,7 +324,7 @@ func (client InvoiceServiceClient) listInvoices(ctx context.Context, request com // PayInvoice Pay an invoice // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/PayInvoice.go.html to see an example of how to use PayInvoice API. // A default retry strategy applies to this operation PayInvoice() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_subscriptionservice_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_subscriptionservice_client.go index fdff0026ac8..31514d9c711 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_subscriptionservice_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/ospgateway_subscriptionservice_client.go @@ -93,7 +93,7 @@ func (client *SubscriptionServiceClient) ConfigurationProvider() *common.Configu // AuthorizeSubscriptionPayment PSD2 authorization for subscription payment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/AuthorizeSubscriptionPayment.go.html to see an example of how to use AuthorizeSubscriptionPayment API. // A default retry strategy applies to this operation AuthorizeSubscriptionPayment() @@ -156,7 +156,7 @@ func (client SubscriptionServiceClient) authorizeSubscriptionPayment(ctx context // GetSubscription Get the subscription plan. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/GetSubscription.go.html to see an example of how to use GetSubscription API. // A default retry strategy applies to this operation GetSubscription() @@ -214,7 +214,7 @@ func (client SubscriptionServiceClient) getSubscription(ctx context.Context, req // ListSubscriptions Get the subscription data for the compartment // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/ListSubscriptions.go.html to see an example of how to use ListSubscriptions API. // A default retry strategy applies to this operation ListSubscriptions() @@ -272,7 +272,7 @@ func (client SubscriptionServiceClient) listSubscriptions(ctx context.Context, r // PaySubscription Pay a subscription // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/PaySubscription.go.html to see an example of how to use PaySubscription API. // A default retry strategy applies to this operation PaySubscription() @@ -335,7 +335,7 @@ func (client SubscriptionServiceClient) paySubscription(ctx context.Context, req // UpdateSubscription Update plan of the subscription. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/ospgateway/UpdateSubscription.go.html to see an example of how to use UpdateSubscription API. // A default retry strategy applies to this operation UpdateSubscription() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/other_payment_detail.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/other_payment_detail.go index a69d862a45e..c9a65f945cf 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/other_payment_detail.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/other_payment_detail.go @@ -44,17 +44,17 @@ type OtherPaymentDetail struct { CreditCardType OtherPaymentDetailCreditCardTypeEnum `mandatory:"false" json:"creditCardType,omitempty"` } -//GetTimePaidOn returns TimePaidOn +// GetTimePaidOn returns TimePaidOn func (m OtherPaymentDetail) GetTimePaidOn() *common.SDKTime { return m.TimePaidOn } -//GetPaidBy returns PaidBy +// GetPaidBy returns PaidBy func (m OtherPaymentDetail) GetPaidBy() *string { return m.PaidBy } -//GetAmountPaid returns AmountPaid +// GetAmountPaid returns AmountPaid func (m OtherPaymentDetail) GetAmountPaid() *float32 { return m.AmountPaid } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/paypal_payment_detail.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/paypal_payment_detail.go index 039e5992257..4962c1b569a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/paypal_payment_detail.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/paypal_payment_detail.go @@ -35,17 +35,17 @@ type PaypalPaymentDetail struct { PaypalReference *string `mandatory:"false" json:"paypalReference"` } -//GetTimePaidOn returns TimePaidOn +// GetTimePaidOn returns TimePaidOn func (m PaypalPaymentDetail) GetTimePaidOn() *common.SDKTime { return m.TimePaidOn } -//GetPaidBy returns PaidBy +// GetPaidBy returns PaidBy func (m PaypalPaymentDetail) GetPaidBy() *string { return m.PaidBy } -//GetAmountPaid returns AmountPaid +// GetAmountPaid returns AmountPaid func (m PaypalPaymentDetail) GetAmountPaid() *float32 { return m.AmountPaid } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/paypal_payment_option.go b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/paypal_payment_option.go index 051e79cb911..2097932c0c0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/paypal_payment_option.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/ospgateway/paypal_payment_option.go @@ -38,12 +38,12 @@ type PaypalPaymentOption struct { ExtBillingAgreementId *string `mandatory:"false" json:"extBillingAgreementId"` } -//GetWalletInstrumentId returns WalletInstrumentId +// GetWalletInstrumentId returns WalletInstrumentId func (m PaypalPaymentOption) GetWalletInstrumentId() *string { return m.WalletInstrumentId } -//GetWalletTransactionId returns WalletTransactionId +// GetWalletTransactionId returns WalletTransactionId func (m PaypalPaymentOption) GetWalletTransactionId() *string { return m.WalletTransactionId } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osubbillingschedule/osubbillingschedule_billingschedule_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/osubbillingschedule/osubbillingschedule_billingschedule_client.go index 10dcd2f717a..d75c71f02ba 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osubbillingschedule/osubbillingschedule_billingschedule_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osubbillingschedule/osubbillingschedule_billingschedule_client.go @@ -94,7 +94,7 @@ func (client *BillingScheduleClient) ConfigurationProvider() *common.Configurati // ListBillingSchedules This list API returns all billing schedules for given subscription id and // for a particular Subscribed Service if provided // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osubbillingschedule/ListBillingSchedules.go.html to see an example of how to use ListBillingSchedules API. func (client BillingScheduleClient) ListBillingSchedules(ctx context.Context, request ListBillingSchedulesRequest) (response ListBillingSchedulesResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osuborganizationsubscription/osuborganizationsubscription_organizationsubscription_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/osuborganizationsubscription/osuborganizationsubscription_organizationsubscription_client.go index f17b3f9e505..0e9395e146c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osuborganizationsubscription/osuborganizationsubscription_organizationsubscription_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osuborganizationsubscription/osuborganizationsubscription_organizationsubscription_client.go @@ -93,7 +93,7 @@ func (client *OrganizationSubscriptionClient) ConfigurationProvider() *common.Co // ListOrganizationSubscriptions API that returns data for the list of subscription ids returned from Organizations API // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osuborganizationsubscription/ListOrganizationSubscriptions.go.html to see an example of how to use ListOrganizationSubscriptions API. func (client OrganizationSubscriptionClient) ListOrganizationSubscriptions(ctx context.Context, request ListOrganizationSubscriptionsRequest) (response ListOrganizationSubscriptionsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_commitment_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_commitment_client.go index c20ef934796..e203418581e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_commitment_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_commitment_client.go @@ -93,7 +93,7 @@ func (client *CommitmentClient) ConfigurationProvider() *common.ConfigurationPro // GetCommitment This API returns the commitment details corresponding to the id provided // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osubsubscription/GetCommitment.go.html to see an example of how to use GetCommitment API. func (client CommitmentClient) GetCommitment(ctx context.Context, request GetCommitmentRequest) (response GetCommitmentResponse, err error) { @@ -150,7 +150,7 @@ func (client CommitmentClient) getCommitment(ctx context.Context, request common // ListCommitments This list API returns all commitments for a particular Subscribed Service // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osubsubscription/ListCommitments.go.html to see an example of how to use ListCommitments API. func (client CommitmentClient) ListCommitments(ctx context.Context, request ListCommitmentsRequest) (response ListCommitmentsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_ratecard_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_ratecard_client.go index 033fc7e58de..0653691bfb3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_ratecard_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_ratecard_client.go @@ -94,7 +94,7 @@ func (client *RatecardClient) ConfigurationProvider() *common.ConfigurationProvi // ListRateCards List API that returns all ratecards for given Subscription Id and Account ID (if provided) and // for a particular date range // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osubsubscription/ListRateCards.go.html to see an example of how to use ListRateCards API. func (client RatecardClient) ListRateCards(ctx context.Context, request ListRateCardsRequest) (response ListRateCardsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_subscription_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_subscription_client.go index 87b4523eb0c..5d08cf72cdb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_subscription_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osubsubscription/osubsubscription_subscription_client.go @@ -96,7 +96,7 @@ func (client *SubscriptionClient) ConfigurationProvider() *common.ConfigurationP // This API expects exactly one of the above mentioned parameters as input. If more than one parameters are provided the API will throw // a 400 - invalid parameters exception and if no parameters are provided it will throw a 400 - missing parameter exception // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osubsubscription/ListSubscriptions.go.html to see an example of how to use ListSubscriptions API. func (client SubscriptionClient) ListSubscriptions(ctx context.Context, request ListSubscriptionsRequest) (response ListSubscriptionsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/osubusage/osubusage_computedusage_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/osubusage/osubusage_computedusage_client.go index 89aee5ab9d9..6d2681954ed 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/osubusage/osubusage_computedusage_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/osubusage/osubusage_computedusage_client.go @@ -93,7 +93,7 @@ func (client *ComputedUsageClient) ConfigurationProvider() *common.Configuration // GetComputedUsage This is an API which returns Computed Usage corresponding to the id passed // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osubusage/GetComputedUsage.go.html to see an example of how to use GetComputedUsage API. func (client ComputedUsageClient) GetComputedUsage(ctx context.Context, request GetComputedUsageRequest) (response GetComputedUsageResponse, err error) { @@ -150,7 +150,7 @@ func (client ComputedUsageClient) getComputedUsage(ctx context.Context, request // ListComputedUsageAggregateds This is a collection API which returns a list of aggregated computed usage details (there can be multiple Parent Products under a given SubID each of which is represented under Subscription Service Line # in SPM). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osubusage/ListComputedUsageAggregateds.go.html to see an example of how to use ListComputedUsageAggregateds API. func (client ComputedUsageClient) ListComputedUsageAggregateds(ctx context.Context, request ListComputedUsageAggregatedsRequest) (response ListComputedUsageAggregatedsResponse, err error) { @@ -207,7 +207,7 @@ func (client ComputedUsageClient) listComputedUsageAggregateds(ctx context.Conte // ListComputedUsages This is a collection API which returns a list of Computed Usages for given filters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/osubusage/ListComputedUsages.go.html to see an example of how to use ListComputedUsages API. func (client ComputedUsageClient) ListComputedUsages(ctx context.Context, request ListComputedUsagesRequest) (response ListComputedUsagesResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/queue/queue_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/queue/queue_client.go index da2980a79db..3ea69567ae2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/queue/queue_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/queue/queue_client.go @@ -95,7 +95,7 @@ func (client *QueueClient) ConfigurationProvider() *common.ConfigurationProvider // You must use the messages endpoint (https://docs.cloud.oracle.com/iaas/Content/queue/messages.htm#messages__messages-endpoint) to delete messages. // The messages endpoint may be different for different queues. Use GetQueue to find the queue's `messagesEndpoint`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/DeleteMessage.go.html to see an example of how to use DeleteMessage API. // A default retry strategy applies to this operation DeleteMessage() @@ -155,7 +155,7 @@ func (client QueueClient) deleteMessage(ctx context.Context, request common.OCIR // You must use the messages endpoint (https://docs.cloud.oracle.com/iaas/Content/queue/messages.htm#messages__messages-endpoint) to delete messages. // The messages endpoint may be different for different queues. Use GetQueue to find the queue's `messagesEndpoint`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/DeleteMessages.go.html to see an example of how to use DeleteMessages API. // A default retry strategy applies to this operation DeleteMessages() @@ -218,7 +218,7 @@ func (client QueueClient) deleteMessages(ctx context.Context, request common.OCI // When channelFilter is present, service will return available messages from the channel which ID exactly matched the filter. // When filter is not specified, messages will be returned from a random non-empty channel within a queue. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/GetMessages.go.html to see an example of how to use GetMessages API. func (client QueueClient) GetMessages(ctx context.Context, request GetMessagesRequest) (response GetMessagesResponse, err error) { @@ -277,7 +277,7 @@ func (client QueueClient) getMessages(ctx context.Context, request common.OCIReq // You must use the messages endpoint (https://docs.cloud.oracle.com/iaas/Content/queue/messages.htm#messages__messages-endpoint) to get a queue's statistics. // The messages endpoint may be different for different queues. Use GetQueue to find the queue's `messagesEndpoint`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/GetStats.go.html to see an example of how to use GetStats API. // A default retry strategy applies to this operation GetStats() @@ -338,7 +338,7 @@ func (client QueueClient) getStats(ctx context.Context, request common.OCIReques // API supports optional channelFilter parameter which will filter the returned results according to the specified filter. // List of channel IDs is approximate, because statistics is refreshed once per-second, and that list represents a snapshot of the past information. API is paginated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/ListChannels.go.html to see an example of how to use ListChannels API. // A default retry strategy applies to this operation ListChannels() @@ -398,7 +398,7 @@ func (client QueueClient) listChannels(ctx context.Context, request common.OCIRe // You must use the messages endpoint (https://docs.cloud.oracle.com/iaas/Content/queue/messages.htm#messages__messages-endpoint) to produce messages. // The messages endpoint may be different for different queues. Use GetQueue to find the queue's `messagesEndpoint`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/PutMessages.go.html to see an example of how to use PutMessages API. func (client QueueClient) PutMessages(ctx context.Context, request PutMessagesRequest) (response PutMessagesResponse, err error) { @@ -457,7 +457,7 @@ func (client QueueClient) putMessages(ctx context.Context, request common.OCIReq // You must use the messages endpoint (https://docs.cloud.oracle.com/iaas/Content/queue/messages.htm#messages__messages-endpoint) to update messages. // The messages endpoint may be different for different queues. Use GetQueue to find the queue's `messagesEndpoint`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/UpdateMessage.go.html to see an example of how to use UpdateMessage API. // A default retry strategy applies to this operation UpdateMessage() @@ -517,7 +517,7 @@ func (client QueueClient) updateMessage(ctx context.Context, request common.OCIR // You must use the messages endpoint (https://docs.cloud.oracle.com/iaas/Content/queue/messages.htm#messages__messages-endpoint) to update messages. // The messages endpoint may be different for different queues. Use GetQueue to find the queue's `messagesEndpoint`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/UpdateMessages.go.html to see an example of how to use UpdateMessages API. // A default retry strategy applies to this operation UpdateMessages() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/queue/queue_queueadmin_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/queue/queue_queueadmin_client.go index 88a048bb131..d9db7150167 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/queue/queue_queueadmin_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/queue/queue_queueadmin_client.go @@ -93,7 +93,7 @@ func (client *QueueAdminClient) ConfigurationProvider() *common.ConfigurationPro // ChangeQueueCompartment Moves a queue from one compartment to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/ChangeQueueCompartment.go.html to see an example of how to use ChangeQueueCompartment API. // A default retry strategy applies to this operation ChangeQueueCompartment() @@ -151,7 +151,7 @@ func (client QueueAdminClient) changeQueueCompartment(ctx context.Context, reque // CreateQueue Creates a new queue. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/CreateQueue.go.html to see an example of how to use CreateQueue API. // A default retry strategy applies to this operation CreateQueue() @@ -214,7 +214,7 @@ func (client QueueAdminClient) createQueue(ctx context.Context, request common.O // DeleteQueue Deletes a queue resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/DeleteQueue.go.html to see an example of how to use DeleteQueue API. // A default retry strategy applies to this operation DeleteQueue() @@ -272,7 +272,7 @@ func (client QueueAdminClient) deleteQueue(ctx context.Context, request common.O // GetQueue Gets a queue by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/GetQueue.go.html to see an example of how to use GetQueue API. // A default retry strategy applies to this operation GetQueue() @@ -330,7 +330,7 @@ func (client QueueAdminClient) getQueue(ctx context.Context, request common.OCIR // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -388,7 +388,7 @@ func (client QueueAdminClient) getWorkRequest(ctx context.Context, request commo // ListQueues Returns a list of queues. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/ListQueues.go.html to see an example of how to use ListQueues API. // A default retry strategy applies to this operation ListQueues() @@ -446,7 +446,7 @@ func (client QueueAdminClient) listQueues(ctx context.Context, request common.OC // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -504,7 +504,7 @@ func (client QueueAdminClient) listWorkRequestErrors(ctx context.Context, reques // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -562,7 +562,7 @@ func (client QueueAdminClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -622,7 +622,7 @@ func (client QueueAdminClient) listWorkRequests(ctx context.Context, request com // However multiple concurrent purge operations are supported for different queues. // Purge request without specification of target channels will clean up all messages in the queue and in the child channels. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/PurgeQueue.go.html to see an example of how to use PurgeQueue API. // A default retry strategy applies to this operation PurgeQueue() @@ -680,7 +680,7 @@ func (client QueueAdminClient) purgeQueue(ctx context.Context, request common.OC // UpdateQueue Updates the specified queue. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/queue/UpdateQueue.go.html to see an example of how to use UpdateQueue API. // A default retry strategy applies to this operation UpdateQueue() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/recovery/recovery_databaserecovery_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/recovery/recovery_databaserecovery_client.go index 50535364879..f7190334eae 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/recovery/recovery_databaserecovery_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/recovery/recovery_databaserecovery_client.go @@ -93,7 +93,7 @@ func (client *DatabaseRecoveryClient) ConfigurationProvider() *common.Configurat // ChangeProtectedDatabaseCompartment Moves a protected database resource from the existing compartment to the specified compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/ChangeProtectedDatabaseCompartment.go.html to see an example of how to use ChangeProtectedDatabaseCompartment API. // A default retry strategy applies to this operation ChangeProtectedDatabaseCompartment() @@ -151,7 +151,7 @@ func (client DatabaseRecoveryClient) changeProtectedDatabaseCompartment(ctx cont // ChangeProtectionPolicyCompartment Moves a protection policy resource from the existing compartment to the specified compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/ChangeProtectionPolicyCompartment.go.html to see an example of how to use ChangeProtectionPolicyCompartment API. // A default retry strategy applies to this operation ChangeProtectionPolicyCompartment() @@ -209,7 +209,7 @@ func (client DatabaseRecoveryClient) changeProtectionPolicyCompartment(ctx conte // ChangeRecoveryServiceSubnetCompartment Moves a recovery service subnet resource from the existing compartment to the specified compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/ChangeRecoveryServiceSubnetCompartment.go.html to see an example of how to use ChangeRecoveryServiceSubnetCompartment API. // A default retry strategy applies to this operation ChangeRecoveryServiceSubnetCompartment() @@ -267,7 +267,7 @@ func (client DatabaseRecoveryClient) changeRecoveryServiceSubnetCompartment(ctx // CreateProtectedDatabase Creates a new Protected Database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/CreateProtectedDatabase.go.html to see an example of how to use CreateProtectedDatabase API. // A default retry strategy applies to this operation CreateProtectedDatabase() @@ -330,7 +330,7 @@ func (client DatabaseRecoveryClient) createProtectedDatabase(ctx context.Context // CreateProtectionPolicy Creates a new Protection Policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/CreateProtectionPolicy.go.html to see an example of how to use CreateProtectionPolicy API. // A default retry strategy applies to this operation CreateProtectionPolicy() @@ -393,7 +393,7 @@ func (client DatabaseRecoveryClient) createProtectionPolicy(ctx context.Context, // CreateRecoveryServiceSubnet Creates a new Recovery Service Subnet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/CreateRecoveryServiceSubnet.go.html to see an example of how to use CreateRecoveryServiceSubnet API. // A default retry strategy applies to this operation CreateRecoveryServiceSubnet() @@ -456,7 +456,7 @@ func (client DatabaseRecoveryClient) createRecoveryServiceSubnet(ctx context.Con // DeleteProtectedDatabase Deletes a protected database based on the specified protected database ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/DeleteProtectedDatabase.go.html to see an example of how to use DeleteProtectedDatabase API. // A default retry strategy applies to this operation DeleteProtectedDatabase() @@ -515,7 +515,7 @@ func (client DatabaseRecoveryClient) deleteProtectedDatabase(ctx context.Context // DeleteProtectionPolicy Deletes a specified protection policy. You can delete custom policies only. // Deleting a Oracle predefined policies will result in status code 405 Method Not Allowed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/DeleteProtectionPolicy.go.html to see an example of how to use DeleteProtectionPolicy API. // A default retry strategy applies to this operation DeleteProtectionPolicy() @@ -573,7 +573,7 @@ func (client DatabaseRecoveryClient) deleteProtectionPolicy(ctx context.Context, // DeleteRecoveryServiceSubnet Deletes a specified recovery service subnet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/DeleteRecoveryServiceSubnet.go.html to see an example of how to use DeleteRecoveryServiceSubnet API. // A default retry strategy applies to this operation DeleteRecoveryServiceSubnet() @@ -631,7 +631,7 @@ func (client DatabaseRecoveryClient) deleteRecoveryServiceSubnet(ctx context.Con // FetchProtectedDatabaseConfiguration Downloads the network service configuration file 'tnsnames.ora' for a specified protected database. Applies to user-defined recovery systems only. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/FetchProtectedDatabaseConfiguration.go.html to see an example of how to use FetchProtectedDatabaseConfiguration API. // A default retry strategy applies to this operation FetchProtectedDatabaseConfiguration() @@ -688,7 +688,7 @@ func (client DatabaseRecoveryClient) fetchProtectedDatabaseConfiguration(ctx con // GetProtectedDatabase Gets information about a specified protected database. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/GetProtectedDatabase.go.html to see an example of how to use GetProtectedDatabase API. // A default retry strategy applies to this operation GetProtectedDatabase() @@ -746,7 +746,7 @@ func (client DatabaseRecoveryClient) getProtectedDatabase(ctx context.Context, r // GetProtectionPolicy Gets information about a specified protection policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/GetProtectionPolicy.go.html to see an example of how to use GetProtectionPolicy API. // A default retry strategy applies to this operation GetProtectionPolicy() @@ -804,7 +804,7 @@ func (client DatabaseRecoveryClient) getProtectionPolicy(ctx context.Context, re // GetRecoveryServiceSubnet Gets information about a specified recovery service subnet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/GetRecoveryServiceSubnet.go.html to see an example of how to use GetRecoveryServiceSubnet API. // A default retry strategy applies to this operation GetRecoveryServiceSubnet() @@ -862,7 +862,7 @@ func (client DatabaseRecoveryClient) getRecoveryServiceSubnet(ctx context.Contex // GetWorkRequest Gets the status of the work request based on the specified ID // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -920,7 +920,7 @@ func (client DatabaseRecoveryClient) getWorkRequest(ctx context.Context, request // ListProtectedDatabases Lists the protected databases based on the specified parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/ListProtectedDatabases.go.html to see an example of how to use ListProtectedDatabases API. // A default retry strategy applies to this operation ListProtectedDatabases() @@ -978,7 +978,7 @@ func (client DatabaseRecoveryClient) listProtectedDatabases(ctx context.Context, // ListProtectionPolicies Gets a list of protection policies based on the specified parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/ListProtectionPolicies.go.html to see an example of how to use ListProtectionPolicies API. // A default retry strategy applies to this operation ListProtectionPolicies() @@ -1036,7 +1036,7 @@ func (client DatabaseRecoveryClient) listProtectionPolicies(ctx context.Context, // ListRecoveryServiceSubnets Returns a list of Recovery Service Subnets. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/ListRecoveryServiceSubnets.go.html to see an example of how to use ListRecoveryServiceSubnets API. // A default retry strategy applies to this operation ListRecoveryServiceSubnets() @@ -1094,7 +1094,7 @@ func (client DatabaseRecoveryClient) listRecoveryServiceSubnets(ctx context.Cont // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1152,7 +1152,7 @@ func (client DatabaseRecoveryClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1210,7 +1210,7 @@ func (client DatabaseRecoveryClient) listWorkRequestLogs(ctx context.Context, re // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1268,7 +1268,7 @@ func (client DatabaseRecoveryClient) listWorkRequests(ctx context.Context, reque // UpdateProtectedDatabase Updates the Protected Database // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/UpdateProtectedDatabase.go.html to see an example of how to use UpdateProtectedDatabase API. // A default retry strategy applies to this operation UpdateProtectedDatabase() @@ -1326,7 +1326,7 @@ func (client DatabaseRecoveryClient) updateProtectedDatabase(ctx context.Context // UpdateProtectionPolicy Updates the specified protection policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/UpdateProtectionPolicy.go.html to see an example of how to use UpdateProtectionPolicy API. // A default retry strategy applies to this operation UpdateProtectionPolicy() @@ -1384,7 +1384,7 @@ func (client DatabaseRecoveryClient) updateProtectionPolicy(ctx context.Context, // UpdateRecoveryServiceSubnet Updates the specified recovery service subnet. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/recovery/UpdateRecoveryServiceSubnet.go.html to see an example of how to use UpdateRecoveryServiceSubnet API. // A default retry strategy applies to this operation UpdateRecoveryServiceSubnet() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_config_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_config_source.go index a787bc4abbe..1ad21eac77b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_config_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_config_source.go @@ -43,7 +43,7 @@ type BitbucketCloudConfigSource struct { BranchName *string `mandatory:"false" json:"branchName"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m BitbucketCloudConfigSource) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_username_app_password_configuration_source_provider.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_username_app_password_configuration_source_provider.go index 6ffd8219ff6..8b30a84ba35 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_username_app_password_configuration_source_provider.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_username_app_password_configuration_source_provider.go @@ -68,57 +68,57 @@ type BitbucketCloudUsernameAppPasswordConfigurationSourceProvider struct { LifecycleState ConfigurationSourceProviderLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetDescription() *string { return m.Description } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetLifecycleState() ConfigurationSourceProviderLifecycleStateEnum { return m.LifecycleState } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetUsername returns Username +// GetUsername returns Username func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetUsername() *string { return m.Username } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetSecretId() *string { return m.SecretId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProvider) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_username_app_password_configuration_source_provider_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_username_app_password_configuration_source_provider_summary.go index ad9c273adb1..b8852984fe0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_username_app_password_configuration_source_provider_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_cloud_username_app_password_configuration_source_provider_summary.go @@ -64,47 +64,47 @@ type BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary struct LifecycleState ConfigurationSourceProviderLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary) GetDescription() *string { return m.Description } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary) GetLifecycleState() ConfigurationSourceProviderLifecycleStateEnum { return m.LifecycleState } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketCloudUsernameAppPasswordConfigurationSourceProviderSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_access_token_configuration_source_provider.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_access_token_configuration_source_provider.go index 5124e32c7af..ed519608e8b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_access_token_configuration_source_provider.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_access_token_configuration_source_provider.go @@ -68,57 +68,57 @@ type BitbucketServerAccessTokenConfigurationSourceProvider struct { LifecycleState ConfigurationSourceProviderLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetDescription() *string { return m.Description } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetLifecycleState() ConfigurationSourceProviderLifecycleStateEnum { return m.LifecycleState } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetUsername returns Username +// GetUsername returns Username func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetUsername() *string { return m.Username } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetSecretId() *string { return m.SecretId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketServerAccessTokenConfigurationSourceProvider) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_access_token_configuration_source_provider_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_access_token_configuration_source_provider_summary.go index d3591905c97..37b05298e45 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_access_token_configuration_source_provider_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_access_token_configuration_source_provider_summary.go @@ -64,47 +64,47 @@ type BitbucketServerAccessTokenConfigurationSourceProviderSummary struct { LifecycleState ConfigurationSourceProviderLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m BitbucketServerAccessTokenConfigurationSourceProviderSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m BitbucketServerAccessTokenConfigurationSourceProviderSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m BitbucketServerAccessTokenConfigurationSourceProviderSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m BitbucketServerAccessTokenConfigurationSourceProviderSummary) GetDescription() *string { return m.Description } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m BitbucketServerAccessTokenConfigurationSourceProviderSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m BitbucketServerAccessTokenConfigurationSourceProviderSummary) GetLifecycleState() ConfigurationSourceProviderLifecycleStateEnum { return m.LifecycleState } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m BitbucketServerAccessTokenConfigurationSourceProviderSummary) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m BitbucketServerAccessTokenConfigurationSourceProviderSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m BitbucketServerAccessTokenConfigurationSourceProviderSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_config_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_config_source.go index 3954f576da6..fa083b0f4f8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_config_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/bitbucket_server_config_source.go @@ -49,7 +49,7 @@ type BitbucketServerConfigSource struct { CloneUrl *string `mandatory:"false" json:"cloneUrl"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m BitbucketServerConfigSource) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/compartment_config_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/compartment_config_source.go index 16c898e47f6..54eb738c422 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/compartment_config_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/compartment_config_source.go @@ -47,7 +47,7 @@ type CompartmentConfigSource struct { ServicesToDiscover []string `mandatory:"false" json:"servicesToDiscover"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m CompartmentConfigSource) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_apply_job_operation_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_apply_job_operation_details.go index d019a98ccf8..4779dc78258 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_apply_job_operation_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_apply_job_operation_details.go @@ -37,7 +37,7 @@ type CreateApplyJobOperationDetails struct { ExecutionPlanStrategy ApplyJobOperationDetailsExecutionPlanStrategyEnum `mandatory:"false" json:"executionPlanStrategy,omitempty"` } -//GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired +// GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired func (m CreateApplyJobOperationDetails) GetIsProviderUpgradeRequired() *bool { return m.IsProviderUpgradeRequired } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_apply_rollback_job_operation_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_apply_rollback_job_operation_details.go index 1f0c40bbaef..dfab7475e33 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_apply_rollback_job_operation_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_apply_rollback_job_operation_details.go @@ -41,7 +41,7 @@ type CreateApplyRollbackJobOperationDetails struct { ExecutionPlanRollbackStrategy ApplyRollbackJobOperationDetailsExecutionPlanRollbackStrategyEnum `mandatory:"true" json:"executionPlanRollbackStrategy"` } -//GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired +// GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired func (m CreateApplyRollbackJobOperationDetails) GetIsProviderUpgradeRequired() *bool { return m.IsProviderUpgradeRequired } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_cloud_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_cloud_config_source_details.go index b8ef83cf60f..73ee66095d2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_cloud_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_cloud_config_source_details.go @@ -43,7 +43,7 @@ type CreateBitbucketCloudConfigSourceDetails struct { BranchName *string `mandatory:"false" json:"branchName"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m CreateBitbucketCloudConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_cloud_username_app_password_configuration_source_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_cloud_username_app_password_configuration_source_provider_details.go index ed2439b07fd..ba036085307 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_cloud_username_app_password_configuration_source_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_cloud_username_app_password_configuration_source_provider_details.go @@ -56,32 +56,32 @@ type CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails s DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetDescription() *string { return m.Description } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_server_access_token_configuration_source_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_server_access_token_configuration_source_provider_details.go index 2972af7658c..4fe25a014d0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_server_access_token_configuration_source_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_server_access_token_configuration_source_provider_details.go @@ -53,32 +53,32 @@ type CreateBitbucketServerAccessTokenConfigurationSourceProviderDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetDescription() *string { return m.Description } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m CreateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_server_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_server_config_source_details.go index 1d5bdcae2b6..4711ae4a5f8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_server_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_bitbucket_server_config_source_details.go @@ -47,7 +47,7 @@ type CreateBitbucketServerConfigSourceDetails struct { RepositoryId *string `mandatory:"false" json:"repositoryId"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m CreateBitbucketServerConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_compartment_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_compartment_config_source_details.go index b82b684015d..7d1f903ec7b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_compartment_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_compartment_config_source_details.go @@ -45,7 +45,7 @@ type CreateCompartmentConfigSourceDetails struct { ServicesToDiscover []string `mandatory:"false" json:"servicesToDiscover"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m CreateCompartmentConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_destroy_job_operation_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_destroy_job_operation_details.go index 8a66cb1cf10..dbeb62f076d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_destroy_job_operation_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_destroy_job_operation_details.go @@ -35,7 +35,7 @@ type CreateDestroyJobOperationDetails struct { ExecutionPlanStrategy DestroyJobOperationDetailsExecutionPlanStrategyEnum `mandatory:"true" json:"executionPlanStrategy"` } -//GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired +// GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired func (m CreateDestroyJobOperationDetails) GetIsProviderUpgradeRequired() *bool { return m.IsProviderUpgradeRequired } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_dev_ops_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_dev_ops_config_source_details.go index 2d98bee4b26..25d777fa6cc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_dev_ops_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_dev_ops_config_source_details.go @@ -40,7 +40,7 @@ type CreateDevOpsConfigSourceDetails struct { BranchName *string `mandatory:"false" json:"branchName"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m CreateDevOpsConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_git_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_git_config_source_details.go index 04fbc29938f..ed13d564512 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_git_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_git_config_source_details.go @@ -41,7 +41,7 @@ type CreateGitConfigSourceDetails struct { BranchName *string `mandatory:"false" json:"branchName"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m CreateGitConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_github_access_token_configuration_source_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_github_access_token_configuration_source_provider_details.go index b819e1b10c6..74da688744b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_github_access_token_configuration_source_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_github_access_token_configuration_source_provider_details.go @@ -53,32 +53,32 @@ type CreateGithubAccessTokenConfigurationSourceProviderDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateGithubAccessTokenConfigurationSourceProviderDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGithubAccessTokenConfigurationSourceProviderDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGithubAccessTokenConfigurationSourceProviderDetails) GetDescription() *string { return m.Description } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m CreateGithubAccessTokenConfigurationSourceProviderDetails) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGithubAccessTokenConfigurationSourceProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGithubAccessTokenConfigurationSourceProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_gitlab_access_token_configuration_source_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_gitlab_access_token_configuration_source_provider_details.go index 2c15d4be02a..648195806af 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_gitlab_access_token_configuration_source_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_gitlab_access_token_configuration_source_provider_details.go @@ -53,32 +53,32 @@ type CreateGitlabAccessTokenConfigurationSourceProviderDetails struct { DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"` } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateGitlabAccessTokenConfigurationSourceProviderDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateGitlabAccessTokenConfigurationSourceProviderDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m CreateGitlabAccessTokenConfigurationSourceProviderDetails) GetDescription() *string { return m.Description } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m CreateGitlabAccessTokenConfigurationSourceProviderDetails) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateGitlabAccessTokenConfigurationSourceProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateGitlabAccessTokenConfigurationSourceProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_import_tf_state_job_operation_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_import_tf_state_job_operation_details.go index 5b34a78377d..aad5549128f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_import_tf_state_job_operation_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_import_tf_state_job_operation_details.go @@ -31,7 +31,7 @@ type CreateImportTfStateJobOperationDetails struct { IsProviderUpgradeRequired *bool `mandatory:"false" json:"isProviderUpgradeRequired"` } -//GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired +// GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired func (m CreateImportTfStateJobOperationDetails) GetIsProviderUpgradeRequired() *bool { return m.IsProviderUpgradeRequired } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_object_storage_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_object_storage_config_source_details.go index da96140308c..a31ead4a0ed 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_object_storage_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_object_storage_config_source_details.go @@ -41,7 +41,7 @@ type CreateObjectStorageConfigSourceDetails struct { WorkingDirectory *string `mandatory:"false" json:"workingDirectory"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m CreateObjectStorageConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_plan_job_operation_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_plan_job_operation_details.go index 38e1aed2610..4d0af1f570a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_plan_job_operation_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_plan_job_operation_details.go @@ -30,7 +30,7 @@ type CreatePlanJobOperationDetails struct { TerraformAdvancedOptions *TerraformAdvancedOptions `mandatory:"false" json:"terraformAdvancedOptions"` } -//GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired +// GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired func (m CreatePlanJobOperationDetails) GetIsProviderUpgradeRequired() *bool { return m.IsProviderUpgradeRequired } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_plan_rollback_job_operation_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_plan_rollback_job_operation_details.go index 48f8f8d48c3..e62bd09f3d1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_plan_rollback_job_operation_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_plan_rollback_job_operation_details.go @@ -34,7 +34,7 @@ type CreatePlanRollbackJobOperationDetails struct { TerraformAdvancedOptions *TerraformAdvancedOptions `mandatory:"false" json:"terraformAdvancedOptions"` } -//GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired +// GetIsProviderUpgradeRequired returns IsProviderUpgradeRequired func (m CreatePlanRollbackJobOperationDetails) GetIsProviderUpgradeRequired() *bool { return m.IsProviderUpgradeRequired } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_stack_template_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_stack_template_config_source_details.go index 825a724ab9a..594a0f5e68a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_stack_template_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_stack_template_config_source_details.go @@ -32,7 +32,7 @@ type CreateStackTemplateConfigSourceDetails struct { WorkingDirectory *string `mandatory:"false" json:"workingDirectory"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m CreateStackTemplateConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_zip_upload_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_zip_upload_config_source_details.go index 06a53a4f449..13cca959c85 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_zip_upload_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/create_zip_upload_config_source_details.go @@ -32,7 +32,7 @@ type CreateZipUploadConfigSourceDetails struct { WorkingDirectory *string `mandatory:"false" json:"workingDirectory"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m CreateZipUploadConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/dev_ops_config_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/dev_ops_config_source.go index 5998fc5ea6d..34838b4b08b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/dev_ops_config_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/dev_ops_config_source.go @@ -40,7 +40,7 @@ type DevOpsConfigSource struct { BranchName *string `mandatory:"false" json:"branchName"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m DevOpsConfigSource) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/git_config_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/git_config_source.go index 9b9902dccd8..540f2c8d07f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/git_config_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/git_config_source.go @@ -40,7 +40,7 @@ type GitConfigSource struct { BranchName *string `mandatory:"false" json:"branchName"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m GitConfigSource) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/github_access_token_configuration_source_provider.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/github_access_token_configuration_source_provider.go index fdd9f9adc60..a49a6c4bece 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/github_access_token_configuration_source_provider.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/github_access_token_configuration_source_provider.go @@ -68,57 +68,57 @@ type GithubAccessTokenConfigurationSourceProvider struct { LifecycleState ConfigurationSourceProviderLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GithubAccessTokenConfigurationSourceProvider) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GithubAccessTokenConfigurationSourceProvider) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GithubAccessTokenConfigurationSourceProvider) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GithubAccessTokenConfigurationSourceProvider) GetDescription() *string { return m.Description } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GithubAccessTokenConfigurationSourceProvider) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GithubAccessTokenConfigurationSourceProvider) GetLifecycleState() ConfigurationSourceProviderLifecycleStateEnum { return m.LifecycleState } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m GithubAccessTokenConfigurationSourceProvider) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetUsername returns Username +// GetUsername returns Username func (m GithubAccessTokenConfigurationSourceProvider) GetUsername() *string { return m.Username } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m GithubAccessTokenConfigurationSourceProvider) GetSecretId() *string { return m.SecretId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GithubAccessTokenConfigurationSourceProvider) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GithubAccessTokenConfigurationSourceProvider) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/github_access_token_configuration_source_provider_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/github_access_token_configuration_source_provider_summary.go index 8263fa03329..742e9a6da8b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/github_access_token_configuration_source_provider_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/github_access_token_configuration_source_provider_summary.go @@ -64,47 +64,47 @@ type GithubAccessTokenConfigurationSourceProviderSummary struct { LifecycleState ConfigurationSourceProviderLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GithubAccessTokenConfigurationSourceProviderSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GithubAccessTokenConfigurationSourceProviderSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GithubAccessTokenConfigurationSourceProviderSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GithubAccessTokenConfigurationSourceProviderSummary) GetDescription() *string { return m.Description } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GithubAccessTokenConfigurationSourceProviderSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GithubAccessTokenConfigurationSourceProviderSummary) GetLifecycleState() ConfigurationSourceProviderLifecycleStateEnum { return m.LifecycleState } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m GithubAccessTokenConfigurationSourceProviderSummary) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GithubAccessTokenConfigurationSourceProviderSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GithubAccessTokenConfigurationSourceProviderSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/gitlab_access_token_configuration_source_provider.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/gitlab_access_token_configuration_source_provider.go index a79df8e6dd5..c51edb59e9e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/gitlab_access_token_configuration_source_provider.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/gitlab_access_token_configuration_source_provider.go @@ -68,57 +68,57 @@ type GitlabAccessTokenConfigurationSourceProvider struct { LifecycleState ConfigurationSourceProviderLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabAccessTokenConfigurationSourceProvider) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabAccessTokenConfigurationSourceProvider) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabAccessTokenConfigurationSourceProvider) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabAccessTokenConfigurationSourceProvider) GetDescription() *string { return m.Description } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabAccessTokenConfigurationSourceProvider) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabAccessTokenConfigurationSourceProvider) GetLifecycleState() ConfigurationSourceProviderLifecycleStateEnum { return m.LifecycleState } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m GitlabAccessTokenConfigurationSourceProvider) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetUsername returns Username +// GetUsername returns Username func (m GitlabAccessTokenConfigurationSourceProvider) GetUsername() *string { return m.Username } -//GetSecretId returns SecretId +// GetSecretId returns SecretId func (m GitlabAccessTokenConfigurationSourceProvider) GetSecretId() *string { return m.SecretId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabAccessTokenConfigurationSourceProvider) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabAccessTokenConfigurationSourceProvider) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/gitlab_access_token_configuration_source_provider_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/gitlab_access_token_configuration_source_provider_summary.go index 3e0324f8c90..c8ad1581274 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/gitlab_access_token_configuration_source_provider_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/gitlab_access_token_configuration_source_provider_summary.go @@ -64,47 +64,47 @@ type GitlabAccessTokenConfigurationSourceProviderSummary struct { LifecycleState ConfigurationSourceProviderLifecycleStateEnum `mandatory:"false" json:"lifecycleState,omitempty"` } -//GetId returns Id +// GetId returns Id func (m GitlabAccessTokenConfigurationSourceProviderSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m GitlabAccessTokenConfigurationSourceProviderSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m GitlabAccessTokenConfigurationSourceProviderSummary) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m GitlabAccessTokenConfigurationSourceProviderSummary) GetDescription() *string { return m.Description } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m GitlabAccessTokenConfigurationSourceProviderSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m GitlabAccessTokenConfigurationSourceProviderSummary) GetLifecycleState() ConfigurationSourceProviderLifecycleStateEnum { return m.LifecycleState } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m GitlabAccessTokenConfigurationSourceProviderSummary) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m GitlabAccessTokenConfigurationSourceProviderSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m GitlabAccessTokenConfigurationSourceProviderSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/object_storage_config_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/object_storage_config_source.go index d295562b57b..7737ee9bb10 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/object_storage_config_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/object_storage_config_source.go @@ -42,7 +42,7 @@ type ObjectStorageConfigSource struct { WorkingDirectory *string `mandatory:"false" json:"workingDirectory"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m ObjectStorageConfigSource) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/resourcemanager_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/resourcemanager_client.go index 6f7d62e4c95..c28311bc5f1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/resourcemanager_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/resourcemanager_client.go @@ -101,7 +101,7 @@ func (client *ResourceManagerClient) ConfigurationProvider() *common.Configurati // A forced cancellation can result in an incorrect state file. // For example, the state file might not reflect the exact state of the provisioned resources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/CancelJob.go.html to see an example of how to use CancelJob API. // A default retry strategy applies to this operation CancelJob() @@ -161,7 +161,7 @@ func (client ResourceManagerClient) cancelJob(ctx context.Context, request commo // For information about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ChangeConfigurationSourceProviderCompartment.go.html to see an example of how to use ChangeConfigurationSourceProviderCompartment API. // A default retry strategy applies to this operation ChangeConfigurationSourceProviderCompartment() @@ -226,7 +226,7 @@ func (client ResourceManagerClient) changeConfigurationSourceProviderCompartment // For information about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ChangePrivateEndpointCompartment.go.html to see an example of how to use ChangePrivateEndpointCompartment API. // A default retry strategy applies to this operation ChangePrivateEndpointCompartment() @@ -291,7 +291,7 @@ func (client ResourceManagerClient) changePrivateEndpointCompartment(ctx context // For information about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ChangeStackCompartment.go.html to see an example of how to use ChangeStackCompartment API. // A default retry strategy applies to this operation ChangeStackCompartment() @@ -356,7 +356,7 @@ func (client ResourceManagerClient) changeStackCompartment(ctx context.Context, // For information about moving resources between compartments, see // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ChangeTemplateCompartment.go.html to see an example of how to use ChangeTemplateCompartment API. // A default retry strategy applies to this operation ChangeTemplateCompartment() @@ -421,7 +421,7 @@ func (client ResourceManagerClient) changeTemplateCompartment(ctx context.Contex // For more information, see // To create a configuration source provider (https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Tasks/managingconfigurationsourceproviders.htm#CreateConfigurationSourceProvider). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/CreateConfigurationSourceProvider.go.html to see an example of how to use CreateConfigurationSourceProvider API. // A default retry strategy applies to this operation CreateConfigurationSourceProvider() @@ -484,7 +484,7 @@ func (client ResourceManagerClient) createConfigurationSourceProvider(ctx contex // CreateJob Creates a job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/CreateJob.go.html to see an example of how to use CreateJob API. // A default retry strategy applies to this operation CreateJob() @@ -547,7 +547,7 @@ func (client ResourceManagerClient) createJob(ctx context.Context, request commo // CreatePrivateEndpoint Creates a private endpoint in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/CreatePrivateEndpoint.go.html to see an example of how to use CreatePrivateEndpoint API. // A default retry strategy applies to this operation CreatePrivateEndpoint() @@ -616,7 +616,7 @@ func (client ResourceManagerClient) createPrivateEndpoint(ctx context.Context, r // For more information, see // Creating Stacks (https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Tasks/create-stack.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/CreateStack.go.html to see an example of how to use CreateStack API. // A default retry strategy applies to this operation CreateStack() @@ -679,7 +679,7 @@ func (client ResourceManagerClient) createStack(ctx context.Context, request com // CreateTemplate Creates a private template in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/CreateTemplate.go.html to see an example of how to use CreateTemplate API. // A default retry strategy applies to this operation CreateTemplate() @@ -742,7 +742,7 @@ func (client ResourceManagerClient) createTemplate(ctx context.Context, request // DeleteConfigurationSourceProvider Deletes the specified configuration source provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/DeleteConfigurationSourceProvider.go.html to see an example of how to use DeleteConfigurationSourceProvider API. // A default retry strategy applies to this operation DeleteConfigurationSourceProvider() @@ -800,7 +800,7 @@ func (client ResourceManagerClient) deleteConfigurationSourceProvider(ctx contex // DeletePrivateEndpoint Deletes the specified private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/DeletePrivateEndpoint.go.html to see an example of how to use DeletePrivateEndpoint API. // A default retry strategy applies to this operation DeletePrivateEndpoint() @@ -858,7 +858,7 @@ func (client ResourceManagerClient) deletePrivateEndpoint(ctx context.Context, r // DeleteStack Deletes the specified stack. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/DeleteStack.go.html to see an example of how to use DeleteStack API. // A default retry strategy applies to this operation DeleteStack() @@ -916,7 +916,7 @@ func (client ResourceManagerClient) deleteStack(ctx context.Context, request com // DeleteTemplate Deletes the specified template. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/DeleteTemplate.go.html to see an example of how to use DeleteTemplate API. // A default retry strategy applies to this operation DeleteTemplate() @@ -974,7 +974,7 @@ func (client ResourceManagerClient) deleteTemplate(ctx context.Context, request // DetectStackDrift Checks drift status for the specified stack. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/DetectStackDrift.go.html to see an example of how to use DetectStackDrift API. // A default retry strategy applies to this operation DetectStackDrift() @@ -1037,7 +1037,7 @@ func (client ResourceManagerClient) detectStackDrift(ctx context.Context, reques // GetConfigurationSourceProvider Gets the properties of the specified configuration source provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetConfigurationSourceProvider.go.html to see an example of how to use GetConfigurationSourceProvider API. // A default retry strategy applies to this operation GetConfigurationSourceProvider() @@ -1095,7 +1095,7 @@ func (client ResourceManagerClient) getConfigurationSourceProvider(ctx context.C // GetJob Gets the properties of the specified job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetJob.go.html to see an example of how to use GetJob API. // A default retry strategy applies to this operation GetJob() @@ -1153,7 +1153,7 @@ func (client ResourceManagerClient) getJob(ctx context.Context, request common.O // GetJobDetailedLogContent Returns the Terraform detailed log content for the specified job in plain text. Learn about Terraform detailed log. (https://www.terraform.io/docs/internals/debugging.html) // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetJobDetailedLogContent.go.html to see an example of how to use GetJobDetailedLogContent API. // A default retry strategy applies to this operation GetJobDetailedLogContent() @@ -1211,7 +1211,7 @@ func (client ResourceManagerClient) getJobDetailedLogContent(ctx context.Context // GetJobLogs Returns console log entries for the specified job in JSON format. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetJobLogs.go.html to see an example of how to use GetJobLogs API. // A default retry strategy applies to this operation GetJobLogs() @@ -1270,7 +1270,7 @@ func (client ResourceManagerClient) getJobLogs(ctx context.Context, request comm // GetJobLogsContent Returns the raw log file for the specified job in text format. // The file includes a maximum of 100,000 log entries. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetJobLogsContent.go.html to see an example of how to use GetJobLogsContent API. // A default retry strategy applies to this operation GetJobLogsContent() @@ -1329,7 +1329,7 @@ func (client ResourceManagerClient) getJobLogsContent(ctx context.Context, reque // GetJobTfConfig Returns the Terraform configuration for the specified job in zip format. // If no zip file is found, returns an error. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetJobTfConfig.go.html to see an example of how to use GetJobTfConfig API. // A default retry strategy applies to this operation GetJobTfConfig() @@ -1388,7 +1388,7 @@ func (client ResourceManagerClient) getJobTfConfig(ctx context.Context, request // For information about running Terraform plan jobs, see // Creating Plan Jobs (https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Tasks/create-job.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetJobTfPlan.go.html to see an example of how to use GetJobTfPlan API. // A default retry strategy applies to this operation GetJobTfPlan() @@ -1445,7 +1445,7 @@ func (client ResourceManagerClient) getJobTfPlan(ctx context.Context, request co // GetJobTfState Returns the Terraform state for the specified job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetJobTfState.go.html to see an example of how to use GetJobTfState API. // A default retry strategy applies to this operation GetJobTfState() @@ -1502,7 +1502,7 @@ func (client ResourceManagerClient) getJobTfState(ctx context.Context, request c // GetPrivateEndpoint Gets the specified private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetPrivateEndpoint.go.html to see an example of how to use GetPrivateEndpoint API. // A default retry strategy applies to this operation GetPrivateEndpoint() @@ -1561,7 +1561,7 @@ func (client ResourceManagerClient) getPrivateEndpoint(ctx context.Context, requ // GetReachableIp Gets the reachable, or alternative, IP address for a nonpublic IP address that is associated with the private endpoint. // Resource Manager uses this IP address to connect to nonpublic resources through the associated private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetReachableIp.go.html to see an example of how to use GetReachableIp API. // A default retry strategy applies to this operation GetReachableIp() @@ -1624,7 +1624,7 @@ func (client ResourceManagerClient) getReachableIp(ctx context.Context, request // GetStack Gets the specified stack. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetStack.go.html to see an example of how to use GetStack API. // A default retry strategy applies to this operation GetStack() @@ -1683,7 +1683,7 @@ func (client ResourceManagerClient) getStack(ctx context.Context, request common // GetStackTfConfig Returns the Terraform configuration file for the specified stack in zip format. // Returns an error if no zip file is found. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetStackTfConfig.go.html to see an example of how to use GetStackTfConfig API. // A default retry strategy applies to this operation GetStackTfConfig() @@ -1740,7 +1740,7 @@ func (client ResourceManagerClient) getStackTfConfig(ctx context.Context, reques // GetStackTfState Returns the Terraform state for the specified stack. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetStackTfState.go.html to see an example of how to use GetStackTfState API. // A default retry strategy applies to this operation GetStackTfState() @@ -1797,7 +1797,7 @@ func (client ResourceManagerClient) getStackTfState(ctx context.Context, request // GetTemplate Gets the specified template. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetTemplate.go.html to see an example of how to use GetTemplate API. // A default retry strategy applies to this operation GetTemplate() @@ -1856,7 +1856,7 @@ func (client ResourceManagerClient) getTemplate(ctx context.Context, request com // GetTemplateLogo Returns the Terraform logo file in .logo format for the specified template. // Returns an error if no logo file is found. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetTemplateLogo.go.html to see an example of how to use GetTemplateLogo API. // A default retry strategy applies to this operation GetTemplateLogo() @@ -1914,7 +1914,7 @@ func (client ResourceManagerClient) getTemplateLogo(ctx context.Context, request // GetTemplateTfConfig Returns the Terraform configuration file in zip format for the specified template. // Returns an error if no zip file is found. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetTemplateTfConfig.go.html to see an example of how to use GetTemplateTfConfig API. // A default retry strategy applies to this operation GetTemplateTfConfig() @@ -1971,7 +1971,7 @@ func (client ResourceManagerClient) getTemplateTfConfig(ctx context.Context, req // GetWorkRequest Returns the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -2031,7 +2031,7 @@ func (client ResourceManagerClient) getWorkRequest(ctx context.Context, request // - For `compartmentId`, lists all configuration source providers in the matching compartment. // - For `configurationSourceProviderId`, lists the matching configuration source provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListConfigurationSourceProviders.go.html to see an example of how to use ListConfigurationSourceProviders API. // A default retry strategy applies to this operation ListConfigurationSourceProviders() @@ -2089,7 +2089,7 @@ func (client ResourceManagerClient) listConfigurationSourceProviders(ctx context // ListJobAssociatedResources Gets the list of resources associated with the specified job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListJobAssociatedResources.go.html to see an example of how to use ListJobAssociatedResources API. // A default retry strategy applies to this operation ListJobAssociatedResources() @@ -2147,7 +2147,7 @@ func (client ResourceManagerClient) listJobAssociatedResources(ctx context.Conte // ListJobOutputs Gets the list of outputs associated with the specified job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListJobOutputs.go.html to see an example of how to use ListJobOutputs API. // A default retry strategy applies to this operation ListJobOutputs() @@ -2208,7 +2208,7 @@ func (client ResourceManagerClient) listJobOutputs(ctx context.Context, request // - To list all jobs in a compartment, provide the compartment OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // - To return a specific job, provide the job OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). (Equivalent to GetStack.) // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListJobs.go.html to see an example of how to use ListJobs API. // A default retry strategy applies to this operation ListJobs() @@ -2268,7 +2268,7 @@ func (client ResourceManagerClient) listJobs(ctx context.Context, request common // - For `compartmentId`, lists all private endpoints in the matching compartment. // - For `privateEndpointId`, lists the matching private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListPrivateEndpoints.go.html to see an example of how to use ListPrivateEndpoints API. // A default retry strategy applies to this operation ListPrivateEndpoints() @@ -2327,7 +2327,7 @@ func (client ResourceManagerClient) listPrivateEndpoints(ctx context.Context, re // ListResourceDiscoveryServices Returns a list of supported services for Resource Discovery (https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Concepts/resource-discovery.htm). // For reference on service names, see the Terraform provider documentation (https://www.terraform.io/docs/providers/oci/guides/resource_discovery.html#services). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListResourceDiscoveryServices.go.html to see an example of how to use ListResourceDiscoveryServices API. // A default retry strategy applies to this operation ListResourceDiscoveryServices() @@ -2385,7 +2385,7 @@ func (client ResourceManagerClient) listResourceDiscoveryServices(ctx context.Co // ListStackAssociatedResources Gets the list of resources associated with the specified stack. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListStackAssociatedResources.go.html to see an example of how to use ListStackAssociatedResources API. // A default retry strategy applies to this operation ListStackAssociatedResources() @@ -2447,7 +2447,7 @@ func (client ResourceManagerClient) listStackAssociatedResources(ctx context.Con // The drift status details correspond to the specified work request (`workRequestId`). // If no work request is specified, then the drift status details correspond to the latest completed work request for the stack. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListStackResourceDriftDetails.go.html to see an example of how to use ListStackResourceDriftDetails API. // A default retry strategy applies to this operation ListStackResourceDriftDetails() @@ -2507,7 +2507,7 @@ func (client ResourceManagerClient) listStackResourceDriftDetails(ctx context.Co // - If called using the compartment ID, returns all stacks in the specified compartment. // - If called using the stack ID, returns the specified stack. (See also GetStack.) // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListStacks.go.html to see an example of how to use ListStacks API. // A default retry strategy applies to this operation ListStacks() @@ -2565,7 +2565,7 @@ func (client ResourceManagerClient) listStacks(ctx context.Context, request comm // ListTemplateCategories Lists template categories. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListTemplateCategories.go.html to see an example of how to use ListTemplateCategories API. // A default retry strategy applies to this operation ListTemplateCategories() @@ -2624,7 +2624,7 @@ func (client ResourceManagerClient) listTemplateCategories(ctx context.Context, // ListTemplates Lists templates according to the specified filter. // The attributes `compartmentId` and `templateCategoryId` are required unless `templateId` is specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListTemplates.go.html to see an example of how to use ListTemplates API. // A default retry strategy applies to this operation ListTemplates() @@ -2682,7 +2682,7 @@ func (client ResourceManagerClient) listTemplates(ctx context.Context, request c // ListTerraformVersions Returns a list of supported Terraform versions for use with stacks. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListTerraformVersions.go.html to see an example of how to use ListTerraformVersions API. // A default retry strategy applies to this operation ListTerraformVersions() @@ -2740,7 +2740,7 @@ func (client ResourceManagerClient) listTerraformVersions(ctx context.Context, r // ListWorkRequestErrors Returns a paginated list of errors for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -2798,7 +2798,7 @@ func (client ResourceManagerClient) listWorkRequestErrors(ctx context.Context, r // ListWorkRequestLogs Returns a paginated list of logs for the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -2856,7 +2856,7 @@ func (client ResourceManagerClient) listWorkRequestLogs(ctx context.Context, req // ListWorkRequests Lists the work requests in the specified compartment or for the specified resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2916,7 +2916,7 @@ func (client ResourceManagerClient) listWorkRequests(ctx context.Context, reques // For more information, see // To edit a configuration source provider (https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Tasks/managingconfigurationsourceproviders.htm#EditConfigurationSourceProvider). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/UpdateConfigurationSourceProvider.go.html to see an example of how to use UpdateConfigurationSourceProvider API. // A default retry strategy applies to this operation UpdateConfigurationSourceProvider() @@ -2974,7 +2974,7 @@ func (client ResourceManagerClient) updateConfigurationSourceProvider(ctx contex // UpdateJob Updates the specified job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/UpdateJob.go.html to see an example of how to use UpdateJob API. // A default retry strategy applies to this operation UpdateJob() @@ -3032,7 +3032,7 @@ func (client ResourceManagerClient) updateJob(ctx context.Context, request commo // UpdatePrivateEndpoint Updates the specified private endpoint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/UpdatePrivateEndpoint.go.html to see an example of how to use UpdatePrivateEndpoint API. // A default retry strategy applies to this operation UpdatePrivateEndpoint() @@ -3094,7 +3094,7 @@ func (client ResourceManagerClient) updatePrivateEndpoint(ctx context.Context, r // For more information, see // Updating Stacks (https://docs.cloud.oracle.com/iaas/Content/ResourceManager/Tasks/update-stack.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/UpdateStack.go.html to see an example of how to use UpdateStack API. // A default retry strategy applies to this operation UpdateStack() @@ -3152,7 +3152,7 @@ func (client ResourceManagerClient) updateStack(ctx context.Context, request com // UpdateTemplate Updates the specified template. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/resourcemanager/UpdateTemplate.go.html to see an example of how to use UpdateTemplate API. // A default retry strategy applies to this operation UpdateTemplate() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_cloud_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_cloud_config_source_details.go index 35794a0b2be..7a69288a14c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_cloud_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_cloud_config_source_details.go @@ -43,7 +43,7 @@ type UpdateBitbucketCloudConfigSourceDetails struct { WorkspaceId *string `mandatory:"false" json:"workspaceId"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m UpdateBitbucketCloudConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_cloud_username_app_password_configuration_source_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_cloud_username_app_password_configuration_source_provider_details.go index 9d01d185ffd..51ae48c572a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_cloud_username_app_password_configuration_source_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_cloud_username_app_password_configuration_source_provider_details.go @@ -52,27 +52,27 @@ type UpdateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails s SecretId *string `mandatory:"false" json:"secretId"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetDescription() *string { return m.Description } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m UpdateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateBitbucketCloudUsernameAppPasswordConfigurationSourceProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_server_access_token_configuration_source_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_server_access_token_configuration_source_provider_details.go index f846c578b74..fb99014c661 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_server_access_token_configuration_source_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_server_access_token_configuration_source_provider_details.go @@ -49,27 +49,27 @@ type UpdateBitbucketServerAccessTokenConfigurationSourceProviderDetails struct { ApiEndpoint *string `mandatory:"false" json:"apiEndpoint"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetDescription() *string { return m.Description } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m UpdateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateBitbucketServerAccessTokenConfigurationSourceProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_server_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_server_config_source_details.go index 271d8298e60..30e093c348b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_server_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_bitbucket_server_config_source_details.go @@ -47,7 +47,7 @@ type UpdateBitbucketServerConfigSourceDetails struct { RepositoryId *string `mandatory:"false" json:"repositoryId"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m UpdateBitbucketServerConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_dev_ops_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_dev_ops_config_source_details.go index 681e4d62246..8b36eb448cb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_dev_ops_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_dev_ops_config_source_details.go @@ -40,7 +40,7 @@ type UpdateDevOpsConfigSourceDetails struct { BranchName *string `mandatory:"false" json:"branchName"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m UpdateDevOpsConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_git_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_git_config_source_details.go index e3c1b6cb19e..d114a872b1a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_git_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_git_config_source_details.go @@ -41,7 +41,7 @@ type UpdateGitConfigSourceDetails struct { BranchName *string `mandatory:"false" json:"branchName"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m UpdateGitConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_github_access_token_configuration_source_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_github_access_token_configuration_source_provider_details.go index 0607be2ea29..750889788fd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_github_access_token_configuration_source_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_github_access_token_configuration_source_provider_details.go @@ -49,27 +49,27 @@ type UpdateGithubAccessTokenConfigurationSourceProviderDetails struct { AccessToken *string `mandatory:"false" json:"accessToken"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGithubAccessTokenConfigurationSourceProviderDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGithubAccessTokenConfigurationSourceProviderDetails) GetDescription() *string { return m.Description } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m UpdateGithubAccessTokenConfigurationSourceProviderDetails) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGithubAccessTokenConfigurationSourceProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGithubAccessTokenConfigurationSourceProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_gitlab_access_token_configuration_source_provider_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_gitlab_access_token_configuration_source_provider_details.go index c2ffe2d9f8b..9618bf8a1ba 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_gitlab_access_token_configuration_source_provider_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_gitlab_access_token_configuration_source_provider_details.go @@ -49,27 +49,27 @@ type UpdateGitlabAccessTokenConfigurationSourceProviderDetails struct { AccessToken *string `mandatory:"false" json:"accessToken"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateGitlabAccessTokenConfigurationSourceProviderDetails) GetDisplayName() *string { return m.DisplayName } -//GetDescription returns Description +// GetDescription returns Description func (m UpdateGitlabAccessTokenConfigurationSourceProviderDetails) GetDescription() *string { return m.Description } -//GetPrivateServerConfigDetails returns PrivateServerConfigDetails +// GetPrivateServerConfigDetails returns PrivateServerConfigDetails func (m UpdateGitlabAccessTokenConfigurationSourceProviderDetails) GetPrivateServerConfigDetails() *PrivateServerConfigDetails { return m.PrivateServerConfigDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateGitlabAccessTokenConfigurationSourceProviderDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateGitlabAccessTokenConfigurationSourceProviderDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_object_storage_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_object_storage_config_source_details.go index f5f77cdd44d..81a5bdbcfa5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_object_storage_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_object_storage_config_source_details.go @@ -41,7 +41,7 @@ type UpdateObjectStorageConfigSourceDetails struct { BucketName *string `mandatory:"false" json:"bucketName"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m UpdateObjectStorageConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_zip_upload_config_source_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_zip_upload_config_source_details.go index 88ac5b5c8da..eec38f0c8cd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_zip_upload_config_source_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/update_zip_upload_config_source_details.go @@ -33,7 +33,7 @@ type UpdateZipUploadConfigSourceDetails struct { ZipFileBase64Encoded *string `mandatory:"false" json:"zipFileBase64Encoded"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m UpdateZipUploadConfigSourceDetails) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/zip_upload_config_source.go b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/zip_upload_config_source.go index 3fefbb1f11f..2d0b078404a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/zip_upload_config_source.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/resourcemanager/zip_upload_config_source.go @@ -31,7 +31,7 @@ type ZipUploadConfigSource struct { WorkingDirectory *string `mandatory:"false" json:"workingDirectory"` } -//GetWorkingDirectory returns WorkingDirectory +// GetWorkingDirectory returns WorkingDirectory func (m ZipUploadConfigSource) GetWorkingDirectory() *string { return m.WorkingDirectory } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/sch/sch_serviceconnector_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/sch/sch_serviceconnector_client.go index a2c041a2810..1f04a9e6007 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/sch/sch_serviceconnector_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/sch/sch_serviceconnector_client.go @@ -100,7 +100,7 @@ func (client *ServiceConnectorClient) ConfigurationProvider() *common.Configurat // connectors, see // To activate a service connector (https://docs.cloud.oracle.com/iaas/Content/service-connector-hub/managingconnectors.htm#activate). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/ActivateServiceConnector.go.html to see an example of how to use ActivateServiceConnector API. func (client ServiceConnectorClient) ActivateServiceConnector(ctx context.Context, request ActivateServiceConnectorRequest) (response ActivateServiceConnectorResponse, err error) { @@ -165,7 +165,7 @@ func (client ServiceConnectorClient) activateServiceConnector(ctx context.Contex // Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/ChangeServiceConnectorCompartment.go.html to see an example of how to use ChangeServiceConnectorCompartment API. func (client ServiceConnectorClient) ChangeServiceConnectorCompartment(ctx context.Context, request ChangeServiceConnectorCompartmentRequest) (response ChangeServiceConnectorCompartmentResponse, err error) { @@ -239,7 +239,7 @@ func (client ServiceConnectorClient) changeServiceConnectorCompartment(ctx conte // activating service connectors, see // To activate or deactivate a service connector (https://docs.cloud.oracle.com/iaas/Content/service-connector-hub/overview.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/CreateServiceConnector.go.html to see an example of how to use CreateServiceConnector API. func (client ServiceConnectorClient) CreateServiceConnector(ctx context.Context, request CreateServiceConnectorRequest) (response CreateServiceConnectorResponse, err error) { @@ -305,7 +305,7 @@ func (client ServiceConnectorClient) createServiceConnector(ctx context.Context, // For instructions on deactivating service connectors, see // To deactivate a service connector (https://docs.cloud.oracle.com/iaas/Content/service-connector-hub/managingconnectors.htm#deactivate). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/DeactivateServiceConnector.go.html to see an example of how to use DeactivateServiceConnector API. func (client ServiceConnectorClient) DeactivateServiceConnector(ctx context.Context, request DeactivateServiceConnectorRequest) (response DeactivateServiceConnectorResponse, err error) { @@ -369,7 +369,7 @@ func (client ServiceConnectorClient) deactivateServiceConnector(ctx context.Cont // After you send your request, the service connector's state is temporarily // DELETING and any data transfer stops. The state then changes to DELETED. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/DeleteServiceConnector.go.html to see an example of how to use DeleteServiceConnector API. func (client ServiceConnectorClient) DeleteServiceConnector(ctx context.Context, request DeleteServiceConnectorRequest) (response DeleteServiceConnectorResponse, err error) { @@ -426,7 +426,7 @@ func (client ServiceConnectorClient) deleteServiceConnector(ctx context.Context, // GetServiceConnector Gets the specified service connector's configuration information. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/GetServiceConnector.go.html to see an example of how to use GetServiceConnector API. func (client ServiceConnectorClient) GetServiceConnector(ctx context.Context, request GetServiceConnectorRequest) (response GetServiceConnectorResponse, err error) { @@ -483,7 +483,7 @@ func (client ServiceConnectorClient) getServiceConnector(ctx context.Context, re // GetWorkRequest Gets the details of the specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client ServiceConnectorClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -540,7 +540,7 @@ func (client ServiceConnectorClient) getWorkRequest(ctx context.Context, request // ListServiceConnectors Lists service connectors in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/ListServiceConnectors.go.html to see an example of how to use ListServiceConnectors API. func (client ServiceConnectorClient) ListServiceConnectors(ctx context.Context, request ListServiceConnectorsRequest) (response ListServiceConnectorsResponse, err error) { @@ -597,7 +597,7 @@ func (client ServiceConnectorClient) listServiceConnectors(ctx context.Context, // ListWorkRequestErrors Lists work request errors for the specified work request. Results are paginated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client ServiceConnectorClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -654,7 +654,7 @@ func (client ServiceConnectorClient) listWorkRequestErrors(ctx context.Context, // ListWorkRequestLogs Lists logs for the specified work request. Results are paginated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client ServiceConnectorClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -711,7 +711,7 @@ func (client ServiceConnectorClient) listWorkRequestLogs(ctx context.Context, re // ListWorkRequests Lists the work requests in the specified compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client ServiceConnectorClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -771,7 +771,7 @@ func (client ServiceConnectorClient) listWorkRequests(ctx context.Context, reque // UPDATING and any data transfer pauses. The state then changes back to its // original value: if ACTIVE, then data transfer resumes. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/sch/UpdateServiceConnector.go.html to see an example of how to use UpdateServiceConnector API. func (client ServiceConnectorClient) UpdateServiceConnector(ctx context.Context, request UpdateServiceConnectorRequest) (response UpdateServiceConnectorResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/secrets/secrets_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/secrets/secrets_client.go index 94d617c9ea3..6807950d062 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/secrets/secrets_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/secrets/secrets_client.go @@ -94,7 +94,7 @@ func (client *SecretsClient) ConfigurationProvider() *common.ConfigurationProvid // GetSecretBundle Gets a secret bundle that matches either the specified `stage`, `secretVersionName`, or `versionNumber` parameter. // If none of these parameters are provided, the bundle for the secret version marked as `CURRENT` will be returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/secrets/GetSecretBundle.go.html to see an example of how to use GetSecretBundle API. // A default retry strategy applies to this operation GetSecretBundle() @@ -153,7 +153,7 @@ func (client SecretsClient) getSecretBundle(ctx context.Context, request common. // GetSecretBundleByName Gets a secret bundle by secret name and vault ID, and secret version that matches either the specified `stage`, `secretVersionName`, or `versionNumber` parameter. // If none of these parameters are provided, the bundle for the secret version marked as `CURRENT` is returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/secrets/GetSecretBundleByName.go.html to see an example of how to use GetSecretBundleByName API. // A default retry strategy applies to this operation GetSecretBundleByName() @@ -211,7 +211,7 @@ func (client SecretsClient) getSecretBundleByName(ctx context.Context, request c // ListSecretBundleVersions Lists all secret bundle versions for the specified secret. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/secrets/ListSecretBundleVersions.go.html to see an example of how to use ListSecretBundleVersions API. // A default retry strategy applies to this operation ListSecretBundleVersions() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/create_private_application_stack_package.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/create_private_application_stack_package.go index 7d30d2b8cd3..1790bff542f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/create_private_application_stack_package.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/create_private_application_stack_package.go @@ -26,7 +26,7 @@ type CreatePrivateApplicationStackPackage struct { ZipFileBase64Encoded *string `mandatory:"false" json:"zipFileBase64Encoded"` } -//GetVersion returns Version +// GetVersion returns Version func (m CreatePrivateApplicationStackPackage) GetVersion() *string { return m.Version } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/private_application_stack_package.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/private_application_stack_package.go index 39590779fdc..65e99d55ee7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/private_application_stack_package.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/private_application_stack_package.go @@ -43,27 +43,27 @@ type PrivateApplicationStackPackage struct { MimeType *string `mandatory:"false" json:"mimeType"` } -//GetId returns Id +// GetId returns Id func (m PrivateApplicationStackPackage) GetId() *string { return m.Id } -//GetPrivateApplicationId returns PrivateApplicationId +// GetPrivateApplicationId returns PrivateApplicationId func (m PrivateApplicationStackPackage) GetPrivateApplicationId() *string { return m.PrivateApplicationId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m PrivateApplicationStackPackage) GetDisplayName() *string { return m.DisplayName } -//GetVersion returns Version +// GetVersion returns Version func (m PrivateApplicationStackPackage) GetVersion() *string { return m.Version } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PrivateApplicationStackPackage) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/servicecatalog_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/servicecatalog_client.go index e563f79c353..d62677536c6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/servicecatalog_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicecatalog/servicecatalog_client.go @@ -93,7 +93,7 @@ func (client *ServiceCatalogClient) ConfigurationProvider() *common.Configuratio // BulkReplaceServiceCatalogAssociations Replace all associations of a given service catalog in one bulk transaction. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/BulkReplaceServiceCatalogAssociations.go.html to see an example of how to use BulkReplaceServiceCatalogAssociations API. func (client ServiceCatalogClient) BulkReplaceServiceCatalogAssociations(ctx context.Context, request BulkReplaceServiceCatalogAssociationsRequest) (response BulkReplaceServiceCatalogAssociationsResponse, err error) { @@ -150,7 +150,7 @@ func (client ServiceCatalogClient) bulkReplaceServiceCatalogAssociations(ctx con // ChangePrivateApplicationCompartment Moves the specified private application from one compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ChangePrivateApplicationCompartment.go.html to see an example of how to use ChangePrivateApplicationCompartment API. func (client ServiceCatalogClient) ChangePrivateApplicationCompartment(ctx context.Context, request ChangePrivateApplicationCompartmentRequest) (response ChangePrivateApplicationCompartmentResponse, err error) { @@ -207,7 +207,7 @@ func (client ServiceCatalogClient) changePrivateApplicationCompartment(ctx conte // ChangeServiceCatalogCompartment Moves the specified service catalog from one compartment to another. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ChangeServiceCatalogCompartment.go.html to see an example of how to use ChangeServiceCatalogCompartment API. func (client ServiceCatalogClient) ChangeServiceCatalogCompartment(ctx context.Context, request ChangeServiceCatalogCompartmentRequest) (response ChangeServiceCatalogCompartmentResponse, err error) { @@ -264,7 +264,7 @@ func (client ServiceCatalogClient) changeServiceCatalogCompartment(ctx context.C // CreatePrivateApplication Creates a private application along with a single package to be hosted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/CreatePrivateApplication.go.html to see an example of how to use CreatePrivateApplication API. func (client ServiceCatalogClient) CreatePrivateApplication(ctx context.Context, request CreatePrivateApplicationRequest) (response CreatePrivateApplicationResponse, err error) { @@ -326,7 +326,7 @@ func (client ServiceCatalogClient) createPrivateApplication(ctx context.Context, // CreateServiceCatalog Creates a brand new service catalog in a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/CreateServiceCatalog.go.html to see an example of how to use CreateServiceCatalog API. func (client ServiceCatalogClient) CreateServiceCatalog(ctx context.Context, request CreateServiceCatalogRequest) (response CreateServiceCatalogResponse, err error) { @@ -388,7 +388,7 @@ func (client ServiceCatalogClient) createServiceCatalog(ctx context.Context, req // CreateServiceCatalogAssociation Creates an association between service catalog and a resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/CreateServiceCatalogAssociation.go.html to see an example of how to use CreateServiceCatalogAssociation API. func (client ServiceCatalogClient) CreateServiceCatalogAssociation(ctx context.Context, request CreateServiceCatalogAssociationRequest) (response CreateServiceCatalogAssociationResponse, err error) { @@ -450,7 +450,7 @@ func (client ServiceCatalogClient) createServiceCatalogAssociation(ctx context.C // DeletePrivateApplication Deletes an existing private application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/DeletePrivateApplication.go.html to see an example of how to use DeletePrivateApplication API. func (client ServiceCatalogClient) DeletePrivateApplication(ctx context.Context, request DeletePrivateApplicationRequest) (response DeletePrivateApplicationResponse, err error) { @@ -507,7 +507,7 @@ func (client ServiceCatalogClient) deletePrivateApplication(ctx context.Context, // DeleteServiceCatalog Deletes the specified service catalog from the compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/DeleteServiceCatalog.go.html to see an example of how to use DeleteServiceCatalog API. func (client ServiceCatalogClient) DeleteServiceCatalog(ctx context.Context, request DeleteServiceCatalogRequest) (response DeleteServiceCatalogResponse, err error) { @@ -564,7 +564,7 @@ func (client ServiceCatalogClient) deleteServiceCatalog(ctx context.Context, req // DeleteServiceCatalogAssociation Removes an association between service catalog and a resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/DeleteServiceCatalogAssociation.go.html to see an example of how to use DeleteServiceCatalogAssociation API. func (client ServiceCatalogClient) DeleteServiceCatalogAssociation(ctx context.Context, request DeleteServiceCatalogAssociationRequest) (response DeleteServiceCatalogAssociationResponse, err error) { @@ -621,7 +621,7 @@ func (client ServiceCatalogClient) deleteServiceCatalogAssociation(ctx context.C // GetPrivateApplication Gets the details of the specified private application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/GetPrivateApplication.go.html to see an example of how to use GetPrivateApplication API. func (client ServiceCatalogClient) GetPrivateApplication(ctx context.Context, request GetPrivateApplicationRequest) (response GetPrivateApplicationResponse, err error) { @@ -678,7 +678,7 @@ func (client ServiceCatalogClient) getPrivateApplication(ctx context.Context, re // GetPrivateApplicationActionDownloadLogo Downloads the binary payload of the logo image of the private application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/GetPrivateApplicationActionDownloadLogo.go.html to see an example of how to use GetPrivateApplicationActionDownloadLogo API. func (client ServiceCatalogClient) GetPrivateApplicationActionDownloadLogo(ctx context.Context, request GetPrivateApplicationActionDownloadLogoRequest) (response GetPrivateApplicationActionDownloadLogoResponse, err error) { @@ -734,7 +734,7 @@ func (client ServiceCatalogClient) getPrivateApplicationActionDownloadLogo(ctx c // GetPrivateApplicationPackage Gets the details of a specific package within a given private application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/GetPrivateApplicationPackage.go.html to see an example of how to use GetPrivateApplicationPackage API. func (client ServiceCatalogClient) GetPrivateApplicationPackage(ctx context.Context, request GetPrivateApplicationPackageRequest) (response GetPrivateApplicationPackageResponse, err error) { @@ -791,7 +791,7 @@ func (client ServiceCatalogClient) getPrivateApplicationPackage(ctx context.Cont // GetPrivateApplicationPackageActionDownloadConfig Downloads the configuration that was used to create the private application package. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/GetPrivateApplicationPackageActionDownloadConfig.go.html to see an example of how to use GetPrivateApplicationPackageActionDownloadConfig API. func (client ServiceCatalogClient) GetPrivateApplicationPackageActionDownloadConfig(ctx context.Context, request GetPrivateApplicationPackageActionDownloadConfigRequest) (response GetPrivateApplicationPackageActionDownloadConfigResponse, err error) { @@ -847,7 +847,7 @@ func (client ServiceCatalogClient) getPrivateApplicationPackageActionDownloadCon // GetServiceCatalog Gets detailed information about the service catalog including name, compartmentId // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/GetServiceCatalog.go.html to see an example of how to use GetServiceCatalog API. func (client ServiceCatalogClient) GetServiceCatalog(ctx context.Context, request GetServiceCatalogRequest) (response GetServiceCatalogResponse, err error) { @@ -904,7 +904,7 @@ func (client ServiceCatalogClient) getServiceCatalog(ctx context.Context, reques // GetServiceCatalogAssociation Gets detailed information about specific service catalog association. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/GetServiceCatalogAssociation.go.html to see an example of how to use GetServiceCatalogAssociation API. func (client ServiceCatalogClient) GetServiceCatalogAssociation(ctx context.Context, request GetServiceCatalogAssociationRequest) (response GetServiceCatalogAssociationResponse, err error) { @@ -961,7 +961,7 @@ func (client ServiceCatalogClient) getServiceCatalogAssociation(ctx context.Cont // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client ServiceCatalogClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -1020,7 +1020,7 @@ func (client ServiceCatalogClient) getWorkRequest(ctx context.Context, request c // If no parameter is specified, all catalogs from all compartments in // the tenancy will be scanned for any type of content. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ListApplications.go.html to see an example of how to use ListApplications API. func (client ServiceCatalogClient) ListApplications(ctx context.Context, request ListApplicationsRequest) (response ListApplicationsResponse, err error) { @@ -1077,7 +1077,7 @@ func (client ServiceCatalogClient) listApplications(ctx context.Context, request // ListPrivateApplicationPackages Lists the packages in the specified private application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ListPrivateApplicationPackages.go.html to see an example of how to use ListPrivateApplicationPackages API. func (client ServiceCatalogClient) ListPrivateApplicationPackages(ctx context.Context, request ListPrivateApplicationPackagesRequest) (response ListPrivateApplicationPackagesResponse, err error) { @@ -1134,7 +1134,7 @@ func (client ServiceCatalogClient) listPrivateApplicationPackages(ctx context.Co // ListPrivateApplications Lists all the private applications in a given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ListPrivateApplications.go.html to see an example of how to use ListPrivateApplications API. func (client ServiceCatalogClient) ListPrivateApplications(ctx context.Context, request ListPrivateApplicationsRequest) (response ListPrivateApplicationsResponse, err error) { @@ -1191,7 +1191,7 @@ func (client ServiceCatalogClient) listPrivateApplications(ctx context.Context, // ListServiceCatalogAssociations Lists all the resource associations for a specific service catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ListServiceCatalogAssociations.go.html to see an example of how to use ListServiceCatalogAssociations API. func (client ServiceCatalogClient) ListServiceCatalogAssociations(ctx context.Context, request ListServiceCatalogAssociationsRequest) (response ListServiceCatalogAssociationsResponse, err error) { @@ -1248,7 +1248,7 @@ func (client ServiceCatalogClient) listServiceCatalogAssociations(ctx context.Co // ListServiceCatalogs Lists all the service catalogs in the given compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ListServiceCatalogs.go.html to see an example of how to use ListServiceCatalogs API. func (client ServiceCatalogClient) ListServiceCatalogs(ctx context.Context, request ListServiceCatalogsRequest) (response ListServiceCatalogsResponse, err error) { @@ -1305,7 +1305,7 @@ func (client ServiceCatalogClient) listServiceCatalogs(ctx context.Context, requ // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client ServiceCatalogClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -1362,7 +1362,7 @@ func (client ServiceCatalogClient) listWorkRequestErrors(ctx context.Context, re // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client ServiceCatalogClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -1419,7 +1419,7 @@ func (client ServiceCatalogClient) listWorkRequestLogs(ctx context.Context, requ // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client ServiceCatalogClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -1476,7 +1476,7 @@ func (client ServiceCatalogClient) listWorkRequests(ctx context.Context, request // UpdatePrivateApplication Updates the details of an existing private application. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/UpdatePrivateApplication.go.html to see an example of how to use UpdatePrivateApplication API. func (client ServiceCatalogClient) UpdatePrivateApplication(ctx context.Context, request UpdatePrivateApplicationRequest) (response UpdatePrivateApplicationResponse, err error) { @@ -1533,7 +1533,7 @@ func (client ServiceCatalogClient) updatePrivateApplication(ctx context.Context, // UpdateServiceCatalog Updates the details of a previously created service catalog. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicecatalog/UpdateServiceCatalog.go.html to see an example of how to use UpdateServiceCatalog API. func (client ServiceCatalogClient) UpdateServiceCatalog(ctx context.Context, request UpdateServiceCatalogRequest) (response UpdateServiceCatalogResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemanagerproxy/servicemanagerproxy_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemanagerproxy/servicemanagerproxy_client.go index 0d9ae9aa080..dbd90b8d27f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemanagerproxy/servicemanagerproxy_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemanagerproxy/servicemanagerproxy_client.go @@ -94,7 +94,7 @@ func (client *ServiceManagerProxyClient) ConfigurationProvider() *common.Configu // GetServiceEnvironment Get the detailed information for a specific service environment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemanagerproxy/GetServiceEnvironment.go.html to see an example of how to use GetServiceEnvironment API. func (client ServiceManagerProxyClient) GetServiceEnvironment(ctx context.Context, request GetServiceEnvironmentRequest) (response GetServiceEnvironmentResponse, err error) { @@ -152,7 +152,7 @@ func (client ServiceManagerProxyClient) getServiceEnvironment(ctx context.Contex // ListServiceEnvironments List the details of Software as a Service (SaaS) environments provisioned by Service Manager. // Information includes the service instance endpoints and service definition details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemanagerproxy/ListServiceEnvironments.go.html to see an example of how to use ListServiceEnvironments API. func (client ServiceManagerProxyClient) ListServiceEnvironments(ctx context.Context, request ListServiceEnvironmentsRequest) (response ListServiceEnvironmentsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_ingress_gateway_traffic_route_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_ingress_gateway_traffic_route_rule.go index b3801c013ee..0d0863c801e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_ingress_gateway_traffic_route_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_ingress_gateway_traffic_route_rule.go @@ -47,12 +47,12 @@ type HttpIngressGatewayTrafficRouteRule struct { PathType HttpIngressGatewayTrafficRouteRulePathTypeEnum `mandatory:"false" json:"pathType,omitempty"` } -//GetIngressGatewayHost returns IngressGatewayHost +// GetIngressGatewayHost returns IngressGatewayHost func (m HttpIngressGatewayTrafficRouteRule) GetIngressGatewayHost() *IngressGatewayHostRef { return m.IngressGatewayHost } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m HttpIngressGatewayTrafficRouteRule) GetDestinations() []VirtualServiceTrafficRuleTarget { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_ingress_gateway_traffic_route_rule_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_ingress_gateway_traffic_route_rule_details.go index 184ac54f033..56bfd3ed87e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_ingress_gateway_traffic_route_rule_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_ingress_gateway_traffic_route_rule_details.go @@ -47,12 +47,12 @@ type HttpIngressGatewayTrafficRouteRuleDetails struct { PathType HttpIngressGatewayTrafficRouteRuleDetailsPathTypeEnum `mandatory:"false" json:"pathType,omitempty"` } -//GetIngressGatewayHost returns IngressGatewayHost +// GetIngressGatewayHost returns IngressGatewayHost func (m HttpIngressGatewayTrafficRouteRuleDetails) GetIngressGatewayHost() *IngressGatewayHostRef { return m.IngressGatewayHost } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m HttpIngressGatewayTrafficRouteRuleDetails) GetDestinations() []VirtualServiceTrafficRuleTargetDetails { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_virtual_service_traffic_route_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_virtual_service_traffic_route_rule.go index eca652f3490..6578373ef95 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_virtual_service_traffic_route_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_virtual_service_traffic_route_rule.go @@ -39,7 +39,7 @@ type HttpVirtualServiceTrafficRouteRule struct { PathType HttpVirtualServiceTrafficRouteRulePathTypeEnum `mandatory:"false" json:"pathType,omitempty"` } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m HttpVirtualServiceTrafficRouteRule) GetDestinations() []VirtualDeploymentTrafficRuleTarget { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_virtual_service_traffic_route_rule_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_virtual_service_traffic_route_rule_details.go index d051ebd0f92..6496c74d8d7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_virtual_service_traffic_route_rule_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/http_virtual_service_traffic_route_rule_details.go @@ -39,7 +39,7 @@ type HttpVirtualServiceTrafficRouteRuleDetails struct { PathType HttpVirtualServiceTrafficRouteRuleDetailsPathTypeEnum `mandatory:"false" json:"pathType,omitempty"` } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m HttpVirtualServiceTrafficRouteRuleDetails) GetDestinations() []VirtualDeploymentTrafficRuleTargetDetails { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/servicemesh_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/servicemesh_client.go index ad138a8f6c0..d93d5189d7a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/servicemesh_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/servicemesh_client.go @@ -93,7 +93,7 @@ func (client *ServiceMeshClient) ConfigurationProvider() *common.ConfigurationPr // CancelWorkRequest Cancels the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. // A default retry strategy applies to this operation CancelWorkRequest() @@ -151,7 +151,7 @@ func (client ServiceMeshClient) cancelWorkRequest(ctx context.Context, request c // ChangeAccessPolicyCompartment Moves an AccessPolicy resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ChangeAccessPolicyCompartment.go.html to see an example of how to use ChangeAccessPolicyCompartment API. // A default retry strategy applies to this operation ChangeAccessPolicyCompartment() @@ -214,7 +214,7 @@ func (client ServiceMeshClient) changeAccessPolicyCompartment(ctx context.Contex // ChangeIngressGatewayCompartment Moves a IngressGateway resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ChangeIngressGatewayCompartment.go.html to see an example of how to use ChangeIngressGatewayCompartment API. // A default retry strategy applies to this operation ChangeIngressGatewayCompartment() @@ -277,7 +277,7 @@ func (client ServiceMeshClient) changeIngressGatewayCompartment(ctx context.Cont // ChangeIngressGatewayRouteTableCompartment Moves a IngressGatewayRouteTable resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ChangeIngressGatewayRouteTableCompartment.go.html to see an example of how to use ChangeIngressGatewayRouteTableCompartment API. // A default retry strategy applies to this operation ChangeIngressGatewayRouteTableCompartment() @@ -340,7 +340,7 @@ func (client ServiceMeshClient) changeIngressGatewayRouteTableCompartment(ctx co // ChangeMeshCompartment Moves a Mesh resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ChangeMeshCompartment.go.html to see an example of how to use ChangeMeshCompartment API. // A default retry strategy applies to this operation ChangeMeshCompartment() @@ -403,7 +403,7 @@ func (client ServiceMeshClient) changeMeshCompartment(ctx context.Context, reque // ChangeVirtualDeploymentCompartment Moves a VirtualDeployment resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ChangeVirtualDeploymentCompartment.go.html to see an example of how to use ChangeVirtualDeploymentCompartment API. // A default retry strategy applies to this operation ChangeVirtualDeploymentCompartment() @@ -466,7 +466,7 @@ func (client ServiceMeshClient) changeVirtualDeploymentCompartment(ctx context.C // ChangeVirtualServiceCompartment Moves a VirtualService resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ChangeVirtualServiceCompartment.go.html to see an example of how to use ChangeVirtualServiceCompartment API. // A default retry strategy applies to this operation ChangeVirtualServiceCompartment() @@ -529,7 +529,7 @@ func (client ServiceMeshClient) changeVirtualServiceCompartment(ctx context.Cont // ChangeVirtualServiceRouteTableCompartment Moves a VirtualServiceRouteTable resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ChangeVirtualServiceRouteTableCompartment.go.html to see an example of how to use ChangeVirtualServiceRouteTableCompartment API. // A default retry strategy applies to this operation ChangeVirtualServiceRouteTableCompartment() @@ -592,7 +592,7 @@ func (client ServiceMeshClient) changeVirtualServiceRouteTableCompartment(ctx co // CreateAccessPolicy Creates a new AccessPolicy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/CreateAccessPolicy.go.html to see an example of how to use CreateAccessPolicy API. // A default retry strategy applies to this operation CreateAccessPolicy() @@ -655,7 +655,7 @@ func (client ServiceMeshClient) createAccessPolicy(ctx context.Context, request // CreateIngressGateway Creates a new IngressGateway. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/CreateIngressGateway.go.html to see an example of how to use CreateIngressGateway API. // A default retry strategy applies to this operation CreateIngressGateway() @@ -718,7 +718,7 @@ func (client ServiceMeshClient) createIngressGateway(ctx context.Context, reques // CreateIngressGatewayRouteTable Creates a new IngressGatewayRouteTable. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/CreateIngressGatewayRouteTable.go.html to see an example of how to use CreateIngressGatewayRouteTable API. // A default retry strategy applies to this operation CreateIngressGatewayRouteTable() @@ -781,7 +781,7 @@ func (client ServiceMeshClient) createIngressGatewayRouteTable(ctx context.Conte // CreateMesh Creates a new Mesh. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/CreateMesh.go.html to see an example of how to use CreateMesh API. // A default retry strategy applies to this operation CreateMesh() @@ -844,7 +844,7 @@ func (client ServiceMeshClient) createMesh(ctx context.Context, request common.O // CreateVirtualDeployment Creates a new VirtualDeployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/CreateVirtualDeployment.go.html to see an example of how to use CreateVirtualDeployment API. // A default retry strategy applies to this operation CreateVirtualDeployment() @@ -907,7 +907,7 @@ func (client ServiceMeshClient) createVirtualDeployment(ctx context.Context, req // CreateVirtualService Creates a new VirtualService. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/CreateVirtualService.go.html to see an example of how to use CreateVirtualService API. // A default retry strategy applies to this operation CreateVirtualService() @@ -970,7 +970,7 @@ func (client ServiceMeshClient) createVirtualService(ctx context.Context, reques // CreateVirtualServiceRouteTable Creates a new VirtualServiceRouteTable. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/CreateVirtualServiceRouteTable.go.html to see an example of how to use CreateVirtualServiceRouteTable API. // A default retry strategy applies to this operation CreateVirtualServiceRouteTable() @@ -1033,7 +1033,7 @@ func (client ServiceMeshClient) createVirtualServiceRouteTable(ctx context.Conte // DeleteAccessPolicy Deletes an AccessPolicy resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/DeleteAccessPolicy.go.html to see an example of how to use DeleteAccessPolicy API. // A default retry strategy applies to this operation DeleteAccessPolicy() @@ -1091,7 +1091,7 @@ func (client ServiceMeshClient) deleteAccessPolicy(ctx context.Context, request // DeleteIngressGateway Deletes an IngressGateway resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/DeleteIngressGateway.go.html to see an example of how to use DeleteIngressGateway API. // A default retry strategy applies to this operation DeleteIngressGateway() @@ -1149,7 +1149,7 @@ func (client ServiceMeshClient) deleteIngressGateway(ctx context.Context, reques // DeleteIngressGatewayRouteTable Deletes a IngressGatewayRouteTable resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/DeleteIngressGatewayRouteTable.go.html to see an example of how to use DeleteIngressGatewayRouteTable API. // A default retry strategy applies to this operation DeleteIngressGatewayRouteTable() @@ -1207,7 +1207,7 @@ func (client ServiceMeshClient) deleteIngressGatewayRouteTable(ctx context.Conte // DeleteMesh Deletes a Mesh resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/DeleteMesh.go.html to see an example of how to use DeleteMesh API. // A default retry strategy applies to this operation DeleteMesh() @@ -1265,7 +1265,7 @@ func (client ServiceMeshClient) deleteMesh(ctx context.Context, request common.O // DeleteVirtualDeployment Deletes a VirtualDeployment resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/DeleteVirtualDeployment.go.html to see an example of how to use DeleteVirtualDeployment API. // A default retry strategy applies to this operation DeleteVirtualDeployment() @@ -1323,7 +1323,7 @@ func (client ServiceMeshClient) deleteVirtualDeployment(ctx context.Context, req // DeleteVirtualService Deletes a VirtualService resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/DeleteVirtualService.go.html to see an example of how to use DeleteVirtualService API. // A default retry strategy applies to this operation DeleteVirtualService() @@ -1381,7 +1381,7 @@ func (client ServiceMeshClient) deleteVirtualService(ctx context.Context, reques // DeleteVirtualServiceRouteTable Deletes a VirtualServiceRouteTable resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/DeleteVirtualServiceRouteTable.go.html to see an example of how to use DeleteVirtualServiceRouteTable API. // A default retry strategy applies to this operation DeleteVirtualServiceRouteTable() @@ -1439,7 +1439,7 @@ func (client ServiceMeshClient) deleteVirtualServiceRouteTable(ctx context.Conte // GetAccessPolicy Get an AccessPolicy by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/GetAccessPolicy.go.html to see an example of how to use GetAccessPolicy API. // A default retry strategy applies to this operation GetAccessPolicy() @@ -1497,7 +1497,7 @@ func (client ServiceMeshClient) getAccessPolicy(ctx context.Context, request com // GetIngressGateway Gets an IngressGateway by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/GetIngressGateway.go.html to see an example of how to use GetIngressGateway API. // A default retry strategy applies to this operation GetIngressGateway() @@ -1555,7 +1555,7 @@ func (client ServiceMeshClient) getIngressGateway(ctx context.Context, request c // GetIngressGatewayRouteTable Gets a IngressGatewayRouteTable by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/GetIngressGatewayRouteTable.go.html to see an example of how to use GetIngressGatewayRouteTable API. // A default retry strategy applies to this operation GetIngressGatewayRouteTable() @@ -1613,7 +1613,7 @@ func (client ServiceMeshClient) getIngressGatewayRouteTable(ctx context.Context, // GetMesh Gets a Mesh by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/GetMesh.go.html to see an example of how to use GetMesh API. // A default retry strategy applies to this operation GetMesh() @@ -1671,7 +1671,7 @@ func (client ServiceMeshClient) getMesh(ctx context.Context, request common.OCIR // GetProxyDetails Returns the attributes of the Proxy such as proxy image version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/GetProxyDetails.go.html to see an example of how to use GetProxyDetails API. // A default retry strategy applies to this operation GetProxyDetails() @@ -1729,7 +1729,7 @@ func (client ServiceMeshClient) getProxyDetails(ctx context.Context, request com // GetVirtualDeployment Gets a VirtualDeployment by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/GetVirtualDeployment.go.html to see an example of how to use GetVirtualDeployment API. // A default retry strategy applies to this operation GetVirtualDeployment() @@ -1787,7 +1787,7 @@ func (client ServiceMeshClient) getVirtualDeployment(ctx context.Context, reques // GetVirtualService Gets a VirtualService by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/GetVirtualService.go.html to see an example of how to use GetVirtualService API. // A default retry strategy applies to this operation GetVirtualService() @@ -1845,7 +1845,7 @@ func (client ServiceMeshClient) getVirtualService(ctx context.Context, request c // GetVirtualServiceRouteTable Gets a VirtualServiceRouteTable by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/GetVirtualServiceRouteTable.go.html to see an example of how to use GetVirtualServiceRouteTable API. // A default retry strategy applies to this operation GetVirtualServiceRouteTable() @@ -1903,7 +1903,7 @@ func (client ServiceMeshClient) getVirtualServiceRouteTable(ctx context.Context, // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1961,7 +1961,7 @@ func (client ServiceMeshClient) getWorkRequest(ctx context.Context, request comm // ListAccessPolicies Returns a list of AccessPolicy objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListAccessPolicies.go.html to see an example of how to use ListAccessPolicies API. // A default retry strategy applies to this operation ListAccessPolicies() @@ -2019,7 +2019,7 @@ func (client ServiceMeshClient) listAccessPolicies(ctx context.Context, request // ListIngressGatewayRouteTables Returns a list of IngressGatewayRouteTable objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListIngressGatewayRouteTables.go.html to see an example of how to use ListIngressGatewayRouteTables API. // A default retry strategy applies to this operation ListIngressGatewayRouteTables() @@ -2077,7 +2077,7 @@ func (client ServiceMeshClient) listIngressGatewayRouteTables(ctx context.Contex // ListIngressGateways Returns a list of IngressGateway objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListIngressGateways.go.html to see an example of how to use ListIngressGateways API. // A default retry strategy applies to this operation ListIngressGateways() @@ -2135,7 +2135,7 @@ func (client ServiceMeshClient) listIngressGateways(ctx context.Context, request // ListMeshes Returns a list of Mesh objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListMeshes.go.html to see an example of how to use ListMeshes API. // A default retry strategy applies to this operation ListMeshes() @@ -2193,7 +2193,7 @@ func (client ServiceMeshClient) listMeshes(ctx context.Context, request common.O // ListVirtualDeployments Returns a list of VirtualDeployments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListVirtualDeployments.go.html to see an example of how to use ListVirtualDeployments API. // A default retry strategy applies to this operation ListVirtualDeployments() @@ -2251,7 +2251,7 @@ func (client ServiceMeshClient) listVirtualDeployments(ctx context.Context, requ // ListVirtualServiceRouteTables Returns a list of VirtualServiceRouteTable objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListVirtualServiceRouteTables.go.html to see an example of how to use ListVirtualServiceRouteTables API. // A default retry strategy applies to this operation ListVirtualServiceRouteTables() @@ -2309,7 +2309,7 @@ func (client ServiceMeshClient) listVirtualServiceRouteTables(ctx context.Contex // ListVirtualServices Returns a list of VirtualService objects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListVirtualServices.go.html to see an example of how to use ListVirtualServices API. // A default retry strategy applies to this operation ListVirtualServices() @@ -2367,7 +2367,7 @@ func (client ServiceMeshClient) listVirtualServices(ctx context.Context, request // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -2425,7 +2425,7 @@ func (client ServiceMeshClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -2483,7 +2483,7 @@ func (client ServiceMeshClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2541,7 +2541,7 @@ func (client ServiceMeshClient) listWorkRequests(ctx context.Context, request co // UpdateAccessPolicy Updates the AccessPolicy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/UpdateAccessPolicy.go.html to see an example of how to use UpdateAccessPolicy API. // A default retry strategy applies to this operation UpdateAccessPolicy() @@ -2604,7 +2604,7 @@ func (client ServiceMeshClient) updateAccessPolicy(ctx context.Context, request // UpdateIngressGateway Updates the IngressGateway. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/UpdateIngressGateway.go.html to see an example of how to use UpdateIngressGateway API. // A default retry strategy applies to this operation UpdateIngressGateway() @@ -2667,7 +2667,7 @@ func (client ServiceMeshClient) updateIngressGateway(ctx context.Context, reques // UpdateIngressGatewayRouteTable Updates the IngressGatewayRouteTable. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/UpdateIngressGatewayRouteTable.go.html to see an example of how to use UpdateIngressGatewayRouteTable API. // A default retry strategy applies to this operation UpdateIngressGatewayRouteTable() @@ -2730,7 +2730,7 @@ func (client ServiceMeshClient) updateIngressGatewayRouteTable(ctx context.Conte // UpdateMesh Updates the Mesh. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/UpdateMesh.go.html to see an example of how to use UpdateMesh API. // A default retry strategy applies to this operation UpdateMesh() @@ -2793,7 +2793,7 @@ func (client ServiceMeshClient) updateMesh(ctx context.Context, request common.O // UpdateVirtualDeployment Updates the VirtualDeployment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/UpdateVirtualDeployment.go.html to see an example of how to use UpdateVirtualDeployment API. // A default retry strategy applies to this operation UpdateVirtualDeployment() @@ -2856,7 +2856,7 @@ func (client ServiceMeshClient) updateVirtualDeployment(ctx context.Context, req // UpdateVirtualService Updates the VirtualService. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/UpdateVirtualService.go.html to see an example of how to use UpdateVirtualService API. // A default retry strategy applies to this operation UpdateVirtualService() @@ -2919,7 +2919,7 @@ func (client ServiceMeshClient) updateVirtualService(ctx context.Context, reques // UpdateVirtualServiceRouteTable Updates the VirtualServiceRouteTable. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/servicemesh/UpdateVirtualServiceRouteTable.go.html to see an example of how to use UpdateVirtualServiceRouteTable API. // A default retry strategy applies to this operation UpdateVirtualServiceRouteTable() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_ingress_gateway_traffic_route_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_ingress_gateway_traffic_route_rule.go index e7a1e0cb5bc..bdaa50f67b8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_ingress_gateway_traffic_route_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_ingress_gateway_traffic_route_rule.go @@ -25,12 +25,12 @@ type TcpIngressGatewayTrafficRouteRule struct { IngressGatewayHost *IngressGatewayHostRef `mandatory:"false" json:"ingressGatewayHost"` } -//GetIngressGatewayHost returns IngressGatewayHost +// GetIngressGatewayHost returns IngressGatewayHost func (m TcpIngressGatewayTrafficRouteRule) GetIngressGatewayHost() *IngressGatewayHostRef { return m.IngressGatewayHost } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m TcpIngressGatewayTrafficRouteRule) GetDestinations() []VirtualServiceTrafficRuleTarget { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_ingress_gateway_traffic_route_rule_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_ingress_gateway_traffic_route_rule_details.go index 5c71b12466c..4deba82faa1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_ingress_gateway_traffic_route_rule_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_ingress_gateway_traffic_route_rule_details.go @@ -25,12 +25,12 @@ type TcpIngressGatewayTrafficRouteRuleDetails struct { IngressGatewayHost *IngressGatewayHostRef `mandatory:"false" json:"ingressGatewayHost"` } -//GetIngressGatewayHost returns IngressGatewayHost +// GetIngressGatewayHost returns IngressGatewayHost func (m TcpIngressGatewayTrafficRouteRuleDetails) GetIngressGatewayHost() *IngressGatewayHostRef { return m.IngressGatewayHost } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m TcpIngressGatewayTrafficRouteRuleDetails) GetDestinations() []VirtualServiceTrafficRuleTargetDetails { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_virtual_service_traffic_route_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_virtual_service_traffic_route_rule.go index b1762bd3440..3822944f8cb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_virtual_service_traffic_route_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_virtual_service_traffic_route_rule.go @@ -23,7 +23,7 @@ type TcpVirtualServiceTrafficRouteRule struct { Destinations []VirtualDeploymentTrafficRuleTarget `mandatory:"true" json:"destinations"` } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m TcpVirtualServiceTrafficRouteRule) GetDestinations() []VirtualDeploymentTrafficRuleTarget { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_virtual_service_traffic_route_rule_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_virtual_service_traffic_route_rule_details.go index e576f9c6cd8..29b289380a3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_virtual_service_traffic_route_rule_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tcp_virtual_service_traffic_route_rule_details.go @@ -23,7 +23,7 @@ type TcpVirtualServiceTrafficRouteRuleDetails struct { Destinations []VirtualDeploymentTrafficRuleTargetDetails `mandatory:"true" json:"destinations"` } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m TcpVirtualServiceTrafficRouteRuleDetails) GetDestinations() []VirtualDeploymentTrafficRuleTargetDetails { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_ingress_gateway_traffic_route_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_ingress_gateway_traffic_route_rule.go index 870bde50413..85831668fc9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_ingress_gateway_traffic_route_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_ingress_gateway_traffic_route_rule.go @@ -25,12 +25,12 @@ type TlsPassthroughIngressGatewayTrafficRouteRule struct { IngressGatewayHost *IngressGatewayHostRef `mandatory:"false" json:"ingressGatewayHost"` } -//GetIngressGatewayHost returns IngressGatewayHost +// GetIngressGatewayHost returns IngressGatewayHost func (m TlsPassthroughIngressGatewayTrafficRouteRule) GetIngressGatewayHost() *IngressGatewayHostRef { return m.IngressGatewayHost } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m TlsPassthroughIngressGatewayTrafficRouteRule) GetDestinations() []VirtualServiceTrafficRuleTarget { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_ingress_gateway_traffic_route_rule_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_ingress_gateway_traffic_route_rule_details.go index 8d65dd5d450..8ee5caf7774 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_ingress_gateway_traffic_route_rule_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_ingress_gateway_traffic_route_rule_details.go @@ -25,12 +25,12 @@ type TlsPassthroughIngressGatewayTrafficRouteRuleDetails struct { IngressGatewayHost *IngressGatewayHostRef `mandatory:"false" json:"ingressGatewayHost"` } -//GetIngressGatewayHost returns IngressGatewayHost +// GetIngressGatewayHost returns IngressGatewayHost func (m TlsPassthroughIngressGatewayTrafficRouteRuleDetails) GetIngressGatewayHost() *IngressGatewayHostRef { return m.IngressGatewayHost } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m TlsPassthroughIngressGatewayTrafficRouteRuleDetails) GetDestinations() []VirtualServiceTrafficRuleTargetDetails { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_virtual_service_traffic_route_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_virtual_service_traffic_route_rule.go index dae23771e73..a064b3a094f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_virtual_service_traffic_route_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_virtual_service_traffic_route_rule.go @@ -23,7 +23,7 @@ type TlsPassthroughVirtualServiceTrafficRouteRule struct { Destinations []VirtualDeploymentTrafficRuleTarget `mandatory:"true" json:"destinations"` } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m TlsPassthroughVirtualServiceTrafficRouteRule) GetDestinations() []VirtualDeploymentTrafficRuleTarget { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_virtual_service_traffic_route_rule_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_virtual_service_traffic_route_rule_details.go index 8455623774a..f94ceaee0ee 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_virtual_service_traffic_route_rule_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/servicemesh/tls_passthrough_virtual_service_traffic_route_rule_details.go @@ -23,7 +23,7 @@ type TlsPassthroughVirtualServiceTrafficRouteRuleDetails struct { Destinations []VirtualDeploymentTrafficRuleTargetDetails `mandatory:"true" json:"destinations"` } -//GetDestinations returns Destinations +// GetDestinations returns Destinations func (m TlsPassthroughVirtualServiceTrafficRouteRuleDetails) GetDestinations() []VirtualDeploymentTrafficRuleTargetDetails { return m.Destinations } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/auto_promote_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/auto_promote_config_details.go index 59baf77de6c..1c9d54b477a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/auto_promote_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/auto_promote_config_details.go @@ -59,47 +59,47 @@ type AutoPromoteConfigDetails struct { LifecycleState ConfigLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m AutoPromoteConfigDetails) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AutoPromoteConfigDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AutoPromoteConfigDetails) GetDisplayName() *string { return m.DisplayName } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AutoPromoteConfigDetails) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AutoPromoteConfigDetails) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AutoPromoteConfigDetails) GetLifecycleState() ConfigLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AutoPromoteConfigDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AutoPromoteConfigDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AutoPromoteConfigDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/auto_promote_config_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/auto_promote_config_summary.go index 68a75b4a4b0..29b361e9aef 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/auto_promote_config_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/auto_promote_config_summary.go @@ -56,47 +56,47 @@ type AutoPromoteConfigSummary struct { LifecycleState ConfigLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m AutoPromoteConfigSummary) GetId() *string { return m.Id } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m AutoPromoteConfigSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m AutoPromoteConfigSummary) GetDisplayName() *string { return m.DisplayName } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m AutoPromoteConfigSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m AutoPromoteConfigSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m AutoPromoteConfigSummary) GetLifecycleState() ConfigLifecycleStateEnum { return m.LifecycleState } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m AutoPromoteConfigSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m AutoPromoteConfigSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m AutoPromoteConfigSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/create_auto_promote_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/create_auto_promote_config_details.go index 5c2c79447e5..b613098105f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/create_auto_promote_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/create_auto_promote_config_details.go @@ -40,22 +40,22 @@ type CreateAutoPromoteConfigDetails struct { ResourceType CreateAutoPromoteConfigDetailsResourceTypeEnum `mandatory:"true" json:"resourceType"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateAutoPromoteConfigDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateAutoPromoteConfigDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateAutoPromoteConfigDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateAutoPromoteConfigDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/encrypted_credentials.go b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/encrypted_credentials.go index 809f6ca796b..b1e7167fdf1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/encrypted_credentials.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/encrypted_credentials.go @@ -40,22 +40,22 @@ type EncryptedCredentials struct { Description *string `mandatory:"false" json:"description"` } -//GetSource returns Source +// GetSource returns Source func (m EncryptedCredentials) GetSource() *string { return m.Source } -//GetName returns Name +// GetName returns Name func (m EncryptedCredentials) GetName() *string { return m.Name } -//GetType returns Type +// GetType returns Type func (m EncryptedCredentials) GetType() *string { return m.Type } -//GetDescription returns Description +// GetDescription returns Description func (m EncryptedCredentials) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/plain_text_credentials.go b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/plain_text_credentials.go index 52c20df3770..e885fee4cca 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/plain_text_credentials.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/plain_text_credentials.go @@ -37,22 +37,22 @@ type PlainTextCredentials struct { Description *string `mandatory:"false" json:"description"` } -//GetSource returns Source +// GetSource returns Source func (m PlainTextCredentials) GetSource() *string { return m.Source } -//GetName returns Name +// GetName returns Name func (m PlainTextCredentials) GetName() *string { return m.Name } -//GetType returns Type +// GetType returns Type func (m PlainTextCredentials) GetType() *string { return m.Type } -//GetDescription returns Description +// GetDescription returns Description func (m PlainTextCredentials) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/pre_existing_credentials.go b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/pre_existing_credentials.go index a9d071f0fd0..52a57ea90bc 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/pre_existing_credentials.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/pre_existing_credentials.go @@ -33,22 +33,22 @@ type PreExistingCredentials struct { Description *string `mandatory:"false" json:"description"` } -//GetSource returns Source +// GetSource returns Source func (m PreExistingCredentials) GetSource() *string { return m.Source } -//GetName returns Name +// GetName returns Name func (m PreExistingCredentials) GetName() *string { return m.Name } -//GetType returns Type +// GetType returns Type func (m PreExistingCredentials) GetType() *string { return m.Type } -//GetDescription returns Description +// GetDescription returns Description func (m PreExistingCredentials) GetDescription() *string { return m.Description } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/stackmonitoring_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/stackmonitoring_client.go index ce710be060b..64f85e9cbf1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/stackmonitoring_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/stackmonitoring_client.go @@ -95,7 +95,7 @@ func (client *StackMonitoringClient) ConfigurationProvider() *common.Configurati // between resources from different compartments as long they are in same tenancy. // User should have required access in both the compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/AssociateMonitoredResources.go.html to see an example of how to use AssociateMonitoredResources API. func (client StackMonitoringClient) AssociateMonitoredResources(ctx context.Context, request AssociateMonitoredResourcesRequest) (response AssociateMonitoredResourcesResponse, err error) { @@ -164,7 +164,7 @@ func (client StackMonitoringClient) associateMonitoredResources(ctx context.Cont // recreating it in another compartment. // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/ChangeConfigCompartment.go.html to see an example of how to use ChangeConfigCompartment API. // A default retry strategy applies to this operation ChangeConfigCompartment() @@ -228,7 +228,7 @@ func (client StackMonitoringClient) changeConfigCompartment(ctx context.Context, // ChangeMonitoredResourceCompartment Moves a monitored resource from one compartment to another. // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/ChangeMonitoredResourceCompartment.go.html to see an example of how to use ChangeMonitoredResourceCompartment API. func (client StackMonitoringClient) ChangeMonitoredResourceCompartment(ctx context.Context, request ChangeMonitoredResourceCompartmentRequest) (response ChangeMonitoredResourceCompartmentResponse, err error) { @@ -295,7 +295,7 @@ func (client StackMonitoringClient) changeMonitoredResourceCompartment(ctx conte // The configuration item will determine if HOST resources in the selected compartment will be // discovered automatically. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/CreateConfig.go.html to see an example of how to use CreateConfig API. // A default retry strategy applies to this operation CreateConfig() @@ -358,7 +358,7 @@ func (client StackMonitoringClient) createConfig(ctx context.Context, request co // CreateDiscoveryJob API to create discovery Job and submit discovery Details to agent. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/CreateDiscoveryJob.go.html to see an example of how to use CreateDiscoveryJob API. func (client StackMonitoringClient) CreateDiscoveryJob(ctx context.Context, request CreateDiscoveryJobRequest) (response CreateDiscoveryJobResponse, err error) { @@ -422,7 +422,7 @@ func (client StackMonitoringClient) createDiscoveryJob(ctx context.Context, requ // a work request for promoting the resource to agent. Once the resource is successfully // added to agent, resource state will be marked active. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/CreateMonitoredResource.go.html to see an example of how to use CreateMonitoredResource API. func (client StackMonitoringClient) CreateMonitoredResource(ctx context.Context, request CreateMonitoredResourceRequest) (response CreateMonitoredResourceResponse, err error) { @@ -484,7 +484,7 @@ func (client StackMonitoringClient) createMonitoredResource(ctx context.Context, // DeleteConfig Deletes a configuration identified by the id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/DeleteConfig.go.html to see an example of how to use DeleteConfig API. // A default retry strategy applies to this operation DeleteConfig() @@ -542,7 +542,7 @@ func (client StackMonitoringClient) deleteConfig(ctx context.Context, request co // DeleteDiscoveryJob Deletes a DiscoveryJob by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/DeleteDiscoveryJob.go.html to see an example of how to use DeleteDiscoveryJob API. // A default retry strategy applies to this operation DeleteDiscoveryJob() @@ -603,7 +603,7 @@ func (client StackMonitoringClient) deleteDiscoveryJob(ctx context.Context, requ // then the member resources will be deleted too. If the operation fails partially, the deleted entries // will not be rolled back. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/DeleteMonitoredResource.go.html to see an example of how to use DeleteMonitoredResource API. func (client StackMonitoringClient) DeleteMonitoredResource(ctx context.Context, request DeleteMonitoredResourceRequest) (response DeleteMonitoredResourceResponse, err error) { @@ -661,7 +661,7 @@ func (client StackMonitoringClient) deleteMonitoredResource(ctx context.Context, // DisableExternalDatabase Disable external database resource monitoring. All the references in DBaaS, // DBM and resource service will be deleted as part of this operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/DisableExternalDatabase.go.html to see an example of how to use DisableExternalDatabase API. func (client StackMonitoringClient) DisableExternalDatabase(ctx context.Context, request DisableExternalDatabaseRequest) (response DisableExternalDatabaseResponse, err error) { @@ -723,7 +723,7 @@ func (client StackMonitoringClient) disableExternalDatabase(ctx context.Context, // DisassociateMonitoredResources Removes associations between two monitored resources. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/DisassociateMonitoredResources.go.html to see an example of how to use DisassociateMonitoredResources API. func (client StackMonitoringClient) DisassociateMonitoredResources(ctx context.Context, request DisassociateMonitoredResourcesRequest) (response DisassociateMonitoredResourcesResponse, err error) { @@ -785,7 +785,7 @@ func (client StackMonitoringClient) disassociateMonitoredResources(ctx context.C // GetConfig Gets the details of a configuration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/GetConfig.go.html to see an example of how to use GetConfig API. // A default retry strategy applies to this operation GetConfig() @@ -843,7 +843,7 @@ func (client StackMonitoringClient) getConfig(ctx context.Context, request commo // GetDiscoveryJob API to get the details of discovery Job by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/GetDiscoveryJob.go.html to see an example of how to use GetDiscoveryJob API. // A default retry strategy applies to this operation GetDiscoveryJob() @@ -901,7 +901,7 @@ func (client StackMonitoringClient) getDiscoveryJob(ctx context.Context, request // GetMonitoredResource Get monitored resource for the given identifier OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/GetMonitoredResource.go.html to see an example of how to use GetMonitoredResource API. // A default retry strategy applies to this operation GetMonitoredResource() @@ -959,7 +959,7 @@ func (client StackMonitoringClient) getMonitoredResource(ctx context.Context, re // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1017,7 +1017,7 @@ func (client StackMonitoringClient) getWorkRequest(ctx context.Context, request // ListConfigs Get a list of configurations in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/ListConfigs.go.html to see an example of how to use ListConfigs API. // A default retry strategy applies to this operation ListConfigs() @@ -1075,7 +1075,7 @@ func (client StackMonitoringClient) listConfigs(ctx context.Context, request com // ListDiscoveryJobLogs API to get all the logs of a Discovery Job. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/ListDiscoveryJobLogs.go.html to see an example of how to use ListDiscoveryJobLogs API. // A default retry strategy applies to this operation ListDiscoveryJobLogs() @@ -1133,7 +1133,7 @@ func (client StackMonitoringClient) listDiscoveryJobLogs(ctx context.Context, re // ListDiscoveryJobs API to get the details of all Discovery Jobs. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/ListDiscoveryJobs.go.html to see an example of how to use ListDiscoveryJobs API. // A default retry strategy applies to this operation ListDiscoveryJobs() @@ -1191,7 +1191,7 @@ func (client StackMonitoringClient) listDiscoveryJobs(ctx context.Context, reque // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1249,7 +1249,7 @@ func (client StackMonitoringClient) listWorkRequestErrors(ctx context.Context, r // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1307,7 +1307,7 @@ func (client StackMonitoringClient) listWorkRequestLogs(ctx context.Context, req // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1366,7 +1366,7 @@ func (client StackMonitoringClient) listWorkRequests(ctx context.Context, reques // SearchAssociatedResources List all associated resources recursively up-to a specified level, // for the monitored resources of type specified. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/SearchAssociatedResources.go.html to see an example of how to use SearchAssociatedResources API. // A default retry strategy applies to this operation SearchAssociatedResources() @@ -1429,7 +1429,7 @@ func (client StackMonitoringClient) searchAssociatedResources(ctx context.Contex // SearchMonitoredResourceAssociations Search associations in the given compartment based on the search criteria. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/SearchMonitoredResourceAssociations.go.html to see an example of how to use SearchMonitoredResourceAssociations API. // A default retry strategy applies to this operation SearchMonitoredResourceAssociations() @@ -1492,7 +1492,7 @@ func (client StackMonitoringClient) searchMonitoredResourceAssociations(ctx cont // SearchMonitoredResourceMembers List the member resources for the given monitored resource identifier OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/SearchMonitoredResourceMembers.go.html to see an example of how to use SearchMonitoredResourceMembers API. // A default retry strategy applies to this operation SearchMonitoredResourceMembers() @@ -1555,7 +1555,7 @@ func (client StackMonitoringClient) searchMonitoredResourceMembers(ctx context.C // SearchMonitoredResources Gets a list of all monitored resources in a compartment for the given search criteria. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/SearchMonitoredResources.go.html to see an example of how to use SearchMonitoredResources API. // A default retry strategy applies to this operation SearchMonitoredResources() @@ -1621,7 +1621,7 @@ func (client StackMonitoringClient) searchMonitoredResources(ctx context.Context // If association types not specified, then tags will be updated only for the resource identified by // the given monitored resource identifier OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/UpdateAndPropagateTags.go.html to see an example of how to use UpdateAndPropagateTags API. // A default retry strategy applies to this operation UpdateAndPropagateTags() @@ -1684,7 +1684,7 @@ func (client StackMonitoringClient) updateAndPropagateTags(ctx context.Context, // UpdateConfig Updates the configuration identified by the id given. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/UpdateConfig.go.html to see an example of how to use UpdateConfig API. // A default retry strategy applies to this operation UpdateConfig() @@ -1744,7 +1744,7 @@ func (client StackMonitoringClient) updateConfig(ctx context.Context, request co // Note that "properties" object, if specified, will entirely replace the existing object, // as part this operation. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/stackmonitoring/UpdateMonitoredResource.go.html to see an example of how to use UpdateMonitoredResource API. func (client StackMonitoringClient) UpdateMonitoredResource(ctx context.Context, request UpdateMonitoredResourceRequest) (response UpdateMonitoredResourceResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/update_auto_promote_config_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/update_auto_promote_config_details.go index 4466e075038..c4783259bc6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/update_auto_promote_config_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/stackmonitoring/update_auto_promote_config_details.go @@ -34,17 +34,17 @@ type UpdateAutoPromoteConfigDetails struct { IsEnabled *bool `mandatory:"false" json:"isEnabled"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateAutoPromoteConfigDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateAutoPromoteConfigDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateAutoPromoteConfigDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/streaming/streaming_stream_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/streaming/streaming_stream_client.go index 3d3fc7c2ce7..5b71b15fed9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/streaming/streaming_stream_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/streaming/streaming_stream_client.go @@ -80,7 +80,7 @@ func (client *StreamClient) ConfigurationProvider() *common.ConfigurationProvide // ConsumerCommit Provides a mechanism to manually commit offsets, if not using commit-on-get consumer semantics. // This commits offsets assicated with the provided cursor, extends the timeout on each of the affected partitions, and returns an updated cursor. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/ConsumerCommit.go.html to see an example of how to use ConsumerCommit API. // A default retry strategy applies to this operation ConsumerCommit() @@ -138,7 +138,7 @@ func (client StreamClient) consumerCommit(ctx context.Context, request common.OC // ConsumerHeartbeat Allows long-running processes to extend the timeout on partitions reserved by a consumer instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/ConsumerHeartbeat.go.html to see an example of how to use ConsumerHeartbeat API. // A default retry strategy applies to this operation ConsumerHeartbeat() @@ -200,7 +200,7 @@ func (client StreamClient) consumerHeartbeat(ctx context.Context, request common // on the most recent message allows consumption of only messages that are added to the stream after you create the cursor. Cursors expire // five minutes after you receive them from the service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/CreateCursor.go.html to see an example of how to use CreateCursor API. // A default retry strategy applies to this operation CreateCursor() @@ -258,7 +258,7 @@ func (client StreamClient) createCursor(ctx context.Context, request common.OCIR // CreateGroupCursor Creates a group-cursor. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/CreateGroupCursor.go.html to see an example of how to use CreateGroupCursor API. // A default retry strategy applies to this operation CreateGroupCursor() @@ -316,7 +316,7 @@ func (client StreamClient) createGroupCursor(ctx context.Context, request common // GetGroup Returns the current state of a consumer group. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/GetGroup.go.html to see an example of how to use GetGroup API. // A default retry strategy applies to this operation GetGroup() @@ -376,7 +376,7 @@ func (client StreamClient) getGroup(ctx context.Context, request common.OCIReque // To get messages, you must first obtain a cursor using the CreateCursor operation. // In the response, retrieve the value of the 'opc-next-cursor' header to pass as a parameter to get the next batch of messages in the stream. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/GetMessages.go.html to see an example of how to use GetMessages API. // A default retry strategy applies to this operation GetMessages() @@ -437,7 +437,7 @@ func (client StreamClient) getMessages(ctx context.Context, request common.OCIRe // If a message does not contain a key or if the key is null, the service generates a message key for you. // The partition ID cannot be passed as a parameter. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/PutMessages.go.html to see an example of how to use PutMessages API. func (client StreamClient) PutMessages(ctx context.Context, request PutMessagesRequest) (response PutMessagesResponse, err error) { @@ -504,7 +504,7 @@ func (client StreamClient) putMessages(ctx context.Context, request common.OCIRe // UpdateGroup Forcefully changes the current location of a group as a whole; reseting processing location of all consumers to a particular location in the stream. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/UpdateGroup.go.html to see an example of how to use UpdateGroup API. // A default retry strategy applies to this operation UpdateGroup() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/streaming/streaming_streamadmin_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/streaming/streaming_streamadmin_client.go index 3a8892f09a6..40d8f4e6075 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/streaming/streaming_streamadmin_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/streaming/streaming_streamadmin_client.go @@ -93,7 +93,7 @@ func (client *StreamAdminClient) ConfigurationProvider() *common.ConfigurationPr // ChangeConnectHarnessCompartment Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/ChangeConnectHarnessCompartment.go.html to see an example of how to use ChangeConnectHarnessCompartment API. // A default retry strategy applies to this operation ChangeConnectHarnessCompartment() @@ -153,7 +153,7 @@ func (client StreamAdminClient) changeConnectHarnessCompartment(ctx context.Cont // When provided, If-Match is checked against ETag values of the resource. // The stream will also be moved into the default stream pool in the destination compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/ChangeStreamCompartment.go.html to see an example of how to use ChangeStreamCompartment API. // A default retry strategy applies to this operation ChangeStreamCompartment() @@ -211,7 +211,7 @@ func (client StreamAdminClient) changeStreamCompartment(ctx context.Context, req // ChangeStreamPoolCompartment Moves a resource into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/ChangeStreamPoolCompartment.go.html to see an example of how to use ChangeStreamPoolCompartment API. // A default retry strategy applies to this operation ChangeStreamPoolCompartment() @@ -270,7 +270,7 @@ func (client StreamAdminClient) changeStreamPoolCompartment(ctx context.Context, // CreateConnectHarness Starts the provisioning of a new connect harness. // To track the progress of the provisioning, you can periodically call ConnectHarness object tells you its current state. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/CreateConnectHarness.go.html to see an example of how to use CreateConnectHarness API. // A default retry strategy applies to this operation CreateConnectHarness() @@ -337,7 +337,7 @@ func (client StreamAdminClient) createConnectHarness(ctx context.Context, reques // To track the progress of the provisioning, you can periodically call GetStream. // In the response, the `lifecycleState` parameter of the Stream object tells you its current state. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/CreateStream.go.html to see an example of how to use CreateStream API. // A default retry strategy applies to this operation CreateStream() @@ -397,7 +397,7 @@ func (client StreamAdminClient) createStream(ctx context.Context, request common // To track the progress of the provisioning, you can periodically call GetStreamPool. // In the response, the `lifecycleState` parameter of the object tells you its current state. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/CreateStreamPool.go.html to see an example of how to use CreateStreamPool API. // A default retry strategy applies to this operation CreateStreamPool() @@ -464,7 +464,7 @@ func (client StreamAdminClient) createStreamPool(ctx context.Context, request co // lifecycle state as `DELETED`, then the connect harness has been deleted. If the call returns a "404 Not Found" error, that means all records of the // connect harness have been deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/DeleteConnectHarness.go.html to see an example of how to use DeleteConnectHarness API. // A default retry strategy applies to this operation DeleteConnectHarness() @@ -526,7 +526,7 @@ func (client StreamAdminClient) deleteConnectHarness(ctx context.Context, reques // lifecycle state as `DELETED`, then the stream has been deleted. If the call returns a "404 Not Found" error, that means all records of the // stream have been deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/DeleteStream.go.html to see an example of how to use DeleteStream API. // A default retry strategy applies to this operation DeleteStream() @@ -585,7 +585,7 @@ func (client StreamAdminClient) deleteStream(ctx context.Context, request common // DeleteStreamPool Deletes a stream pool. All containing streams will also be deleted. // The default stream pool of a compartment cannot be deleted. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/DeleteStreamPool.go.html to see an example of how to use DeleteStreamPool API. // A default retry strategy applies to this operation DeleteStreamPool() @@ -643,7 +643,7 @@ func (client StreamAdminClient) deleteStreamPool(ctx context.Context, request co // GetConnectHarness Gets detailed information about a connect harness. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/GetConnectHarness.go.html to see an example of how to use GetConnectHarness API. // A default retry strategy applies to this operation GetConnectHarness() @@ -701,7 +701,7 @@ func (client StreamAdminClient) getConnectHarness(ctx context.Context, request c // GetStream Gets detailed information about a stream, including the number of partitions. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/GetStream.go.html to see an example of how to use GetStream API. // A default retry strategy applies to this operation GetStream() @@ -759,7 +759,7 @@ func (client StreamAdminClient) getStream(ctx context.Context, request common.OC // GetStreamPool Gets detailed information about the stream pool, such as Kafka settings. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/GetStreamPool.go.html to see an example of how to use GetStreamPool API. // A default retry strategy applies to this operation GetStreamPool() @@ -817,7 +817,7 @@ func (client StreamAdminClient) getStreamPool(ctx context.Context, request commo // ListConnectHarnesses Lists the connectharness. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/ListConnectHarnesses.go.html to see an example of how to use ListConnectHarnesses API. // A default retry strategy applies to this operation ListConnectHarnesses() @@ -875,7 +875,7 @@ func (client StreamAdminClient) listConnectHarnesses(ctx context.Context, reques // ListStreamPools List the stream pools for a given compartment ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/ListStreamPools.go.html to see an example of how to use ListStreamPools API. // A default retry strategy applies to this operation ListStreamPools() @@ -936,7 +936,7 @@ func (client StreamAdminClient) listStreamPools(ctx context.Context, request com // If the stream pool id is specified, the action will be scoped to that stream pool. // The compartment id and stream pool id cannot be specified at the same time. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/ListStreams.go.html to see an example of how to use ListStreams API. // A default retry strategy applies to this operation ListStreams() @@ -994,7 +994,7 @@ func (client StreamAdminClient) listStreams(ctx context.Context, request common. // UpdateConnectHarness Updates the tags applied to the connect harness. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/UpdateConnectHarness.go.html to see an example of how to use UpdateConnectHarness API. // A default retry strategy applies to this operation UpdateConnectHarness() @@ -1052,7 +1052,7 @@ func (client StreamAdminClient) updateConnectHarness(ctx context.Context, reques // UpdateStream Updates the stream. Only specified values will be updated. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/UpdateStream.go.html to see an example of how to use UpdateStream API. // A default retry strategy applies to this operation UpdateStream() @@ -1110,7 +1110,7 @@ func (client StreamAdminClient) updateStream(ctx context.Context, request common // UpdateStreamPool Updates the specified stream pool. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/streaming/UpdateStreamPool.go.html to see an example of how to use UpdateStreamPool API. // A default retry strategy applies to this operation UpdateStreamPool() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_resources_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_resources_client.go index 05bbc8e38e9..9776f445d29 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_resources_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_resources_client.go @@ -94,7 +94,7 @@ func (client *ResourcesClient) ConfigurationProvider() *common.ConfigurationProv // ListResourceQuota Returns the resource quota details under a tenancy // > **Important**: Calls to this API will only succeed against the endpoint in the home region. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usage/ListResourceQuota.go.html to see an example of how to use ListResourceQuota API. // A default retry strategy applies to this operation ListResourceQuota() @@ -153,7 +153,7 @@ func (client ResourcesClient) listResourceQuota(ctx context.Context, request com // ListResources Returns the resource details for a service // > **Important**: Calls to this API will only succeed against the endpoint in the home region. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usage/ListResources.go.html to see an example of how to use ListResources API. // A default retry strategy applies to this operation ListResources() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_rewards_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_rewards_client.go index 378753d59ab..ef867136ce4 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_rewards_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_rewards_client.go @@ -93,7 +93,7 @@ func (client *RewardsClient) ConfigurationProvider() *common.ConfigurationProvid // CreateRedeemableUser Adds the list of redeemable user summary for a subscription ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usage/CreateRedeemableUser.go.html to see an example of how to use CreateRedeemableUser API. func (client RewardsClient) CreateRedeemableUser(ctx context.Context, request CreateRedeemableUserRequest) (response CreateRedeemableUserResponse, err error) { @@ -155,7 +155,7 @@ func (client RewardsClient) createRedeemableUser(ctx context.Context, request co // DeleteRedeemableUser Deletes the list of redeemable user email ID for a subscription ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usage/DeleteRedeemableUser.go.html to see an example of how to use DeleteRedeemableUser API. func (client RewardsClient) DeleteRedeemableUser(ctx context.Context, request DeleteRedeemableUserRequest) (response DeleteRedeemableUserResponse, err error) { @@ -212,7 +212,7 @@ func (client RewardsClient) deleteRedeemableUser(ctx context.Context, request co // ListProducts Provides product information that is specific to a reward usage period and its usage details. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usage/ListProducts.go.html to see an example of how to use ListProducts API. func (client RewardsClient) ListProducts(ctx context.Context, request ListProductsRequest) (response ListProductsResponse, err error) { @@ -269,7 +269,7 @@ func (client RewardsClient) listProducts(ctx context.Context, request common.OCI // ListRedeemableUsers Provides the list of user summary that can redeem rewards for the given subscription ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usage/ListRedeemableUsers.go.html to see an example of how to use ListRedeemableUsers API. func (client RewardsClient) ListRedeemableUsers(ctx context.Context, request ListRedeemableUsersRequest) (response ListRedeemableUsersResponse, err error) { @@ -326,7 +326,7 @@ func (client RewardsClient) listRedeemableUsers(ctx context.Context, request com // ListRedemptions Returns the list of redemption for the subscription ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usage/ListRedemptions.go.html to see an example of how to use ListRedemptions API. func (client RewardsClient) ListRedemptions(ctx context.Context, request ListRedemptionsRequest) (response ListRedemptionsResponse, err error) { @@ -383,7 +383,7 @@ func (client RewardsClient) listRedemptions(ctx context.Context, request common. // ListRewards Returns the list of rewards for a subscription ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usage/ListRewards.go.html to see an example of how to use ListRewards API. func (client RewardsClient) ListRewards(ctx context.Context, request ListRewardsRequest) (response ListRewardsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_usagelimits_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_usagelimits_client.go index e85984388e5..1f0ea23417a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_usagelimits_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/usage/usage_usagelimits_client.go @@ -93,7 +93,7 @@ func (client *UsagelimitsClient) ConfigurationProvider() *common.ConfigurationPr // ListUsageLimits Returns the list of usage limit for the subscription ID and tenant ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usage/ListUsageLimits.go.html to see an example of how to use ListUsageLimits API. // A default retry strategy applies to this operation ListUsageLimits() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/usageapi/usageapi_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/usageapi/usageapi_client.go index 88cf11bf096..3baf70890fd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/usageapi/usageapi_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/usageapi/usageapi_client.go @@ -93,7 +93,7 @@ func (client *UsageapiClient) ConfigurationProvider() *common.ConfigurationProvi // CreateCustomTable Returns the created custom table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/CreateCustomTable.go.html to see an example of how to use CreateCustomTable API. func (client UsageapiClient) CreateCustomTable(ctx context.Context, request CreateCustomTableRequest) (response CreateCustomTableResponse, err error) { @@ -155,7 +155,7 @@ func (client UsageapiClient) createCustomTable(ctx context.Context, request comm // CreateQuery Returns the created query. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/CreateQuery.go.html to see an example of how to use CreateQuery API. func (client UsageapiClient) CreateQuery(ctx context.Context, request CreateQueryRequest) (response CreateQueryResponse, err error) { @@ -217,7 +217,7 @@ func (client UsageapiClient) createQuery(ctx context.Context, request common.OCI // CreateSchedule Returns the created schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/CreateSchedule.go.html to see an example of how to use CreateSchedule API. func (client UsageapiClient) CreateSchedule(ctx context.Context, request CreateScheduleRequest) (response CreateScheduleResponse, err error) { @@ -279,7 +279,7 @@ func (client UsageapiClient) createSchedule(ctx context.Context, request common. // DeleteCustomTable Delete a saved custom table by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/DeleteCustomTable.go.html to see an example of how to use DeleteCustomTable API. func (client UsageapiClient) DeleteCustomTable(ctx context.Context, request DeleteCustomTableRequest) (response DeleteCustomTableResponse, err error) { @@ -336,7 +336,7 @@ func (client UsageapiClient) deleteCustomTable(ctx context.Context, request comm // DeleteQuery Delete a saved query by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/DeleteQuery.go.html to see an example of how to use DeleteQuery API. func (client UsageapiClient) DeleteQuery(ctx context.Context, request DeleteQueryRequest) (response DeleteQueryResponse, err error) { @@ -393,7 +393,7 @@ func (client UsageapiClient) deleteQuery(ctx context.Context, request common.OCI // DeleteSchedule Delete a saved scheduled report by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/DeleteSchedule.go.html to see an example of how to use DeleteSchedule API. func (client UsageapiClient) DeleteSchedule(ctx context.Context, request DeleteScheduleRequest) (response DeleteScheduleResponse, err error) { @@ -450,7 +450,7 @@ func (client UsageapiClient) deleteSchedule(ctx context.Context, request common. // GetCustomTable Returns the saved custom table. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/GetCustomTable.go.html to see an example of how to use GetCustomTable API. func (client UsageapiClient) GetCustomTable(ctx context.Context, request GetCustomTableRequest) (response GetCustomTableResponse, err error) { @@ -507,7 +507,7 @@ func (client UsageapiClient) getCustomTable(ctx context.Context, request common. // GetQuery Returns the saved query. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/GetQuery.go.html to see an example of how to use GetQuery API. func (client UsageapiClient) GetQuery(ctx context.Context, request GetQueryRequest) (response GetQueryResponse, err error) { @@ -564,7 +564,7 @@ func (client UsageapiClient) getQuery(ctx context.Context, request common.OCIReq // GetSchedule Returns the saved schedule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/GetSchedule.go.html to see an example of how to use GetSchedule API. func (client UsageapiClient) GetSchedule(ctx context.Context, request GetScheduleRequest) (response GetScheduleResponse, err error) { @@ -621,7 +621,7 @@ func (client UsageapiClient) getSchedule(ctx context.Context, request common.OCI // GetScheduledRun Returns the saved schedule run. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/GetScheduledRun.go.html to see an example of how to use GetScheduledRun API. func (client UsageapiClient) GetScheduledRun(ctx context.Context, request GetScheduledRunRequest) (response GetScheduledRunResponse, err error) { @@ -678,7 +678,7 @@ func (client UsageapiClient) getScheduledRun(ctx context.Context, request common // ListCustomTables Returns the saved custom table list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/ListCustomTables.go.html to see an example of how to use ListCustomTables API. func (client UsageapiClient) ListCustomTables(ctx context.Context, request ListCustomTablesRequest) (response ListCustomTablesResponse, err error) { @@ -735,7 +735,7 @@ func (client UsageapiClient) listCustomTables(ctx context.Context, request commo // ListQueries Returns the saved query list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/ListQueries.go.html to see an example of how to use ListQueries API. func (client UsageapiClient) ListQueries(ctx context.Context, request ListQueriesRequest) (response ListQueriesResponse, err error) { @@ -792,7 +792,7 @@ func (client UsageapiClient) listQueries(ctx context.Context, request common.OCI // ListScheduledRuns Returns schedule history list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/ListScheduledRuns.go.html to see an example of how to use ListScheduledRuns API. func (client UsageapiClient) ListScheduledRuns(ctx context.Context, request ListScheduledRunsRequest) (response ListScheduledRunsResponse, err error) { @@ -849,7 +849,7 @@ func (client UsageapiClient) listScheduledRuns(ctx context.Context, request comm // ListSchedules Returns the saved schedule list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/ListSchedules.go.html to see an example of how to use ListSchedules API. func (client UsageapiClient) ListSchedules(ctx context.Context, request ListSchedulesRequest) (response ListSchedulesResponse, err error) { @@ -906,7 +906,7 @@ func (client UsageapiClient) listSchedules(ctx context.Context, request common.O // RequestSummarizedConfigurations Returns the configurations list for the UI drop-down list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/RequestSummarizedConfigurations.go.html to see an example of how to use RequestSummarizedConfigurations API. func (client UsageapiClient) RequestSummarizedConfigurations(ctx context.Context, request RequestSummarizedConfigurationsRequest) (response RequestSummarizedConfigurationsResponse, err error) { @@ -963,7 +963,7 @@ func (client UsageapiClient) requestSummarizedConfigurations(ctx context.Context // RequestSummarizedUsages Returns usage for the given account. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/RequestSummarizedUsages.go.html to see an example of how to use RequestSummarizedUsages API. func (client UsageapiClient) RequestSummarizedUsages(ctx context.Context, request RequestSummarizedUsagesRequest) (response RequestSummarizedUsagesResponse, err error) { @@ -1020,7 +1020,7 @@ func (client UsageapiClient) requestSummarizedUsages(ctx context.Context, reques // UpdateCustomTable Update a saved custom table by table id. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/UpdateCustomTable.go.html to see an example of how to use UpdateCustomTable API. func (client UsageapiClient) UpdateCustomTable(ctx context.Context, request UpdateCustomTableRequest) (response UpdateCustomTableResponse, err error) { @@ -1077,7 +1077,7 @@ func (client UsageapiClient) updateCustomTable(ctx context.Context, request comm // UpdateQuery Update a saved query by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/UpdateQuery.go.html to see an example of how to use UpdateQuery API. func (client UsageapiClient) UpdateQuery(ctx context.Context, request UpdateQueryRequest) (response UpdateQueryResponse, err error) { @@ -1134,7 +1134,7 @@ func (client UsageapiClient) updateQuery(ctx context.Context, request common.OCI // UpdateSchedule Update a saved schedule // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/usageapi/UpdateSchedule.go.html to see an example of how to use UpdateSchedule API. func (client UsageapiClient) UpdateSchedule(ctx context.Context, request UpdateScheduleRequest) (response UpdateScheduleResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vault/base64_secret_content_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/vault/base64_secret_content_details.go index 8ef3a2e3f9b..4ece255c28f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vault/base64_secret_content_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vault/base64_secret_content_details.go @@ -33,12 +33,12 @@ type Base64SecretContentDetails struct { Stage SecretContentDetailsStageEnum `mandatory:"false" json:"stage,omitempty"` } -//GetName returns Name +// GetName returns Name func (m Base64SecretContentDetails) GetName() *string { return m.Name } -//GetStage returns Stage +// GetStage returns Stage func (m Base64SecretContentDetails) GetStage() SecretContentDetailsStageEnum { return m.Stage } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vault/vault_vaults_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/vault/vault_vaults_client.go index 3db0220a023..d6213a104e2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vault/vault_vaults_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vault/vault_vaults_client.go @@ -95,7 +95,7 @@ func (client *VaultsClient) ConfigurationProvider() *common.ConfigurationProvide // a scheduled deletion restores the secret's lifecycle state to what // it was before you scheduled the secret for deletion. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/CancelSecretDeletion.go.html to see an example of how to use CancelSecretDeletion API. func (client VaultsClient) CancelSecretDeletion(ctx context.Context, request CancelSecretDeletionRequest) (response CancelSecretDeletionResponse, err error) { @@ -152,7 +152,7 @@ func (client VaultsClient) cancelSecretDeletion(ctx context.Context, request com // CancelSecretVersionDeletion Cancels the scheduled deletion of a secret version. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/CancelSecretVersionDeletion.go.html to see an example of how to use CancelSecretVersionDeletion API. func (client VaultsClient) CancelSecretVersionDeletion(ctx context.Context, request CancelSecretVersionDeletionRequest) (response CancelSecretVersionDeletionResponse, err error) { @@ -211,7 +211,7 @@ func (client VaultsClient) cancelSecretVersionDeletion(ctx context.Context, requ // moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // When provided, if-match is checked against the ETag values of the secret. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/ChangeSecretCompartment.go.html to see an example of how to use ChangeSecretCompartment API. func (client VaultsClient) ChangeSecretCompartment(ctx context.Context, request ChangeSecretCompartmentRequest) (response ChangeSecretCompartmentResponse, err error) { @@ -274,7 +274,7 @@ func (client VaultsClient) changeSecretCompartment(ctx context.Context, request // CreateSecret Creates a new secret according to the details of the request. // This operation is not supported by the Oracle Cloud Infrastructure Terraform Provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/CreateSecret.go.html to see an example of how to use CreateSecret API. // A default retry strategy applies to this operation CreateSecret() @@ -337,7 +337,7 @@ func (client VaultsClient) createSecret(ctx context.Context, request common.OCIR // GetSecret Gets information about the specified secret. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/GetSecret.go.html to see an example of how to use GetSecret API. // A default retry strategy applies to this operation GetSecret() @@ -395,7 +395,7 @@ func (client VaultsClient) getSecret(ctx context.Context, request common.OCIRequ // GetSecretVersion Gets information about the specified version of a secret. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/GetSecretVersion.go.html to see an example of how to use GetSecretVersion API. // A default retry strategy applies to this operation GetSecretVersion() @@ -453,7 +453,7 @@ func (client VaultsClient) getSecretVersion(ctx context.Context, request common. // ListSecretVersions Lists all secret versions for the specified secret. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/ListSecretVersions.go.html to see an example of how to use ListSecretVersions API. // A default retry strategy applies to this operation ListSecretVersions() @@ -511,7 +511,7 @@ func (client VaultsClient) listSecretVersions(ctx context.Context, request commo // ListSecrets Lists all secrets in the specified vault and compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/ListSecrets.go.html to see an example of how to use ListSecrets API. // A default retry strategy applies to this operation ListSecrets() @@ -570,7 +570,7 @@ func (client VaultsClient) listSecrets(ctx context.Context, request common.OCIRe // ScheduleSecretDeletion Schedules the deletion of the specified secret. This sets the lifecycle state of the secret // to `PENDING_DELETION` and then deletes it after the specified retention period ends. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/ScheduleSecretDeletion.go.html to see an example of how to use ScheduleSecretDeletion API. func (client VaultsClient) ScheduleSecretDeletion(ctx context.Context, request ScheduleSecretDeletionRequest) (response ScheduleSecretDeletionResponse, err error) { @@ -628,7 +628,7 @@ func (client VaultsClient) scheduleSecretDeletion(ctx context.Context, request c // ScheduleSecretVersionDeletion Schedules the deletion of the specified secret version. This deletes it after the specified retention period ends. You can only // delete a secret version if the secret version rotation state is marked as `DEPRECATED`. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/ScheduleSecretVersionDeletion.go.html to see an example of how to use ScheduleSecretVersionDeletion API. func (client VaultsClient) ScheduleSecretVersionDeletion(ctx context.Context, request ScheduleSecretVersionDeletionRequest) (response ScheduleSecretVersionDeletionResponse, err error) { @@ -689,7 +689,7 @@ func (client VaultsClient) scheduleSecretVersionDeletion(ctx context.Context, re // same time. Furthermore, the secret must in an `ACTIVE` lifecycle state to be updated. // This operation is not supported by the Oracle Cloud Infrastructure Terraform Provider. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vault/UpdateSecret.go.html to see an example of how to use UpdateSecret API. func (client VaultsClient) UpdateSecret(ctx context.Context, request UpdateSecretRequest) (response UpdateSecretResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vbsinst/vbsinst_vbsinstance_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/vbsinst/vbsinst_vbsinstance_client.go index e5cc49ec349..8a3ed906048 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vbsinst/vbsinst_vbsinstance_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vbsinst/vbsinst_vbsinstance_client.go @@ -93,7 +93,7 @@ func (client *VbsInstanceClient) ConfigurationProvider() *common.ConfigurationPr // ChangeVbsInstanceCompartment Moves a VbsInstance resource from one compartment identifier to another. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/ChangeVbsInstanceCompartment.go.html to see an example of how to use ChangeVbsInstanceCompartment API. func (client VbsInstanceClient) ChangeVbsInstanceCompartment(ctx context.Context, request ChangeVbsInstanceCompartmentRequest) (response ChangeVbsInstanceCompartmentResponse, err error) { @@ -150,7 +150,7 @@ func (client VbsInstanceClient) changeVbsInstanceCompartment(ctx context.Context // CreateVbsInstance Creates a new VbsInstance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/CreateVbsInstance.go.html to see an example of how to use CreateVbsInstance API. func (client VbsInstanceClient) CreateVbsInstance(ctx context.Context, request CreateVbsInstanceRequest) (response CreateVbsInstanceResponse, err error) { @@ -212,7 +212,7 @@ func (client VbsInstanceClient) createVbsInstance(ctx context.Context, request c // DeleteVbsInstance Deletes a VbsInstance resource by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/DeleteVbsInstance.go.html to see an example of how to use DeleteVbsInstance API. func (client VbsInstanceClient) DeleteVbsInstance(ctx context.Context, request DeleteVbsInstanceRequest) (response DeleteVbsInstanceResponse, err error) { @@ -269,7 +269,7 @@ func (client VbsInstanceClient) deleteVbsInstance(ctx context.Context, request c // GetVbsInstance Gets a VbsInstance by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/GetVbsInstance.go.html to see an example of how to use GetVbsInstance API. func (client VbsInstanceClient) GetVbsInstance(ctx context.Context, request GetVbsInstanceRequest) (response GetVbsInstanceResponse, err error) { @@ -326,7 +326,7 @@ func (client VbsInstanceClient) getVbsInstance(ctx context.Context, request comm // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client VbsInstanceClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -383,7 +383,7 @@ func (client VbsInstanceClient) getWorkRequest(ctx context.Context, request comm // ListVbsInstances Returns a list of VbsInstances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/ListVbsInstances.go.html to see an example of how to use ListVbsInstances API. func (client VbsInstanceClient) ListVbsInstances(ctx context.Context, request ListVbsInstancesRequest) (response ListVbsInstancesResponse, err error) { @@ -440,7 +440,7 @@ func (client VbsInstanceClient) listVbsInstances(ctx context.Context, request co // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client VbsInstanceClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -497,7 +497,7 @@ func (client VbsInstanceClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client VbsInstanceClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -554,7 +554,7 @@ func (client VbsInstanceClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client VbsInstanceClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -611,7 +611,7 @@ func (client VbsInstanceClient) listWorkRequests(ctx context.Context, request co // UpdateVbsInstance Updates the VbsInstance // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vbsinst/UpdateVbsInstance.go.html to see an example of how to use UpdateVbsInstance API. func (client VbsInstanceClient) UpdateVbsInstance(ctx context.Context, request UpdateVbsInstanceRequest) (response UpdateVbsInstanceResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/visualbuilder/visualbuilder_vbinstance_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/visualbuilder/visualbuilder_vbinstance_client.go index 2c390f9fdd1..a99ae2b2649 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/visualbuilder/visualbuilder_vbinstance_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/visualbuilder/visualbuilder_vbinstance_client.go @@ -94,7 +94,7 @@ func (client *VbInstanceClient) ConfigurationProvider() *common.ConfigurationPro // ChangeVbInstanceCompartment Change the compartment for an vb instance // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/ChangeVbInstanceCompartment.go.html to see an example of how to use ChangeVbInstanceCompartment API. func (client VbInstanceClient) ChangeVbInstanceCompartment(ctx context.Context, request ChangeVbInstanceCompartmentRequest) (response ChangeVbInstanceCompartmentResponse, err error) { @@ -156,7 +156,7 @@ func (client VbInstanceClient) changeVbInstanceCompartment(ctx context.Context, // CreateVbInstance Creates a new Vb Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/CreateVbInstance.go.html to see an example of how to use CreateVbInstance API. func (client VbInstanceClient) CreateVbInstance(ctx context.Context, request CreateVbInstanceRequest) (response CreateVbInstanceResponse, err error) { @@ -218,7 +218,7 @@ func (client VbInstanceClient) createVbInstance(ctx context.Context, request com // DeleteVbInstance Deletes an Vb Instance resource by identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/DeleteVbInstance.go.html to see an example of how to use DeleteVbInstance API. func (client VbInstanceClient) DeleteVbInstance(ctx context.Context, request DeleteVbInstanceRequest) (response DeleteVbInstanceResponse, err error) { @@ -275,7 +275,7 @@ func (client VbInstanceClient) deleteVbInstance(ctx context.Context, request com // GetVbInstance Gets a VbInstance by identifier // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/GetVbInstance.go.html to see an example of how to use GetVbInstance API. // A default retry strategy applies to this operation GetVbInstance() @@ -333,7 +333,7 @@ func (client VbInstanceClient) getVbInstance(ctx context.Context, request common // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -391,7 +391,7 @@ func (client VbInstanceClient) getWorkRequest(ctx context.Context, request commo // ListVbInstances Returns a list of Vb Instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/ListVbInstances.go.html to see an example of how to use ListVbInstances API. // A default retry strategy applies to this operation ListVbInstances() @@ -449,7 +449,7 @@ func (client VbInstanceClient) listVbInstances(ctx context.Context, request comm // ListWorkRequestErrors Get the errors of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -507,7 +507,7 @@ func (client VbInstanceClient) listWorkRequestErrors(ctx context.Context, reques // ListWorkRequestLogs Get the logs of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -565,7 +565,7 @@ func (client VbInstanceClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -623,7 +623,7 @@ func (client VbInstanceClient) listWorkRequests(ctx context.Context, request com // RequestSummarizedApplications Summarizes the applications for a vb instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/RequestSummarizedApplications.go.html to see an example of how to use RequestSummarizedApplications API. func (client VbInstanceClient) RequestSummarizedApplications(ctx context.Context, request RequestSummarizedApplicationsRequest) (response RequestSummarizedApplicationsResponse, err error) { @@ -686,7 +686,7 @@ func (client VbInstanceClient) requestSummarizedApplications(ctx context.Context // StartVbInstance Start an vb instance that was previously in an INACTIVE state. If the previous state is not // INACTIVE, then the state of the vbInstance will not be changed and a 409 response returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/StartVbInstance.go.html to see an example of how to use StartVbInstance API. func (client VbInstanceClient) StartVbInstance(ctx context.Context, request StartVbInstanceRequest) (response StartVbInstanceResponse, err error) { @@ -749,7 +749,7 @@ func (client VbInstanceClient) startVbInstance(ctx context.Context, request comm // StopVbInstance Stop an vb instance that was previously in an ACTIVE state. If the previous state is not // ACTIVE, then the state of the vbInstance will not be changed and a 409 response returned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/StopVbInstance.go.html to see an example of how to use StopVbInstance API. func (client VbInstanceClient) StopVbInstance(ctx context.Context, request StopVbInstanceRequest) (response StopVbInstanceResponse, err error) { @@ -811,7 +811,7 @@ func (client VbInstanceClient) stopVbInstance(ctx context.Context, request commo // UpdateVbInstance Updates the Vb Instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/visualbuilder/UpdateVbInstance.go.html to see an example of how to use UpdateVbInstance API. func (client VbInstanceClient) UpdateVbInstance(ctx context.Context, request UpdateVbInstanceRequest) (response UpdateVbInstanceResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/access_denied_traffic_node.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/access_denied_traffic_node.go index bdc5f7214d4..f4ad3025712 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/access_denied_traffic_node.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/access_denied_traffic_node.go @@ -28,22 +28,22 @@ type AccessDeniedTrafficNode struct { IngressSecurityAction SecurityAction `mandatory:"false" json:"ingressSecurityAction"` } -//GetEgressTraffic returns EgressTraffic +// GetEgressTraffic returns EgressTraffic func (m AccessDeniedTrafficNode) GetEgressTraffic() *EgressTrafficSpec { return m.EgressTraffic } -//GetNextHopRoutingAction returns NextHopRoutingAction +// GetNextHopRoutingAction returns NextHopRoutingAction func (m AccessDeniedTrafficNode) GetNextHopRoutingAction() RoutingAction { return m.NextHopRoutingAction } -//GetEgressSecurityAction returns EgressSecurityAction +// GetEgressSecurityAction returns EgressSecurityAction func (m AccessDeniedTrafficNode) GetEgressSecurityAction() SecurityAction { return m.EgressSecurityAction } -//GetIngressSecurityAction returns IngressSecurityAction +// GetIngressSecurityAction returns IngressSecurityAction func (m AccessDeniedTrafficNode) GetIngressSecurityAction() SecurityAction { return m.IngressSecurityAction } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/allowed_security_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/allowed_security_action.go index d5d0c20b7d1..fcca11de059 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/allowed_security_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/allowed_security_action.go @@ -25,7 +25,7 @@ type AllowedSecurityAction struct { ActionType SecurityActionActionTypeEnum `mandatory:"true" json:"actionType"` } -//GetActionType returns ActionType +// GetActionType returns ActionType func (m AllowedSecurityAction) GetActionType() SecurityActionActionTypeEnum { return m.ActionType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/denied_security_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/denied_security_action.go index 6173b120337..b443c320f3b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/denied_security_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/denied_security_action.go @@ -25,7 +25,7 @@ type DeniedSecurityAction struct { ActionType SecurityActionActionTypeEnum `mandatory:"true" json:"actionType"` } -//GetActionType returns ActionType +// GetActionType returns ActionType func (m DeniedSecurityAction) GetActionType() SecurityActionActionTypeEnum { return m.ActionType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/forwarded_routing_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/forwarded_routing_action.go index 86e8a6bf691..4c75be6c974 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/forwarded_routing_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/forwarded_routing_action.go @@ -25,7 +25,7 @@ type ForwardedRoutingAction struct { ActionType RoutingActionActionTypeEnum `mandatory:"true" json:"actionType"` } -//GetActionType returns ActionType +// GetActionType returns ActionType func (m ForwardedRoutingAction) GetActionType() RoutingActionActionTypeEnum { return m.ActionType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/indeterminate_routing_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/indeterminate_routing_action.go index 2ee5fe497be..6663c9fef84 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/indeterminate_routing_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/indeterminate_routing_action.go @@ -24,7 +24,7 @@ type IndeterminateRoutingAction struct { ActionType RoutingActionActionTypeEnum `mandatory:"true" json:"actionType"` } -//GetActionType returns ActionType +// GetActionType returns ActionType func (m IndeterminateRoutingAction) GetActionType() RoutingActionActionTypeEnum { return m.ActionType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/ip_sec_connection_device_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/ip_sec_connection_device_config.go index f1d0737738e..02b81573e0d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/ip_sec_connection_device_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/ip_sec_connection_device_config.go @@ -17,8 +17,8 @@ import ( ) // IpSecConnectionDeviceConfig Deprecated. For tunnel information, instead see: -// * IPSecConnectionTunnel -// * IPSecConnectionTunnelSharedSecret +// - IPSecConnectionTunnel +// - IPSecConnectionTunnelSharedSecret type IpSecConnectionDeviceConfig struct { // The OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the IPSec connection. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/ipsec_tunnel_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/ipsec_tunnel_drg_attachment_network_details.go index 49b72745d03..652d72e666c 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/ipsec_tunnel_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/ipsec_tunnel_drg_attachment_network_details.go @@ -30,7 +30,7 @@ type IpsecTunnelDrgAttachmentNetworkDetails struct { TransportAttachmentId *string `mandatory:"false" json:"transportAttachmentId"` } -//GetId returns Id +// GetId returns Id func (m IpsecTunnelDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/loop_back_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/loop_back_drg_attachment_network_details.go index 76c1f228c7e..9303e0d1313 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/loop_back_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/loop_back_drg_attachment_network_details.go @@ -27,7 +27,7 @@ type LoopBackDrgAttachmentNetworkDetails struct { Ids []string `mandatory:"false" json:"ids"` } -//GetId returns Id +// GetId returns Id func (m LoopBackDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/network_security_group.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/network_security_group.go index 0f5cdd11cfd..455caff166f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/network_security_group.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/network_security_group.go @@ -20,9 +20,10 @@ import ( // Vnic in a VCN. Compare NSGs with SecurityList, // which provide virtual firewall rules to all the VNICs in a *subnet*. // A network security group consists of two items: -// * The set of Vnic that all have the same security rule needs (for +// - The set of Vnic that all have the same security rule needs (for // example, a group of Compute instances all running the same application) -// * A set of NSG SecurityRule that apply to the VNICs in the group +// - A set of NSG SecurityRule that apply to the VNICs in the group +// // After creating an NSG, you can add VNICs and security rules to it. For example, when you create // an instance, you can specify one or more NSGs to add the instance to (see // CreateVnicDetails). Or you can add an existing @@ -38,9 +39,10 @@ import ( // **Important:** Oracle Cloud Infrastructure Compute service images automatically include firewall rules (for example, // Linux iptables, Windows firewall). If there are issues with some type of access to an instance, // make sure all of the following are set correctly: -// * Any security rules in any NSGs the instance's VNIC belongs to -// * Any SecurityList associated with the instance's subnet -// * The instance's OS firewall rules +// - Any security rules in any NSGs the instance's VNIC belongs to +// - Any SecurityList associated with the instance's subnet +// - The instance's OS firewall rules +// // To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, // talk to an administrator. If you're an administrator who needs to write policies to give users access, see // Getting Started with Policies (https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm). diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/networking_topology.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/networking_topology.go index 4117c1a9c9c..5ef09099e85 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/networking_topology.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/networking_topology.go @@ -35,22 +35,22 @@ type NetworkingTopology struct { TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"` } -//GetEntities returns Entities +// GetEntities returns Entities func (m NetworkingTopology) GetEntities() []interface{} { return m.Entities } -//GetRelationships returns Relationships +// GetRelationships returns Relationships func (m NetworkingTopology) GetRelationships() []TopologyEntityRelationship { return m.Relationships } -//GetLimitedEntities returns LimitedEntities +// GetLimitedEntities returns LimitedEntities func (m NetworkingTopology) GetLimitedEntities() []string { return m.LimitedEntities } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m NetworkingTopology) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/no_route_routing_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/no_route_routing_action.go index d2c9fb9234a..3a4c1c11ccd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/no_route_routing_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/no_route_routing_action.go @@ -25,7 +25,7 @@ type NoRouteRoutingAction struct { ActionType RoutingActionActionTypeEnum `mandatory:"true" json:"actionType"` } -//GetActionType returns ActionType +// GetActionType returns ActionType func (m NoRouteRoutingAction) GetActionType() RoutingActionActionTypeEnum { return m.ActionType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/path_topology.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/path_topology.go index c371f1003d7..cbe4c8af4ce 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/path_topology.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/path_topology.go @@ -35,22 +35,22 @@ type PathTopology struct { TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"` } -//GetEntities returns Entities +// GetEntities returns Entities func (m PathTopology) GetEntities() []interface{} { return m.Entities } -//GetRelationships returns Relationships +// GetRelationships returns Relationships func (m PathTopology) GetRelationships() []TopologyEntityRelationship { return m.Relationships } -//GetLimitedEntities returns LimitedEntities +// GetLimitedEntities returns LimitedEntities func (m PathTopology) GetLimitedEntities() []string { return m.LimitedEntities } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m PathTopology) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/remote_peering_connection_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/remote_peering_connection_drg_attachment_network_details.go index 2fa3034186e..cd3108d46d7 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/remote_peering_connection_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/remote_peering_connection_drg_attachment_network_details.go @@ -24,7 +24,7 @@ type RemotePeeringConnectionDrgAttachmentNetworkDetails struct { Id *string `mandatory:"false" json:"id"` } -//GetId returns Id +// GetId returns Id func (m RemotePeeringConnectionDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/subnet_topology.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/subnet_topology.go index 513efd6809f..7fd7b581bc1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/subnet_topology.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/subnet_topology.go @@ -38,22 +38,22 @@ type SubnetTopology struct { SubnetId *string `mandatory:"false" json:"subnetId"` } -//GetEntities returns Entities +// GetEntities returns Entities func (m SubnetTopology) GetEntities() []interface{} { return m.Entities } -//GetRelationships returns Relationships +// GetRelationships returns Relationships func (m SubnetTopology) GetRelationships() []TopologyEntityRelationship { return m.Relationships } -//GetLimitedEntities returns LimitedEntities +// GetLimitedEntities returns LimitedEntities func (m SubnetTopology) GetLimitedEntities() []string { return m.LimitedEntities } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m SubnetTopology) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_associated_with_entity_relationship.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_associated_with_entity_relationship.go index 8876c925bcf..bc97d34c989 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_associated_with_entity_relationship.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_associated_with_entity_relationship.go @@ -32,12 +32,12 @@ type TopologyAssociatedWithEntityRelationship struct { AssociatedWithDetails *TopologyAssociatedWithRelationshipDetails `mandatory:"false" json:"associatedWithDetails"` } -//GetId1 returns Id1 +// GetId1 returns Id1 func (m TopologyAssociatedWithEntityRelationship) GetId1() *string { return m.Id1 } -//GetId2 returns Id2 +// GetId2 returns Id2 func (m TopologyAssociatedWithEntityRelationship) GetId2() *string { return m.Id2 } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_contains_entity_relationship.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_contains_entity_relationship.go index 0bbaad962da..05e15e59f95 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_contains_entity_relationship.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_contains_entity_relationship.go @@ -30,12 +30,12 @@ type TopologyContainsEntityRelationship struct { Id2 *string `mandatory:"true" json:"id2"` } -//GetId1 returns Id1 +// GetId1 returns Id1 func (m TopologyContainsEntityRelationship) GetId1() *string { return m.Id1 } -//GetId2 returns Id2 +// GetId2 returns Id2 func (m TopologyContainsEntityRelationship) GetId2() *string { return m.Id2 } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_routes_to_entity_relationship.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_routes_to_entity_relationship.go index c2c89cc1aff..753c2bec760 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_routes_to_entity_relationship.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/topology_routes_to_entity_relationship.go @@ -31,12 +31,12 @@ type TopologyRoutesToEntityRelationship struct { RouteRuleDetails *TopologyRoutesToRelationshipDetails `mandatory:"true" json:"routeRuleDetails"` } -//GetId1 returns Id1 +// GetId1 returns Id1 func (m TopologyRoutesToEntityRelationship) GetId1() *string { return m.Id1 } -//GetId2 returns Id2 +// GetId2 returns Id2 func (m TopologyRoutesToEntityRelationship) GetId2() *string { return m.Id2 } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/tunnel_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/tunnel_config.go index 5a99f745d2e..be9af4b5eb9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/tunnel_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/tunnel_config.go @@ -17,8 +17,8 @@ import ( ) // TunnelConfig Deprecated. For tunnel information, instead see: -// * IPSecConnectionTunnel -// * IPSecConnectionTunnelSharedSecret +// - IPSecConnectionTunnel +// - IPSecConnectionTunnelSharedSecret type TunnelConfig struct { // The IP address of Oracle's VPN headend. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/tunnel_cpe_device_config.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/tunnel_cpe_device_config.go index 8e79ddf67b6..6ec77579f01 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/tunnel_cpe_device_config.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/tunnel_cpe_device_config.go @@ -21,10 +21,10 @@ import ( // The answers correlate to the questions that are specific to the CPE device type (see the // `parameters` attribute of CpeDeviceShapeDetail). // See these related operations: -// * GetTunnelCpeDeviceConfig -// * GetTunnelCpeDeviceConfigContent -// * GetIpsecCpeDeviceConfigContent -// * GetCpeDeviceConfigContent +// - GetTunnelCpeDeviceConfig +// - GetTunnelCpeDeviceConfigContent +// - GetIpsecCpeDeviceConfigContent +// - GetCpeDeviceConfigContent type TunnelCpeDeviceConfig struct { TunnelCpeDeviceConfigParameter []CpeDeviceConfigAnswer `mandatory:"false" json:"tunnelCpeDeviceConfigParameter"` } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_drg_attachment_network_create_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_drg_attachment_network_create_details.go index f642ee8845e..fef51b55e66 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_drg_attachment_network_create_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_drg_attachment_network_create_details.go @@ -36,7 +36,7 @@ type VcnDrgAttachmentNetworkCreateDetails struct { VcnRouteType VcnDrgAttachmentNetworkDetailsVcnRouteTypeEnum `mandatory:"false" json:"vcnRouteType,omitempty"` } -//GetId returns Id +// GetId returns Id func (m VcnDrgAttachmentNetworkCreateDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_drg_attachment_network_details.go index aa5a5c64888..ca88a24b7db 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_drg_attachment_network_details.go @@ -34,7 +34,7 @@ type VcnDrgAttachmentNetworkDetails struct { VcnRouteType VcnDrgAttachmentNetworkDetailsVcnRouteTypeEnum `mandatory:"false" json:"vcnRouteType,omitempty"` } -//GetId returns Id +// GetId returns Id func (m VcnDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_topology.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_topology.go index a2d34faa96c..5337535e5fb 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_topology.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vcn_topology.go @@ -38,22 +38,22 @@ type VcnTopology struct { VcnId *string `mandatory:"false" json:"vcnId"` } -//GetEntities returns Entities +// GetEntities returns Entities func (m VcnTopology) GetEntities() []interface{} { return m.Entities } -//GetRelationships returns Relationships +// GetRelationships returns Relationships func (m VcnTopology) GetRelationships() []TopologyEntityRelationship { return m.Relationships } -//GetLimitedEntities returns LimitedEntities +// GetLimitedEntities returns LimitedEntities func (m VcnTopology) GetLimitedEntities() []string { return m.LimitedEntities } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m VcnTopology) GetTimeCreated() *common.SDKTime { return m.TimeCreated } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/virtual_circuit_drg_attachment_network_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/virtual_circuit_drg_attachment_network_details.go index d278ca94d40..27d1e8ec39a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/virtual_circuit_drg_attachment_network_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/virtual_circuit_drg_attachment_network_details.go @@ -28,7 +28,7 @@ type VirtualCircuitDrgAttachmentNetworkDetails struct { TransportOnlyMode *bool `mandatory:"false" json:"transportOnlyMode"` } -//GetId returns Id +// GetId returns Id func (m VirtualCircuitDrgAttachmentNetworkDetails) GetId() *string { return m.Id } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/visible_traffic_node.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/visible_traffic_node.go index 941ea4ee0b2..d2eb78745ea 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/visible_traffic_node.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/visible_traffic_node.go @@ -36,22 +36,22 @@ type VisibleTrafficNode struct { TransformationDescription *string `mandatory:"false" json:"transformationDescription"` } -//GetEgressTraffic returns EgressTraffic +// GetEgressTraffic returns EgressTraffic func (m VisibleTrafficNode) GetEgressTraffic() *EgressTrafficSpec { return m.EgressTraffic } -//GetNextHopRoutingAction returns NextHopRoutingAction +// GetNextHopRoutingAction returns NextHopRoutingAction func (m VisibleTrafficNode) GetNextHopRoutingAction() RoutingAction { return m.NextHopRoutingAction } -//GetEgressSecurityAction returns EgressSecurityAction +// GetEgressSecurityAction returns EgressSecurityAction func (m VisibleTrafficNode) GetEgressSecurityAction() SecurityAction { return m.EgressSecurityAction } -//GetIngressSecurityAction returns IngressSecurityAction +// GetIngressSecurityAction returns IngressSecurityAction func (m VisibleTrafficNode) GetIngressSecurityAction() SecurityAction { return m.IngressSecurityAction } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vnmonitoring_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vnmonitoring_client.go index 445ff9655ae..aa36da43191 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vnmonitoring_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vnmonitoring/vnmonitoring_client.go @@ -94,7 +94,7 @@ func (client *VnMonitoringClient) ConfigurationProvider() *common.ConfigurationP // ChangePathAnalyzerTestCompartment Moves a `PathAnalyzerTest` resource from one compartment to another based on the identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/ChangePathAnalyzerTestCompartment.go.html to see an example of how to use ChangePathAnalyzerTestCompartment API. func (client VnMonitoringClient) ChangePathAnalyzerTestCompartment(ctx context.Context, request ChangePathAnalyzerTestCompartmentRequest) (response ChangePathAnalyzerTestCompartmentResponse, err error) { @@ -151,7 +151,7 @@ func (client VnMonitoringClient) changePathAnalyzerTestCompartment(ctx context.C // CreatePathAnalyzerTest Creates a new `PathAnalyzerTest` resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/CreatePathAnalyzerTest.go.html to see an example of how to use CreatePathAnalyzerTest API. func (client VnMonitoringClient) CreatePathAnalyzerTest(ctx context.Context, request CreatePathAnalyzerTestRequest) (response CreatePathAnalyzerTestResponse, err error) { @@ -213,7 +213,7 @@ func (client VnMonitoringClient) createPathAnalyzerTest(ctx context.Context, req // DeletePathAnalyzerTest Deletes a `PathAnalyzerTest` resource using its identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/DeletePathAnalyzerTest.go.html to see an example of how to use DeletePathAnalyzerTest API. func (client VnMonitoringClient) DeletePathAnalyzerTest(ctx context.Context, request DeletePathAnalyzerTestRequest) (response DeletePathAnalyzerTestResponse, err error) { @@ -276,7 +276,7 @@ func (client VnMonitoringClient) deletePathAnalyzerTest(ctx context.Context, req // with the work request ID to ask for the analysis failure information. The information // returned from either of these methods can be used to build a final report. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/GetPathAnalysis.go.html to see an example of how to use GetPathAnalysis API. func (client VnMonitoringClient) GetPathAnalysis(ctx context.Context, request GetPathAnalysisRequest) (response GetPathAnalysisResponse, err error) { @@ -338,7 +338,7 @@ func (client VnMonitoringClient) getPathAnalysis(ctx context.Context, request co // GetPathAnalyzerTest Gets a `PathAnalyzerTest` using its identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/GetPathAnalyzerTest.go.html to see an example of how to use GetPathAnalyzerTest API. func (client VnMonitoringClient) GetPathAnalyzerTest(ctx context.Context, request GetPathAnalyzerTestRequest) (response GetPathAnalyzerTestResponse, err error) { @@ -395,7 +395,7 @@ func (client VnMonitoringClient) getPathAnalyzerTest(ctx context.Context, reques // GetWorkRequest Gets the details of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client VnMonitoringClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -452,7 +452,7 @@ func (client VnMonitoringClient) getWorkRequest(ctx context.Context, request com // ListPathAnalyzerTests Returns a list of all `PathAnalyzerTests` in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/ListPathAnalyzerTests.go.html to see an example of how to use ListPathAnalyzerTests API. func (client VnMonitoringClient) ListPathAnalyzerTests(ctx context.Context, request ListPathAnalyzerTestsRequest) (response ListPathAnalyzerTestsResponse, err error) { @@ -509,7 +509,7 @@ func (client VnMonitoringClient) listPathAnalyzerTests(ctx context.Context, requ // ListWorkRequestErrors Returns a (paginated) list of errors for the work request with the given ID. This information is used to build the final report output. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client VnMonitoringClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -566,7 +566,7 @@ func (client VnMonitoringClient) listWorkRequestErrors(ctx context.Context, requ // ListWorkRequestLogs Returns a (paginated) list of logs for the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client VnMonitoringClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -624,7 +624,7 @@ func (client VnMonitoringClient) listWorkRequestLogs(ctx context.Context, reques // ListWorkRequestResults Returns a (paginated) list of results for a successful work request. This information is used to // build the final report output. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/ListWorkRequestResults.go.html to see an example of how to use ListWorkRequestResults API. func (client VnMonitoringClient) ListWorkRequestResults(ctx context.Context, request ListWorkRequestResultsRequest) (response ListWorkRequestResultsResponse, err error) { @@ -681,7 +681,7 @@ func (client VnMonitoringClient) listWorkRequestResults(ctx context.Context, req // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client VnMonitoringClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -738,7 +738,7 @@ func (client VnMonitoringClient) listWorkRequests(ctx context.Context, request c // UpdatePathAnalyzerTest Updates a `PathAnalyzerTest` using its identifier. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vnmonitoring/UpdatePathAnalyzerTest.go.html to see an example of how to use UpdatePathAnalyzerTest API. func (client VnMonitoringClient) UpdatePathAnalyzerTest(ctx context.Context, request UpdatePathAnalyzerTestRequest) (response UpdatePathAnalyzerTestResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/create_ocir_container_scan_registry_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/create_ocir_container_scan_registry_details.go index 6d7a22c271d..d8fa106bbba 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/create_ocir_container_scan_registry_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/create_ocir_container_scan_registry_details.go @@ -29,7 +29,7 @@ type CreateOcirContainerScanRegistryDetails struct { Repositories []string `mandatory:"false" json:"repositories"` } -//GetUrl returns Url +// GetUrl returns Url func (m CreateOcirContainerScanRegistryDetails) GetUrl() *string { return m.Url } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/host_scan_agent_configuration_oci.go b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/host_scan_agent_configuration_oci.go index 7bea7b99aca..5456f53a3a6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/host_scan_agent_configuration_oci.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/host_scan_agent_configuration_oci.go @@ -26,7 +26,7 @@ type HostScanAgentConfigurationOci struct { VendorType VendorTypeEnum `mandatory:"false" json:"vendorType,omitempty"` } -//GetVendorType returns VendorType +// GetVendorType returns VendorType func (m HostScanAgentConfigurationOci) GetVendorType() VendorTypeEnum { return m.VendorType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/host_scan_agent_configuration_qualys.go b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/host_scan_agent_configuration_qualys.go index cb1c31f6a94..1b23355db21 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/host_scan_agent_configuration_qualys.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/host_scan_agent_configuration_qualys.go @@ -29,7 +29,7 @@ type HostScanAgentConfigurationQualys struct { VendorType VendorTypeEnum `mandatory:"false" json:"vendorType,omitempty"` } -//GetVendorType returns VendorType +// GetVendorType returns VendorType func (m HostScanAgentConfigurationQualys) GetVendorType() VendorTypeEnum { return m.VendorType } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/ocir_container_scan_registry.go b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/ocir_container_scan_registry.go index 3d31b2ba582..2f057c87244 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/ocir_container_scan_registry.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/ocir_container_scan_registry.go @@ -29,7 +29,7 @@ type OcirContainerScanRegistry struct { Repositories []string `mandatory:"false" json:"repositories"` } -//GetUrl returns Url +// GetUrl returns Url func (m OcirContainerScanRegistry) GetUrl() *string { return m.Url } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/update_ocir_container_scan_registry_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/update_ocir_container_scan_registry_details.go index 222c5ef7545..8f654abcc0e 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/update_ocir_container_scan_registry_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/update_ocir_container_scan_registry_details.go @@ -29,7 +29,7 @@ type UpdateOcirContainerScanRegistryDetails struct { Repositories []string `mandatory:"false" json:"repositories"` } -//GetUrl returns Url +// GetUrl returns Url func (m UpdateOcirContainerScanRegistryDetails) GetUrl() *string { return m.Url } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/vulnerabilityscanning_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/vulnerabilityscanning_client.go index 06f8aef9411..4313f849ba3 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/vulnerabilityscanning_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/vulnerabilityscanning/vulnerabilityscanning_client.go @@ -93,7 +93,7 @@ func (client *VulnerabilityScanningClient) ConfigurationProvider() *common.Confi // ChangeContainerScanRecipeCompartment Moves a ContainerScanRecipe into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ChangeContainerScanRecipeCompartment.go.html to see an example of how to use ChangeContainerScanRecipeCompartment API. func (client VulnerabilityScanningClient) ChangeContainerScanRecipeCompartment(ctx context.Context, request ChangeContainerScanRecipeCompartmentRequest) (response ChangeContainerScanRecipeCompartmentResponse, err error) { @@ -155,7 +155,7 @@ func (client VulnerabilityScanningClient) changeContainerScanRecipeCompartment(c // ChangeContainerScanResultCompartment Moves a ContainerScanResult into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ChangeContainerScanResultCompartment.go.html to see an example of how to use ChangeContainerScanResultCompartment API. func (client VulnerabilityScanningClient) ChangeContainerScanResultCompartment(ctx context.Context, request ChangeContainerScanResultCompartmentRequest) (response ChangeContainerScanResultCompartmentResponse, err error) { @@ -217,7 +217,7 @@ func (client VulnerabilityScanningClient) changeContainerScanResultCompartment(c // ChangeContainerScanTargetCompartment Moves a ContainerScanTarget into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ChangeContainerScanTargetCompartment.go.html to see an example of how to use ChangeContainerScanTargetCompartment API. func (client VulnerabilityScanningClient) ChangeContainerScanTargetCompartment(ctx context.Context, request ChangeContainerScanTargetCompartmentRequest) (response ChangeContainerScanTargetCompartmentResponse, err error) { @@ -279,7 +279,7 @@ func (client VulnerabilityScanningClient) changeContainerScanTargetCompartment(c // ChangeHostAgentScanResultCompartment Moves a HostAgentScanResult into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ChangeHostAgentScanResultCompartment.go.html to see an example of how to use ChangeHostAgentScanResultCompartment API. func (client VulnerabilityScanningClient) ChangeHostAgentScanResultCompartment(ctx context.Context, request ChangeHostAgentScanResultCompartmentRequest) (response ChangeHostAgentScanResultCompartmentResponse, err error) { @@ -341,7 +341,7 @@ func (client VulnerabilityScanningClient) changeHostAgentScanResultCompartment(c // ChangeHostCisBenchmarkScanResultCompartment Moves a HostCisBenchmarkScanResult into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ChangeHostCisBenchmarkScanResultCompartment.go.html to see an example of how to use ChangeHostCisBenchmarkScanResultCompartment API. func (client VulnerabilityScanningClient) ChangeHostCisBenchmarkScanResultCompartment(ctx context.Context, request ChangeHostCisBenchmarkScanResultCompartmentRequest) (response ChangeHostCisBenchmarkScanResultCompartmentResponse, err error) { @@ -403,7 +403,7 @@ func (client VulnerabilityScanningClient) changeHostCisBenchmarkScanResultCompar // ChangeHostEndpointProtectionScanResultCompartment Moves a HostEndpointProtectionScanResult into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ChangeHostEndpointProtectionScanResultCompartment.go.html to see an example of how to use ChangeHostEndpointProtectionScanResultCompartment API. func (client VulnerabilityScanningClient) ChangeHostEndpointProtectionScanResultCompartment(ctx context.Context, request ChangeHostEndpointProtectionScanResultCompartmentRequest) (response ChangeHostEndpointProtectionScanResultCompartmentResponse, err error) { @@ -465,7 +465,7 @@ func (client VulnerabilityScanningClient) changeHostEndpointProtectionScanResult // ChangeHostPortScanResultCompartment Moves a HostPortScanResult into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ChangeHostPortScanResultCompartment.go.html to see an example of how to use ChangeHostPortScanResultCompartment API. func (client VulnerabilityScanningClient) ChangeHostPortScanResultCompartment(ctx context.Context, request ChangeHostPortScanResultCompartmentRequest) (response ChangeHostPortScanResultCompartmentResponse, err error) { @@ -527,7 +527,7 @@ func (client VulnerabilityScanningClient) changeHostPortScanResultCompartment(ct // ChangeHostScanRecipeCompartment Moves a HostScanRecipe into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ChangeHostScanRecipeCompartment.go.html to see an example of how to use ChangeHostScanRecipeCompartment API. func (client VulnerabilityScanningClient) ChangeHostScanRecipeCompartment(ctx context.Context, request ChangeHostScanRecipeCompartmentRequest) (response ChangeHostScanRecipeCompartmentResponse, err error) { @@ -589,7 +589,7 @@ func (client VulnerabilityScanningClient) changeHostScanRecipeCompartment(ctx co // ChangeHostScanTargetCompartment Moves a HostScanTarget into a different compartment. When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ChangeHostScanTargetCompartment.go.html to see an example of how to use ChangeHostScanTargetCompartment API. func (client VulnerabilityScanningClient) ChangeHostScanTargetCompartment(ctx context.Context, request ChangeHostScanTargetCompartmentRequest) (response ChangeHostScanTargetCompartmentResponse, err error) { @@ -651,7 +651,7 @@ func (client VulnerabilityScanningClient) changeHostScanTargetCompartment(ctx co // CreateContainerScanRecipe Creates a new ContainerScanRecipe. A recipe determines the types of security issues that you want scanned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/CreateContainerScanRecipe.go.html to see an example of how to use CreateContainerScanRecipe API. func (client VulnerabilityScanningClient) CreateContainerScanRecipe(ctx context.Context, request CreateContainerScanRecipeRequest) (response CreateContainerScanRecipeResponse, err error) { @@ -713,7 +713,7 @@ func (client VulnerabilityScanningClient) createContainerScanRecipe(ctx context. // CreateContainerScanTarget Creates a new ContainerScanTarget. A container scan target specifies a group of one or more Docker image repositories in Oracle Cloud Infrastructure Registry (OCIR) that you want routinely scanned for security vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/CreateContainerScanTarget.go.html to see an example of how to use CreateContainerScanTarget API. func (client VulnerabilityScanningClient) CreateContainerScanTarget(ctx context.Context, request CreateContainerScanTargetRequest) (response CreateContainerScanTargetResponse, err error) { @@ -775,7 +775,7 @@ func (client VulnerabilityScanningClient) createContainerScanTarget(ctx context. // CreateHostScanRecipe Creates a new HostScanRecipe. A recipe determines the types of security issues that you want scanned, and how often to scan. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/CreateHostScanRecipe.go.html to see an example of how to use CreateHostScanRecipe API. func (client VulnerabilityScanningClient) CreateHostScanRecipe(ctx context.Context, request CreateHostScanRecipeRequest) (response CreateHostScanRecipeResponse, err error) { @@ -837,7 +837,7 @@ func (client VulnerabilityScanningClient) createHostScanRecipe(ctx context.Conte // CreateHostScanTarget Creates a new HostScanTarget. A host scan target is a collection of compute instances that you want routinely scanned for security vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/CreateHostScanTarget.go.html to see an example of how to use CreateHostScanTarget API. func (client VulnerabilityScanningClient) CreateHostScanTarget(ctx context.Context, request CreateHostScanTargetRequest) (response CreateHostScanTargetResponse, err error) { @@ -899,7 +899,7 @@ func (client VulnerabilityScanningClient) createHostScanTarget(ctx context.Conte // DeleteContainerScanRecipe Deletes the ContainerScanRecipe identified by the recipe ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/DeleteContainerScanRecipe.go.html to see an example of how to use DeleteContainerScanRecipe API. func (client VulnerabilityScanningClient) DeleteContainerScanRecipe(ctx context.Context, request DeleteContainerScanRecipeRequest) (response DeleteContainerScanRecipeResponse, err error) { @@ -956,7 +956,7 @@ func (client VulnerabilityScanningClient) deleteContainerScanRecipe(ctx context. // DeleteContainerScanResult Deletes the ContainerScanResult identified by the container scan ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/DeleteContainerScanResult.go.html to see an example of how to use DeleteContainerScanResult API. func (client VulnerabilityScanningClient) DeleteContainerScanResult(ctx context.Context, request DeleteContainerScanResultRequest) (response DeleteContainerScanResultResponse, err error) { @@ -1013,7 +1013,7 @@ func (client VulnerabilityScanningClient) deleteContainerScanResult(ctx context. // DeleteContainerScanTarget Deletes the ContainerScanTarget identified by the target ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/DeleteContainerScanTarget.go.html to see an example of how to use DeleteContainerScanTarget API. func (client VulnerabilityScanningClient) DeleteContainerScanTarget(ctx context.Context, request DeleteContainerScanTargetRequest) (response DeleteContainerScanTargetResponse, err error) { @@ -1070,7 +1070,7 @@ func (client VulnerabilityScanningClient) deleteContainerScanTarget(ctx context. // DeleteHostAgentScanResult Deletes the HostAgentScanResult identified by the host agent scan ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/DeleteHostAgentScanResult.go.html to see an example of how to use DeleteHostAgentScanResult API. func (client VulnerabilityScanningClient) DeleteHostAgentScanResult(ctx context.Context, request DeleteHostAgentScanResultRequest) (response DeleteHostAgentScanResultResponse, err error) { @@ -1127,7 +1127,7 @@ func (client VulnerabilityScanningClient) deleteHostAgentScanResult(ctx context. // DeleteHostCisBenchmarkScanResult Deletes the HostCisBenchmarkScanResult identified by the benchmark scan result ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/DeleteHostCisBenchmarkScanResult.go.html to see an example of how to use DeleteHostCisBenchmarkScanResult API. func (client VulnerabilityScanningClient) DeleteHostCisBenchmarkScanResult(ctx context.Context, request DeleteHostCisBenchmarkScanResultRequest) (response DeleteHostCisBenchmarkScanResultResponse, err error) { @@ -1184,7 +1184,7 @@ func (client VulnerabilityScanningClient) deleteHostCisBenchmarkScanResult(ctx c // DeleteHostEndpointProtectionScanResult Deletes the HostEndpointProtectionScanResult identified by the id // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/DeleteHostEndpointProtectionScanResult.go.html to see an example of how to use DeleteHostEndpointProtectionScanResult API. func (client VulnerabilityScanningClient) DeleteHostEndpointProtectionScanResult(ctx context.Context, request DeleteHostEndpointProtectionScanResultRequest) (response DeleteHostEndpointProtectionScanResultResponse, err error) { @@ -1241,7 +1241,7 @@ func (client VulnerabilityScanningClient) deleteHostEndpointProtectionScanResult // DeleteHostPortScanResult Deletes the HostPortScanResult identified by the host port scan ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/DeleteHostPortScanResult.go.html to see an example of how to use DeleteHostPortScanResult API. func (client VulnerabilityScanningClient) DeleteHostPortScanResult(ctx context.Context, request DeleteHostPortScanResultRequest) (response DeleteHostPortScanResultResponse, err error) { @@ -1298,7 +1298,7 @@ func (client VulnerabilityScanningClient) deleteHostPortScanResult(ctx context.C // DeleteHostScanRecipe Deletes the HostScanRecipe identified by the recipe ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/DeleteHostScanRecipe.go.html to see an example of how to use DeleteHostScanRecipe API. func (client VulnerabilityScanningClient) DeleteHostScanRecipe(ctx context.Context, request DeleteHostScanRecipeRequest) (response DeleteHostScanRecipeResponse, err error) { @@ -1355,7 +1355,7 @@ func (client VulnerabilityScanningClient) deleteHostScanRecipe(ctx context.Conte // DeleteHostScanTarget Deletes the HostScanTarget identified by the target ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/DeleteHostScanTarget.go.html to see an example of how to use DeleteHostScanTarget API. func (client VulnerabilityScanningClient) DeleteHostScanTarget(ctx context.Context, request DeleteHostScanTargetRequest) (response DeleteHostScanTargetResponse, err error) { @@ -1412,7 +1412,7 @@ func (client VulnerabilityScanningClient) deleteHostScanTarget(ctx context.Conte // ExportHostAgentScanResultCsv Exports a list of HostAgentScanResultSummary objects within a compartment and during a specified time range in CSV format. You can filter the results by problem severity. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ExportHostAgentScanResultCsv.go.html to see an example of how to use ExportHostAgentScanResultCsv API. func (client VulnerabilityScanningClient) ExportHostAgentScanResultCsv(ctx context.Context, request ExportHostAgentScanResultCsvRequest) (response ExportHostAgentScanResultCsvResponse, err error) { @@ -1468,7 +1468,7 @@ func (client VulnerabilityScanningClient) exportHostAgentScanResultCsv(ctx conte // ExportHostVulnerabilityCsv Exports a list of HostVulnerabilitySummary objects in a compartment in CSV format. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ExportHostVulnerabilityCsv.go.html to see an example of how to use ExportHostVulnerabilityCsv API. func (client VulnerabilityScanningClient) ExportHostVulnerabilityCsv(ctx context.Context, request ExportHostVulnerabilityCsvRequest) (response ExportHostVulnerabilityCsvResponse, err error) { @@ -1524,7 +1524,7 @@ func (client VulnerabilityScanningClient) exportHostVulnerabilityCsv(ctx context // GetContainerScanRecipe Retrieves a ContainerScanRecipe identified by the recipe ID. A recipe determines the types of security issues that you want scanned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetContainerScanRecipe.go.html to see an example of how to use GetContainerScanRecipe API. func (client VulnerabilityScanningClient) GetContainerScanRecipe(ctx context.Context, request GetContainerScanRecipeRequest) (response GetContainerScanRecipeResponse, err error) { @@ -1581,7 +1581,7 @@ func (client VulnerabilityScanningClient) getContainerScanRecipe(ctx context.Con // GetContainerScanResult Retrieves a ContainerScanResult identified by the container scan ID. The result includes a list of problems found in a specific image in a Docker repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetContainerScanResult.go.html to see an example of how to use GetContainerScanResult API. func (client VulnerabilityScanningClient) GetContainerScanResult(ctx context.Context, request GetContainerScanResultRequest) (response GetContainerScanResultResponse, err error) { @@ -1638,7 +1638,7 @@ func (client VulnerabilityScanningClient) getContainerScanResult(ctx context.Con // GetContainerScanTarget Gets a ContainerScanTarget identified by the target ID. A container scan target specifies a group of one or more Docker image repositories in Oracle Cloud Infrastructure Registry (OCIR) that you want routinely scanned for security vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetContainerScanTarget.go.html to see an example of how to use GetContainerScanTarget API. func (client VulnerabilityScanningClient) GetContainerScanTarget(ctx context.Context, request GetContainerScanTargetRequest) (response GetContainerScanTargetResponse, err error) { @@ -1695,7 +1695,7 @@ func (client VulnerabilityScanningClient) getContainerScanTarget(ctx context.Con // GetHostAgentScanResult Retrieves a HostAgentScanResult identified by the host agent scan ID. The result includes a list of CVEs detected in a specific compute instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetHostAgentScanResult.go.html to see an example of how to use GetHostAgentScanResult API. func (client VulnerabilityScanningClient) GetHostAgentScanResult(ctx context.Context, request GetHostAgentScanResultRequest) (response GetHostAgentScanResultResponse, err error) { @@ -1752,7 +1752,7 @@ func (client VulnerabilityScanningClient) getHostAgentScanResult(ctx context.Con // GetHostCisBenchmarkScanResult Retrieves a HostCisBenchmarkScanResult identified by the benchmark scan result ID. A CIS (Center for Internet Security) benchmark scan result includes a list of benchmarks that were tested on a specific compute instance, and whether each test passed or failed. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetHostCisBenchmarkScanResult.go.html to see an example of how to use GetHostCisBenchmarkScanResult API. func (client VulnerabilityScanningClient) GetHostCisBenchmarkScanResult(ctx context.Context, request GetHostCisBenchmarkScanResultRequest) (response GetHostCisBenchmarkScanResultResponse, err error) { @@ -1809,7 +1809,7 @@ func (client VulnerabilityScanningClient) getHostCisBenchmarkScanResult(ctx cont // GetHostEndpointProtectionScanResult Returns HostEndpointProtectionScanResults for the given host endpoint protection scan result ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetHostEndpointProtectionScanResult.go.html to see an example of how to use GetHostEndpointProtectionScanResult API. func (client VulnerabilityScanningClient) GetHostEndpointProtectionScanResult(ctx context.Context, request GetHostEndpointProtectionScanResultRequest) (response GetHostEndpointProtectionScanResultResponse, err error) { @@ -1866,7 +1866,7 @@ func (client VulnerabilityScanningClient) getHostEndpointProtectionScanResult(ct // GetHostPortScanResult Retrieves a HostPortScanResult identified by the host port scan ID. The result includes a list of open ports that were detected in a specific compute instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetHostPortScanResult.go.html to see an example of how to use GetHostPortScanResult API. func (client VulnerabilityScanningClient) GetHostPortScanResult(ctx context.Context, request GetHostPortScanResultRequest) (response GetHostPortScanResultResponse, err error) { @@ -1923,7 +1923,7 @@ func (client VulnerabilityScanningClient) getHostPortScanResult(ctx context.Cont // GetHostScanRecipe Retrieves a HostScanRecipe identified by the recipe ID. A recipe determines the types of security issues that you want scanned, and how often to scan. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetHostScanRecipe.go.html to see an example of how to use GetHostScanRecipe API. func (client VulnerabilityScanningClient) GetHostScanRecipe(ctx context.Context, request GetHostScanRecipeRequest) (response GetHostScanRecipeResponse, err error) { @@ -1980,7 +1980,7 @@ func (client VulnerabilityScanningClient) getHostScanRecipe(ctx context.Context, // GetHostScanTarget Retrieves a HostScanTarget identified by the target ID. A host scan target is a collection of compute instances that you want routinely scanned for security vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetHostScanTarget.go.html to see an example of how to use GetHostScanTarget API. func (client VulnerabilityScanningClient) GetHostScanTarget(ctx context.Context, request GetHostScanTargetRequest) (response GetHostScanTargetResponse, err error) { @@ -2037,7 +2037,7 @@ func (client VulnerabilityScanningClient) getHostScanTarget(ctx context.Context, // GetHostVulnerability Retrieves a HostVulnerability identified by the host vulnerability ID. A host vulnerability describes a security issue that was detected in scans of one or more compute instances. Common Vulnerabilities and Exposures (CVE) numbers identify security vulnerabilities for operating systems and other software, including Critical Patch Updates and Security Alert advisories. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetHostVulnerability.go.html to see an example of how to use GetHostVulnerability API. func (client VulnerabilityScanningClient) GetHostVulnerability(ctx context.Context, request GetHostVulnerabilityRequest) (response GetHostVulnerabilityResponse, err error) { @@ -2094,7 +2094,7 @@ func (client VulnerabilityScanningClient) getHostVulnerability(ctx context.Conte // GetVulnerability Retrieves a Vulnerability identified by the vulnerability ID. A vulnerability describes a security issue that was detected in scans of one or more compute instances, container scan repositories. Common Vulnerabilities and Exposures (CVE) numbers identify security vulnerabilities for operating systems and other software, including Critical Patch Updates and Security Alert advisories. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetVulnerability.go.html to see an example of how to use GetVulnerability API. func (client VulnerabilityScanningClient) GetVulnerability(ctx context.Context, request GetVulnerabilityRequest) (response GetVulnerabilityResponse, err error) { @@ -2151,7 +2151,7 @@ func (client VulnerabilityScanningClient) getVulnerability(ctx context.Context, // GetWorkRequest Gets the status of the work request with the given ID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client VulnerabilityScanningClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -2208,7 +2208,7 @@ func (client VulnerabilityScanningClient) getWorkRequest(ctx context.Context, re // ListContainerScanRecipes Retrieves a list of ContainerScanRecipeSummary objects in a compartment. A recipe determines the types of security issues that you want scanned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListContainerScanRecipes.go.html to see an example of how to use ListContainerScanRecipes API. func (client VulnerabilityScanningClient) ListContainerScanRecipes(ctx context.Context, request ListContainerScanRecipesRequest) (response ListContainerScanRecipesResponse, err error) { @@ -2265,7 +2265,7 @@ func (client VulnerabilityScanningClient) listContainerScanRecipes(ctx context.C // ListContainerScanResults Retrieves a list of ContainerScanResultSummary objects in a compartment. You can filter and sort the results by problem severity and time. A container scan result includes a list of problems detected in a specific image in a Docker repository. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListContainerScanResults.go.html to see an example of how to use ListContainerScanResults API. func (client VulnerabilityScanningClient) ListContainerScanResults(ctx context.Context, request ListContainerScanResultsRequest) (response ListContainerScanResultsResponse, err error) { @@ -2322,7 +2322,7 @@ func (client VulnerabilityScanningClient) listContainerScanResults(ctx context.C // ListContainerScanTargets Retrieves a list of ContainerScanTargetSummary objects in a compartment. A container scan target specifies a group of one or more Docker image repositories in Oracle Cloud Infrastructure Registry (OCIR) that you want routinely scanned for security vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListContainerScanTargets.go.html to see an example of how to use ListContainerScanTargets API. func (client VulnerabilityScanningClient) ListContainerScanTargets(ctx context.Context, request ListContainerScanTargetsRequest) (response ListContainerScanTargetsResponse, err error) { @@ -2379,7 +2379,7 @@ func (client VulnerabilityScanningClient) listContainerScanTargets(ctx context.C // ListHostAgentScanResults Retrieves a list of HostAgentScanResultSummary objects in a compartment. You can filter and sort the results by problem severity and time. An agent scan result includes a list of CVEs detected in a specific compute instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListHostAgentScanResults.go.html to see an example of how to use ListHostAgentScanResults API. func (client VulnerabilityScanningClient) ListHostAgentScanResults(ctx context.Context, request ListHostAgentScanResultsRequest) (response ListHostAgentScanResultsResponse, err error) { @@ -2436,7 +2436,7 @@ func (client VulnerabilityScanningClient) listHostAgentScanResults(ctx context.C // ListHostCisBenchmarkScanResults Retrieves a list of HostCisBenchmarkScanResultSummary objects in a compartment. You can filter and sort the results by problem severity and time. A CIS (Center for Internet Security) benchmark scan result includes the number of failed benchmark tests on a specific compute instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListHostCisBenchmarkScanResults.go.html to see an example of how to use ListHostCisBenchmarkScanResults API. func (client VulnerabilityScanningClient) ListHostCisBenchmarkScanResults(ctx context.Context, request ListHostCisBenchmarkScanResultsRequest) (response ListHostCisBenchmarkScanResultsResponse, err error) { @@ -2493,7 +2493,7 @@ func (client VulnerabilityScanningClient) listHostCisBenchmarkScanResults(ctx co // ListHostEndpointProtectionScanResults Returns a collection of HostEndpointProtectionScanResultSummary objects // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListHostEndpointProtectionScanResults.go.html to see an example of how to use ListHostEndpointProtectionScanResults API. func (client VulnerabilityScanningClient) ListHostEndpointProtectionScanResults(ctx context.Context, request ListHostEndpointProtectionScanResultsRequest) (response ListHostEndpointProtectionScanResultsResponse, err error) { @@ -2550,7 +2550,7 @@ func (client VulnerabilityScanningClient) listHostEndpointProtectionScanResults( // ListHostPortScanResults Retrieves a list of HostPortScanResultSummary objects in a compartment. You can filter and sort the results by problem severity and time. A port scan result includes a list of open ports that were detected in a specific compute instance. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListHostPortScanResults.go.html to see an example of how to use ListHostPortScanResults API. func (client VulnerabilityScanningClient) ListHostPortScanResults(ctx context.Context, request ListHostPortScanResultsRequest) (response ListHostPortScanResultsResponse, err error) { @@ -2607,7 +2607,7 @@ func (client VulnerabilityScanningClient) listHostPortScanResults(ctx context.Co // ListHostScanRecipes Retrieves a list of HostScanRecipeSummary objects in a compartment. A recipe determines the types of security issues that you want scanned, and how often to scan. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListHostScanRecipes.go.html to see an example of how to use ListHostScanRecipes API. func (client VulnerabilityScanningClient) ListHostScanRecipes(ctx context.Context, request ListHostScanRecipesRequest) (response ListHostScanRecipesResponse, err error) { @@ -2664,7 +2664,7 @@ func (client VulnerabilityScanningClient) listHostScanRecipes(ctx context.Contex // ListHostScanTargetErrors Retrieves list of errors during scanning on instances associated with HostScanTarget identified by the target ID. A host scan target is a collection of compute instances that you want routinely scanned for security vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListHostScanTargetErrors.go.html to see an example of how to use ListHostScanTargetErrors API. func (client VulnerabilityScanningClient) ListHostScanTargetErrors(ctx context.Context, request ListHostScanTargetErrorsRequest) (response ListHostScanTargetErrorsResponse, err error) { @@ -2721,7 +2721,7 @@ func (client VulnerabilityScanningClient) listHostScanTargetErrors(ctx context.C // ListHostScanTargets Retrieves a list of HostScanTargetSummary objects in a compartment. A host scan target is a collection of compute instances that you want routinely scanned for security vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListHostScanTargets.go.html to see an example of how to use ListHostScanTargets API. func (client VulnerabilityScanningClient) ListHostScanTargets(ctx context.Context, request ListHostScanTargetsRequest) (response ListHostScanTargetsResponse, err error) { @@ -2778,7 +2778,7 @@ func (client VulnerabilityScanningClient) listHostScanTargets(ctx context.Contex // ListHostVulnerabilities Retrieves a list of HostVulnerabilitySummary objects in a compartment. You can filter and sort the vulnerabilities by problem severity and time. A host vulnerability describes a security issue that was detected in scans of one or more compute instances. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListHostVulnerabilities.go.html to see an example of how to use ListHostVulnerabilities API. func (client VulnerabilityScanningClient) ListHostVulnerabilities(ctx context.Context, request ListHostVulnerabilitiesRequest) (response ListHostVulnerabilitiesResponse, err error) { @@ -2835,7 +2835,7 @@ func (client VulnerabilityScanningClient) listHostVulnerabilities(ctx context.Co // ListHostVulnerabilityImpactedHosts Retrieves a list of HostVulnerabilityImpactedHostSummary objects for a specific host vulnerability ID. An impacted host summary identifies a compute instance on which the specified vulnerability was detected. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListHostVulnerabilityImpactedHosts.go.html to see an example of how to use ListHostVulnerabilityImpactedHosts API. func (client VulnerabilityScanningClient) ListHostVulnerabilityImpactedHosts(ctx context.Context, request ListHostVulnerabilityImpactedHostsRequest) (response ListHostVulnerabilityImpactedHostsResponse, err error) { @@ -2892,7 +2892,7 @@ func (client VulnerabilityScanningClient) listHostVulnerabilityImpactedHosts(ctx // ListVulnerabilities Retrieves a list of VulnerabilitySummary objects in a compartment. You can filter and sort the vulnerabilities by problem severity and time and type. A vulnerability describes a security issue that was detected in scans of one or more compute instances, container images. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListVulnerabilities.go.html to see an example of how to use ListVulnerabilities API. func (client VulnerabilityScanningClient) ListVulnerabilities(ctx context.Context, request ListVulnerabilitiesRequest) (response ListVulnerabilitiesResponse, err error) { @@ -2949,7 +2949,7 @@ func (client VulnerabilityScanningClient) listVulnerabilities(ctx context.Contex // ListVulnerabilityImpactedContainers Retrieves a list of VulnerabilityImpactedContainerSummary objects for a specific vulnerability ID. An impacted container image summary identifies container images on which the specified vulnerability was detected. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListVulnerabilityImpactedContainers.go.html to see an example of how to use ListVulnerabilityImpactedContainers API. func (client VulnerabilityScanningClient) ListVulnerabilityImpactedContainers(ctx context.Context, request ListVulnerabilityImpactedContainersRequest) (response ListVulnerabilityImpactedContainersResponse, err error) { @@ -3006,7 +3006,7 @@ func (client VulnerabilityScanningClient) listVulnerabilityImpactedContainers(ct // ListVulnerabilityImpactedHosts Retrieves a list of VulnerabilityImpactedHostSummary objects for a specific host vulnerability ID. An impacted host summary identifies a compute instance on which the specified vulnerability was detected. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListVulnerabilityImpactedHosts.go.html to see an example of how to use ListVulnerabilityImpactedHosts API. func (client VulnerabilityScanningClient) ListVulnerabilityImpactedHosts(ctx context.Context, request ListVulnerabilityImpactedHostsRequest) (response ListVulnerabilityImpactedHostsResponse, err error) { @@ -3063,7 +3063,7 @@ func (client VulnerabilityScanningClient) listVulnerabilityImpactedHosts(ctx con // ListWorkRequestErrors Return a (paginated) list of errors for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client VulnerabilityScanningClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -3120,7 +3120,7 @@ func (client VulnerabilityScanningClient) listWorkRequestErrors(ctx context.Cont // ListWorkRequestLogs Return a (paginated) list of logs for a given work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client VulnerabilityScanningClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -3177,7 +3177,7 @@ func (client VulnerabilityScanningClient) listWorkRequestLogs(ctx context.Contex // ListWorkRequests Lists the work requests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client VulnerabilityScanningClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { @@ -3234,7 +3234,7 @@ func (client VulnerabilityScanningClient) listWorkRequests(ctx context.Context, // UpdateContainerScanRecipe Updates the ContainerScanRecipe identified by the recipe ID. A recipe determines the types of security issues that you want scanned. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/UpdateContainerScanRecipe.go.html to see an example of how to use UpdateContainerScanRecipe API. func (client VulnerabilityScanningClient) UpdateContainerScanRecipe(ctx context.Context, request UpdateContainerScanRecipeRequest) (response UpdateContainerScanRecipeResponse, err error) { @@ -3291,7 +3291,7 @@ func (client VulnerabilityScanningClient) updateContainerScanRecipe(ctx context. // UpdateContainerScanTarget Updates the ContainerScanTarget identified by the target ID. A container scan target specifies a group of one or more Docker image repositories in Oracle Cloud Infrastructure Registry (OCIR) that you want routinely scanned for security vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/UpdateContainerScanTarget.go.html to see an example of how to use UpdateContainerScanTarget API. func (client VulnerabilityScanningClient) UpdateContainerScanTarget(ctx context.Context, request UpdateContainerScanTargetRequest) (response UpdateContainerScanTargetResponse, err error) { @@ -3348,7 +3348,7 @@ func (client VulnerabilityScanningClient) updateContainerScanTarget(ctx context. // UpdateHostScanRecipe Updates the HostScanRecipe identified by the recipe ID. A recipe determines the types of security issues that you want scanned, and how often to scan. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/UpdateHostScanRecipe.go.html to see an example of how to use UpdateHostScanRecipe API. func (client VulnerabilityScanningClient) UpdateHostScanRecipe(ctx context.Context, request UpdateHostScanRecipeRequest) (response UpdateHostScanRecipeResponse, err error) { @@ -3405,7 +3405,7 @@ func (client VulnerabilityScanningClient) updateHostScanRecipe(ctx context.Conte // UpdateHostScanTarget Updates the HostScanTarget identified by the target ID. A host scan target is a collection of compute instances that you want routinely scanned for security vulnerabilities. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/vulnerabilityscanning/UpdateHostScanTarget.go.html to see an example of how to use UpdateHostScanTarget API. func (client VulnerabilityScanningClient) UpdateHostScanTarget(ctx context.Context, request UpdateHostScanTargetRequest) (response UpdateHostScanTargetResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waa/create_web_app_acceleration_load_balancer_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/waa/create_web_app_acceleration_load_balancer_details.go index b7934480a10..fd4c0dde116 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waa/create_web_app_acceleration_load_balancer_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waa/create_web_app_acceleration_load_balancer_details.go @@ -46,32 +46,32 @@ type CreateWebAppAccelerationLoadBalancerDetails struct { SystemTags map[string]map[string]interface{} `mandatory:"false" json:"systemTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateWebAppAccelerationLoadBalancerDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateWebAppAccelerationLoadBalancerDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetWebAppAccelerationPolicyId returns WebAppAccelerationPolicyId +// GetWebAppAccelerationPolicyId returns WebAppAccelerationPolicyId func (m CreateWebAppAccelerationLoadBalancerDetails) GetWebAppAccelerationPolicyId() *string { return m.WebAppAccelerationPolicyId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateWebAppAccelerationLoadBalancerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateWebAppAccelerationLoadBalancerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m CreateWebAppAccelerationLoadBalancerDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waa/waa_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/waa/waa_client.go index 1ac74a5fae8..bc56daee79f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waa/waa_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waa/waa_client.go @@ -96,7 +96,7 @@ func (client *WaaClient) ConfigurationProvider() *common.ConfigurationProvider { // ChangeWebAppAccelerationCompartment Moves a Web App Acceleration resource from one compartment to another. // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/ChangeWebAppAccelerationCompartment.go.html to see an example of how to use ChangeWebAppAccelerationCompartment API. func (client WaaClient) ChangeWebAppAccelerationCompartment(ctx context.Context, request ChangeWebAppAccelerationCompartmentRequest) (response ChangeWebAppAccelerationCompartmentResponse, err error) { @@ -154,7 +154,7 @@ func (client WaaClient) changeWebAppAccelerationCompartment(ctx context.Context, // ChangeWebAppAccelerationPolicyCompartment Moves a WebAppAccelerationfPolicy resource from one compartment to another. // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/ChangeWebAppAccelerationPolicyCompartment.go.html to see an example of how to use ChangeWebAppAccelerationPolicyCompartment API. func (client WaaClient) ChangeWebAppAccelerationPolicyCompartment(ctx context.Context, request ChangeWebAppAccelerationPolicyCompartmentRequest) (response ChangeWebAppAccelerationPolicyCompartmentResponse, err error) { @@ -211,7 +211,7 @@ func (client WaaClient) changeWebAppAccelerationPolicyCompartment(ctx context.Co // CreateWebAppAcceleration Creates a new WebAppAcceleration. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/CreateWebAppAcceleration.go.html to see an example of how to use CreateWebAppAcceleration API. func (client WaaClient) CreateWebAppAcceleration(ctx context.Context, request CreateWebAppAccelerationRequest) (response CreateWebAppAccelerationResponse, err error) { @@ -273,7 +273,7 @@ func (client WaaClient) createWebAppAcceleration(ctx context.Context, request co // CreateWebAppAccelerationPolicy Creates a new WebAppAccelerationPolicy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/CreateWebAppAccelerationPolicy.go.html to see an example of how to use CreateWebAppAccelerationPolicy API. func (client WaaClient) CreateWebAppAccelerationPolicy(ctx context.Context, request CreateWebAppAccelerationPolicyRequest) (response CreateWebAppAccelerationPolicyResponse, err error) { @@ -335,7 +335,7 @@ func (client WaaClient) createWebAppAccelerationPolicy(ctx context.Context, requ // DeleteWebAppAcceleration Deletes a WebAppAcceleration resource identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/DeleteWebAppAcceleration.go.html to see an example of how to use DeleteWebAppAcceleration API. func (client WaaClient) DeleteWebAppAcceleration(ctx context.Context, request DeleteWebAppAccelerationRequest) (response DeleteWebAppAccelerationResponse, err error) { @@ -392,7 +392,7 @@ func (client WaaClient) deleteWebAppAcceleration(ctx context.Context, request co // DeleteWebAppAccelerationPolicy Deletes a WebAppAccelerationPolicy resource identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/DeleteWebAppAccelerationPolicy.go.html to see an example of how to use DeleteWebAppAccelerationPolicy API. func (client WaaClient) DeleteWebAppAccelerationPolicy(ctx context.Context, request DeleteWebAppAccelerationPolicyRequest) (response DeleteWebAppAccelerationPolicyResponse, err error) { @@ -449,7 +449,7 @@ func (client WaaClient) deleteWebAppAccelerationPolicy(ctx context.Context, requ // GetWebAppAcceleration Gets a WebAppAcceleration by OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/GetWebAppAcceleration.go.html to see an example of how to use GetWebAppAcceleration API. func (client WaaClient) GetWebAppAcceleration(ctx context.Context, request GetWebAppAccelerationRequest) (response GetWebAppAccelerationResponse, err error) { @@ -506,7 +506,7 @@ func (client WaaClient) getWebAppAcceleration(ctx context.Context, request commo // GetWebAppAccelerationPolicy Gets a WebAppAccelerationPolicy with the given OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/GetWebAppAccelerationPolicy.go.html to see an example of how to use GetWebAppAccelerationPolicy API. func (client WaaClient) GetWebAppAccelerationPolicy(ctx context.Context, request GetWebAppAccelerationPolicyRequest) (response GetWebAppAccelerationPolicyResponse, err error) { @@ -563,7 +563,7 @@ func (client WaaClient) getWebAppAccelerationPolicy(ctx context.Context, request // ListWebAppAccelerationPolicies Gets a list of all WebAppAccelerationPolicies in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/ListWebAppAccelerationPolicies.go.html to see an example of how to use ListWebAppAccelerationPolicies API. func (client WaaClient) ListWebAppAccelerationPolicies(ctx context.Context, request ListWebAppAccelerationPoliciesRequest) (response ListWebAppAccelerationPoliciesResponse, err error) { @@ -620,7 +620,7 @@ func (client WaaClient) listWebAppAccelerationPolicies(ctx context.Context, requ // ListWebAppAccelerations Gets a list of all WebAppAccelerations in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/ListWebAppAccelerations.go.html to see an example of how to use ListWebAppAccelerations API. func (client WaaClient) ListWebAppAccelerations(ctx context.Context, request ListWebAppAccelerationsRequest) (response ListWebAppAccelerationsResponse, err error) { @@ -678,7 +678,7 @@ func (client WaaClient) listWebAppAccelerations(ctx context.Context, request com // PurgeWebAppAccelerationCache Clears resources from the cache of the WebAppAcceleration. Each new request for a purged resource will be // forwarded to the origin server to fetch a new version of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/PurgeWebAppAccelerationCache.go.html to see an example of how to use PurgeWebAppAccelerationCache API. func (client WaaClient) PurgeWebAppAccelerationCache(ctx context.Context, request PurgeWebAppAccelerationCacheRequest) (response PurgeWebAppAccelerationCacheResponse, err error) { @@ -735,7 +735,7 @@ func (client WaaClient) purgeWebAppAccelerationCache(ctx context.Context, reques // UpdateWebAppAcceleration Updates the WebAppAcceleration identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/UpdateWebAppAcceleration.go.html to see an example of how to use UpdateWebAppAcceleration API. func (client WaaClient) UpdateWebAppAcceleration(ctx context.Context, request UpdateWebAppAccelerationRequest) (response UpdateWebAppAccelerationResponse, err error) { @@ -792,7 +792,7 @@ func (client WaaClient) updateWebAppAcceleration(ctx context.Context, request co // UpdateWebAppAccelerationPolicy Update the WebAppAccelerationPolicy identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/UpdateWebAppAccelerationPolicy.go.html to see an example of how to use UpdateWebAppAccelerationPolicy API. func (client WaaClient) UpdateWebAppAccelerationPolicy(ctx context.Context, request UpdateWebAppAccelerationPolicyRequest) (response UpdateWebAppAccelerationPolicyResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waa/waa_workrequest_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/waa/waa_workrequest_client.go index 64ba1cb60f4..0158f812ebd 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waa/waa_workrequest_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waa/waa_workrequest_client.go @@ -95,7 +95,7 @@ func (client *WorkRequestClient) ConfigurationProvider() *common.ConfigurationPr // GetWorkRequest Gets the status of the WorkRequest with the given OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client WorkRequestClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -152,7 +152,7 @@ func (client WorkRequestClient) getWorkRequest(ctx context.Context, request comm // ListWorkRequestErrors Return a (paginated) list of errors for a given WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client WorkRequestClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -209,7 +209,7 @@ func (client WorkRequestClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Return a (paginated) list of logs for a given WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client WorkRequestClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -266,7 +266,7 @@ func (client WorkRequestClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the WorkRequests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waa/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client WorkRequestClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waa/web_app_acceleration_load_balancer.go b/vendor/github.com/oracle/oci-go-sdk/v65/waa/web_app_acceleration_load_balancer.go index cfdca618cbe..4c263a529e0 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waa/web_app_acceleration_load_balancer.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waa/web_app_acceleration_load_balancer.go @@ -62,57 +62,57 @@ type WebAppAccelerationLoadBalancer struct { LifecycleState WebAppAccelerationLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m WebAppAccelerationLoadBalancer) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m WebAppAccelerationLoadBalancer) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m WebAppAccelerationLoadBalancer) GetCompartmentId() *string { return m.CompartmentId } -//GetWebAppAccelerationPolicyId returns WebAppAccelerationPolicyId +// GetWebAppAccelerationPolicyId returns WebAppAccelerationPolicyId func (m WebAppAccelerationLoadBalancer) GetWebAppAccelerationPolicyId() *string { return m.WebAppAccelerationPolicyId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WebAppAccelerationLoadBalancer) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WebAppAccelerationLoadBalancer) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WebAppAccelerationLoadBalancer) GetLifecycleState() WebAppAccelerationLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m WebAppAccelerationLoadBalancer) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WebAppAccelerationLoadBalancer) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WebAppAccelerationLoadBalancer) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m WebAppAccelerationLoadBalancer) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waa/web_app_acceleration_load_balancer_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/waa/web_app_acceleration_load_balancer_summary.go index f9f2f981fc5..6dbd1e2058b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waa/web_app_acceleration_load_balancer_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waa/web_app_acceleration_load_balancer_summary.go @@ -62,57 +62,57 @@ type WebAppAccelerationLoadBalancerSummary struct { LifecycleState WebAppAccelerationLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m WebAppAccelerationLoadBalancerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m WebAppAccelerationLoadBalancerSummary) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m WebAppAccelerationLoadBalancerSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetWebAppAccelerationPolicyId returns WebAppAccelerationPolicyId +// GetWebAppAccelerationPolicyId returns WebAppAccelerationPolicyId func (m WebAppAccelerationLoadBalancerSummary) GetWebAppAccelerationPolicyId() *string { return m.WebAppAccelerationPolicyId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WebAppAccelerationLoadBalancerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WebAppAccelerationLoadBalancerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WebAppAccelerationLoadBalancerSummary) GetLifecycleState() WebAppAccelerationLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m WebAppAccelerationLoadBalancerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WebAppAccelerationLoadBalancerSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WebAppAccelerationLoadBalancerSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m WebAppAccelerationLoadBalancerSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waas/protection_rule_exclusion.go b/vendor/github.com/oracle/oci-go-sdk/v65/waas/protection_rule_exclusion.go index f939ec6776e..786fa044356 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waas/protection_rule_exclusion.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waas/protection_rule_exclusion.go @@ -16,18 +16,20 @@ import ( ) // ProtectionRuleExclusion Allows specified types of requests to bypass the protection rule. If a request matches any of the criteria in the `exclusions` field, the protection rule will not be executed. Rules can have more than one exclusion and exclusions are applied to requests disjunctively, meaning the specified exclusion strings are independently matched against the specified targets of a request. The first target to match a specified string will trigger an exclusion. **Example:** If the following exclusions are defined for a protection rule: -// "action": "BLOCK", -// "exclusions": [ -// { -// "target":"REQUEST_COOKIES", -// "exclusions":["example.com", "12345", "219ffwef9w0f"] -// }, -// { -// "target":"REQUEST_COOKIE_NAMES", -// "exclusions":["OAMAuthnCookie", "JSESSIONID", "HCM-PSJSESSIONID"] -// } -// ], -// "key": "1000000", +// +// "action": "BLOCK", +// "exclusions": [ +// { +// "target":"REQUEST_COOKIES", +// "exclusions":["example.com", "12345", "219ffwef9w0f"] +// }, +// { +// "target":"REQUEST_COOKIE_NAMES", +// "exclusions":["OAMAuthnCookie", "JSESSIONID", "HCM-PSJSESSIONID"] +// } +// ], +// "key": "1000000", +// // A request with the cookie name `sessionid` would trigger an exclusion. A request with the cookie name `yourcompany.com` would *not* trigger and exclusion. type ProtectionRuleExclusion struct { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waas/waas_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/waas/waas_client.go index 8193a28adaf..97749dcf1e5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waas/waas_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waas/waas_client.go @@ -94,7 +94,7 @@ func (client *WaasClient) ConfigurationProvider() *common.ConfigurationProvider // AcceptRecommendations Accepts a list of recommended Web Application Firewall protection rules. Web Application Firewall protection rule recommendations are sets of rules generated by observed traffic patterns through the Web Application Firewall and are meant to optimize the Web Application Firewall's security profile. Only the rules specified in the request body will be updated; all other rules will remain unchanged. // Use the `GET /waasPolicies/{waasPolicyId}/wafConfig/recommendations` method to view a list of recommended Web Application Firewall protection rules. For more information, see WAF Protection Rules (https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/wafprotectionrules.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/AcceptRecommendations.go.html to see an example of how to use AcceptRecommendations API. func (client WaasClient) AcceptRecommendations(ctx context.Context, request AcceptRecommendationsRequest) (response AcceptRecommendationsResponse, err error) { @@ -151,7 +151,7 @@ func (client WaasClient) acceptRecommendations(ctx context.Context, request comm // CancelWorkRequest Cancels a specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/CancelWorkRequest.go.html to see an example of how to use CancelWorkRequest API. func (client WaasClient) CancelWorkRequest(ctx context.Context, request CancelWorkRequestRequest) (response CancelWorkRequestResponse, err error) { @@ -215,7 +215,7 @@ func (client WaasClient) cancelWorkRequest(ctx context.Context, request common.O // is checked against ETag values of the address list. For information about moving // resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ChangeAddressListCompartment.go.html to see an example of how to use ChangeAddressListCompartment API. func (client WaasClient) ChangeAddressListCompartment(ctx context.Context, request ChangeAddressListCompartmentRequest) (response ChangeAddressListCompartmentResponse, err error) { @@ -278,7 +278,7 @@ func (client WaasClient) changeAddressListCompartment(ctx context.Context, reque // ChangeCertificateCompartment Moves certificate into a different compartment. When provided, If-Match is checked against ETag values of the certificate. // For information about moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ChangeCertificateCompartment.go.html to see an example of how to use ChangeCertificateCompartment API. func (client WaasClient) ChangeCertificateCompartment(ctx context.Context, request ChangeCertificateCompartmentRequest) (response ChangeCertificateCompartmentResponse, err error) { @@ -340,7 +340,7 @@ func (client WaasClient) changeCertificateCompartment(ctx context.Context, reque // ChangeCustomProtectionRuleCompartment Moves a custom protection rule into a different compartment within the same tenancy. When provided, If-Match is checked against ETag values of the custom protection rule. For information about moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ChangeCustomProtectionRuleCompartment.go.html to see an example of how to use ChangeCustomProtectionRuleCompartment API. func (client WaasClient) ChangeCustomProtectionRuleCompartment(ctx context.Context, request ChangeCustomProtectionRuleCompartmentRequest) (response ChangeCustomProtectionRuleCompartmentResponse, err error) { @@ -403,7 +403,7 @@ func (client WaasClient) changeCustomProtectionRuleCompartment(ctx context.Conte // ChangeWaasPolicyCompartment Moves WAAS policy into a different compartment. When provided, If-Match is checked against ETag values of the WAAS policy. // For information about moving resources between compartments, see Moving Resources to a Different Compartment (https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ChangeWaasPolicyCompartment.go.html to see an example of how to use ChangeWaasPolicyCompartment API. func (client WaasClient) ChangeWaasPolicyCompartment(ctx context.Context, request ChangeWaasPolicyCompartmentRequest) (response ChangeWaasPolicyCompartmentResponse, err error) { @@ -465,7 +465,7 @@ func (client WaasClient) changeWaasPolicyCompartment(ctx context.Context, reques // CreateAddressList Creates an address list in a set compartment and allows it to be used in a WAAS policy and referenced by access rules. Addresses can be IP addresses and CIDR notations. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/CreateAddressList.go.html to see an example of how to use CreateAddressList API. func (client WaasClient) CreateAddressList(ctx context.Context, request CreateAddressListRequest) (response CreateAddressListResponse, err error) { @@ -528,7 +528,7 @@ func (client WaasClient) createAddressList(ctx context.Context, request common.O // CreateCertificate Allows an SSL certificate to be added to a WAAS policy. The Web Application Firewall terminates SSL connections to inspect requests in runtime, and then re-encrypts requests before sending them to the origin for fulfillment. // For more information, see WAF Settings (https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/wafsettings.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/CreateCertificate.go.html to see an example of how to use CreateCertificate API. func (client WaasClient) CreateCertificate(ctx context.Context, request CreateCertificateRequest) (response CreateCertificateResponse, err error) { @@ -591,7 +591,7 @@ func (client WaasClient) createCertificate(ctx context.Context, request common.O // CreateCustomProtectionRule Creates a new custom protection rule in the specified compartment. // Custom protection rules allow you to create rules in addition to the rulesets provided by the Web Application Firewall service, including rules from ModSecurity (https://modsecurity.org/). The syntax for custom rules is based on the ModSecurity syntax. For more information about custom protection rules, see Custom Protection Rules (https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/customprotectionrules.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/CreateCustomProtectionRule.go.html to see an example of how to use CreateCustomProtectionRule API. func (client WaasClient) CreateCustomProtectionRule(ctx context.Context, request CreateCustomProtectionRuleRequest) (response CreateCustomProtectionRuleResponse, err error) { @@ -659,7 +659,7 @@ func (client WaasClient) createCustomProtectionRule(ctx context.Context, request // All Oracle Cloud Infrastructure resources, including WAAS policies, receive a unique, Oracle-assigned ID called an Oracle Cloud Identifier (OCID). When a resource is created, you can find its OCID in the response. You can also retrieve a resource's OCID by using a list API operation for that resource type, or by viewing the resource in the Console. Fore more information, see Resource Identifiers (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). // **Note:** After sending the POST request, the new object's state will temporarily be `CREATING`. Ensure that the resource's state has changed to `ACTIVE` before use. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/CreateWaasPolicy.go.html to see an example of how to use CreateWaasPolicy API. func (client WaasClient) CreateWaasPolicy(ctx context.Context, request CreateWaasPolicyRequest) (response CreateWaasPolicyResponse, err error) { @@ -721,7 +721,7 @@ func (client WaasClient) createWaasPolicy(ctx context.Context, request common.OC // DeleteAddressList Deletes the address list from the compartment if it is not used. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/DeleteAddressList.go.html to see an example of how to use DeleteAddressList API. func (client WaasClient) DeleteAddressList(ctx context.Context, request DeleteAddressListRequest) (response DeleteAddressListResponse, err error) { @@ -783,7 +783,7 @@ func (client WaasClient) deleteAddressList(ctx context.Context, request common.O // DeleteCertificate Deletes an SSL certificate from the WAAS service. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/DeleteCertificate.go.html to see an example of how to use DeleteCertificate API. func (client WaasClient) DeleteCertificate(ctx context.Context, request DeleteCertificateRequest) (response DeleteCertificateResponse, err error) { @@ -845,7 +845,7 @@ func (client WaasClient) deleteCertificate(ctx context.Context, request common.O // DeleteCustomProtectionRule Deletes a Custom Protection rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/DeleteCustomProtectionRule.go.html to see an example of how to use DeleteCustomProtectionRule API. func (client WaasClient) DeleteCustomProtectionRule(ctx context.Context, request DeleteCustomProtectionRuleRequest) (response DeleteCustomProtectionRuleResponse, err error) { @@ -907,7 +907,7 @@ func (client WaasClient) deleteCustomProtectionRule(ctx context.Context, request // DeleteWaasPolicy Deletes a policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/DeleteWaasPolicy.go.html to see an example of how to use DeleteWaasPolicy API. func (client WaasClient) DeleteWaasPolicy(ctx context.Context, request DeleteWaasPolicyRequest) (response DeleteWaasPolicyResponse, err error) { @@ -969,7 +969,7 @@ func (client WaasClient) deleteWaasPolicy(ctx context.Context, request common.OC // GetAddressList Gets the details of an address list. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetAddressList.go.html to see an example of how to use GetAddressList API. // A default retry strategy applies to this operation GetAddressList() @@ -1027,7 +1027,7 @@ func (client WaasClient) getAddressList(ctx context.Context, request common.OCIR // GetCertificate Gets the details of an SSL certificate. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetCertificate.go.html to see an example of how to use GetCertificate API. // A default retry strategy applies to this operation GetCertificate() @@ -1085,7 +1085,7 @@ func (client WaasClient) getCertificate(ctx context.Context, request common.OCIR // GetCustomProtectionRule Gets the details of a custom protection rule. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetCustomProtectionRule.go.html to see an example of how to use GetCustomProtectionRule API. // A default retry strategy applies to this operation GetCustomProtectionRule() @@ -1143,7 +1143,7 @@ func (client WaasClient) getCustomProtectionRule(ctx context.Context, request co // GetDeviceFingerprintChallenge Gets the device fingerprint challenge settings in the Web Application Firewall configuration for a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetDeviceFingerprintChallenge.go.html to see an example of how to use GetDeviceFingerprintChallenge API. // A default retry strategy applies to this operation GetDeviceFingerprintChallenge() @@ -1201,7 +1201,7 @@ func (client WaasClient) getDeviceFingerprintChallenge(ctx context.Context, requ // GetHumanInteractionChallenge Gets the human interaction challenge settings in the Web Application Firewall configuration for a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetHumanInteractionChallenge.go.html to see an example of how to use GetHumanInteractionChallenge API. // A default retry strategy applies to this operation GetHumanInteractionChallenge() @@ -1259,7 +1259,7 @@ func (client WaasClient) getHumanInteractionChallenge(ctx context.Context, reque // GetJsChallenge Gets the JavaScript challenge settings in the Web Application Firewall configuration for a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetJsChallenge.go.html to see an example of how to use GetJsChallenge API. // A default retry strategy applies to this operation GetJsChallenge() @@ -1317,7 +1317,7 @@ func (client WaasClient) getJsChallenge(ctx context.Context, request common.OCIR // GetPolicyConfig Gets the configuration of a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetPolicyConfig.go.html to see an example of how to use GetPolicyConfig API. // A default retry strategy applies to this operation GetPolicyConfig() @@ -1375,7 +1375,7 @@ func (client WaasClient) getPolicyConfig(ctx context.Context, request common.OCI // GetProtectionRule Gets the details of a protection rule in the Web Application Firewall configuration for a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetProtectionRule.go.html to see an example of how to use GetProtectionRule API. // A default retry strategy applies to this operation GetProtectionRule() @@ -1433,7 +1433,7 @@ func (client WaasClient) getProtectionRule(ctx context.Context, request common.O // GetProtectionSettings Gets the protection settings in the Web Application Firewall configuration for a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetProtectionSettings.go.html to see an example of how to use GetProtectionSettings API. // A default retry strategy applies to this operation GetProtectionSettings() @@ -1491,7 +1491,7 @@ func (client WaasClient) getProtectionSettings(ctx context.Context, request comm // GetWaasPolicy Gets the details of a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetWaasPolicy.go.html to see an example of how to use GetWaasPolicy API. // A default retry strategy applies to this operation GetWaasPolicy() @@ -1549,7 +1549,7 @@ func (client WaasClient) getWaasPolicy(ctx context.Context, request common.OCIRe // GetWafAddressRateLimiting Gets the address rate limiting settings of the Web Application Firewall configuration for a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetWafAddressRateLimiting.go.html to see an example of how to use GetWafAddressRateLimiting API. // A default retry strategy applies to this operation GetWafAddressRateLimiting() @@ -1607,7 +1607,7 @@ func (client WaasClient) getWafAddressRateLimiting(ctx context.Context, request // GetWafConfig Gets the Web Application Firewall configuration details for a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetWafConfig.go.html to see an example of how to use GetWafConfig API. // A default retry strategy applies to this operation GetWafConfig() @@ -1665,7 +1665,7 @@ func (client WaasClient) getWafConfig(ctx context.Context, request common.OCIReq // GetWorkRequest Gets the details of a specified work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -1724,7 +1724,7 @@ func (client WaasClient) getWorkRequest(ctx context.Context, request common.OCIR // ListAccessRules Gets the currently configured access rules for the Web Application Firewall configuration of a specified WAAS policy. // The order of the access rules is important. The rules will be checked in the order they are specified and the first matching rule will be used. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListAccessRules.go.html to see an example of how to use ListAccessRules API. // A default retry strategy applies to this operation ListAccessRules() @@ -1782,7 +1782,7 @@ func (client WaasClient) listAccessRules(ctx context.Context, request common.OCI // ListAddressLists Gets a list of address lists that can be used in a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListAddressLists.go.html to see an example of how to use ListAddressLists API. // A default retry strategy applies to this operation ListAddressLists() @@ -1841,7 +1841,7 @@ func (client WaasClient) listAddressLists(ctx context.Context, request common.OC // ListCachingRules Gets the currently configured caching rules for the Web Application Firewall configuration of a specified WAAS policy. // The rules are processed in the order they are specified in and the first matching rule will be used when processing a request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListCachingRules.go.html to see an example of how to use ListCachingRules API. // A default retry strategy applies to this operation ListCachingRules() @@ -1902,7 +1902,7 @@ func (client WaasClient) listCachingRules(ctx context.Context, request common.OC // The order of the CAPTCHA challenges is important. The URL for each // CAPTCHA will be checked in the order they are created. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListCaptchas.go.html to see an example of how to use ListCaptchas API. // A default retry strategy applies to this operation ListCaptchas() @@ -1960,7 +1960,7 @@ func (client WaasClient) listCaptchas(ctx context.Context, request common.OCIReq // ListCertificates Gets a list of SSL certificates that can be used in a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListCertificates.go.html to see an example of how to use ListCertificates API. // A default retry strategy applies to this operation ListCertificates() @@ -2018,7 +2018,7 @@ func (client WaasClient) listCertificates(ctx context.Context, request common.OC // ListCustomProtectionRules Gets a list of custom protection rules for the specified Web Application Firewall. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListCustomProtectionRules.go.html to see an example of how to use ListCustomProtectionRules API. // A default retry strategy applies to this operation ListCustomProtectionRules() @@ -2076,7 +2076,7 @@ func (client WaasClient) listCustomProtectionRules(ctx context.Context, request // ListEdgeSubnets Return the list of the tenant's edge node subnets. Use these CIDR blocks to restrict incoming traffic to your origin. These subnets are owned by OCI and forward traffic to customer origins. They are not associated with specific regions or compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListEdgeSubnets.go.html to see an example of how to use ListEdgeSubnets API. // A default retry strategy applies to this operation ListEdgeSubnets() @@ -2135,7 +2135,7 @@ func (client WaasClient) listEdgeSubnets(ctx context.Context, request common.OCI // ListGoodBots Gets the list of good bots defined in the Web Application Firewall configuration for a WAAS policy. // The list is sorted by `key`, in ascending order. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListGoodBots.go.html to see an example of how to use ListGoodBots API. // A default retry strategy applies to this operation ListGoodBots() @@ -2194,7 +2194,7 @@ func (client WaasClient) listGoodBots(ctx context.Context, request common.OCIReq // ListProtectionRules Gets the list of available protection rules for a WAAS policy. Use the `GetWafConfig` operation to view a list of currently configured protection rules for the Web Application Firewall, or use the `ListRecommendations` operation to get a list of recommended protection rules for the Web Application Firewall. // The list is sorted by `key`, in ascending order. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListProtectionRules.go.html to see an example of how to use ListProtectionRules API. // A default retry strategy applies to this operation ListProtectionRules() @@ -2254,7 +2254,7 @@ func (client WaasClient) listProtectionRules(ctx context.Context, request common // Use the `POST /waasPolicies/{waasPolicyId}/actions/acceptWafConfigRecommendations` method to accept recommended Web Application Firewall protection rules. For more information, see WAF Protection Rules (https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/wafprotectionrules.htm). // The list is sorted by `key`, in ascending order. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListRecommendations.go.html to see an example of how to use ListRecommendations API. // A default retry strategy applies to this operation ListRecommendations() @@ -2314,7 +2314,7 @@ func (client WaasClient) listRecommendations(ctx context.Context, request common // and the actions set for each feed. The list is sorted by `key`, // in ascending order. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListThreatFeeds.go.html to see an example of how to use ListThreatFeeds API. // A default retry strategy applies to this operation ListThreatFeeds() @@ -2372,7 +2372,7 @@ func (client WaasClient) listThreatFeeds(ctx context.Context, request common.OCI // ListWaasPolicies Gets a list of WAAS policies. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListWaasPolicies.go.html to see an example of how to use ListWaasPolicies API. // A default retry strategy applies to this operation ListWaasPolicies() @@ -2430,7 +2430,7 @@ func (client WaasClient) listWaasPolicies(ctx context.Context, request common.OC // ListWaasPolicyCustomProtectionRules Gets the list of currently configured custom protection rules for a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListWaasPolicyCustomProtectionRules.go.html to see an example of how to use ListWaasPolicyCustomProtectionRules API. // A default retry strategy applies to this operation ListWaasPolicyCustomProtectionRules() @@ -2488,7 +2488,7 @@ func (client WaasClient) listWaasPolicyCustomProtectionRules(ctx context.Context // ListWafBlockedRequests Gets the number of blocked requests by a Web Application Firewall feature in five minute blocks, sorted by `timeObserved` in ascending order (starting from oldest data). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListWafBlockedRequests.go.html to see an example of how to use ListWafBlockedRequests API. // A default retry strategy applies to this operation ListWafBlockedRequests() @@ -2548,7 +2548,7 @@ func (client WaasClient) listWafBlockedRequests(ctx context.Context, request com // policy. Sorted by the `timeObserved` in ascending order (starting from the // oldest recorded event). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListWafLogs.go.html to see an example of how to use ListWafLogs API. // A default retry strategy applies to this operation ListWafLogs() @@ -2608,7 +2608,7 @@ func (client WaasClient) listWafLogs(ctx context.Context, request common.OCIRequ // over a specified period of time, including blocked requests. Sorted // by `timeObserved` in ascending order (starting from oldest requests). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListWafRequests.go.html to see an example of how to use ListWafRequests API. // A default retry strategy applies to this operation ListWafRequests() @@ -2667,7 +2667,7 @@ func (client WaasClient) listWafRequests(ctx context.Context, request common.OCI // ListWafTraffic Gets the Web Application Firewall traffic data for a WAAS policy. // Sorted by `timeObserved` in ascending order (starting from oldest data). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListWafTraffic.go.html to see an example of how to use ListWafTraffic API. // A default retry strategy applies to this operation ListWafTraffic() @@ -2725,7 +2725,7 @@ func (client WaasClient) listWafTraffic(ctx context.Context, request common.OCIR // ListWhitelists Gets the list of whitelists defined in the Web Application Firewall configuration for a WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListWhitelists.go.html to see an example of how to use ListWhitelists API. // A default retry strategy applies to this operation ListWhitelists() @@ -2783,7 +2783,7 @@ func (client WaasClient) listWhitelists(ctx context.Context, request common.OCIR // ListWorkRequests Gets a list of subnets (CIDR notation) from which the WAAS EDGE may make requests. The subnets are owned by OCI and forward traffic to your origins. Allow traffic from these subnets to your origins. They are not associated with specific regions or compartments. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -2842,7 +2842,7 @@ func (client WaasClient) listWorkRequests(ctx context.Context, request common.OC // PurgeCache Performs a purge of the cache for each specified resource. If no resources are passed, the cache for the entire Web Application Firewall will be purged. // For more information, see Caching Rules (https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/cachingrules.htm#purge). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/PurgeCache.go.html to see an example of how to use PurgeCache API. func (client WaasClient) PurgeCache(ctx context.Context, request PurgeCacheRequest) (response PurgeCacheResponse, err error) { @@ -2903,7 +2903,7 @@ func (client WaasClient) purgeCache(ctx context.Context, request common.OCIReque // Access rules can be created by adding a new access rule object to the list without a `key` property specified. A `key` will be generated for the new access rule upon update. // Any existing access rules that are not specified with a `key` in the list of access rules will be deleted upon update. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateAccessRules.go.html to see an example of how to use UpdateAccessRules API. func (client WaasClient) UpdateAccessRules(ctx context.Context, request UpdateAccessRulesRequest) (response UpdateAccessRulesResponse, err error) { @@ -2965,7 +2965,7 @@ func (client WaasClient) updateAccessRules(ctx context.Context, request common.O // UpdateAddressList Updates the details of an address list. Only the fields specified in the request body will be updated; all other properties will remain unchanged. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateAddressList.go.html to see an example of how to use UpdateAddressList API. func (client WaasClient) UpdateAddressList(ctx context.Context, request UpdateAddressListRequest) (response UpdateAddressListResponse, err error) { @@ -3025,7 +3025,7 @@ func (client WaasClient) updateAddressList(ctx context.Context, request common.O // This operation can create, delete, update, and/or reorder caching rules depending on the structure of the request body. Caching rules can be updated by changing the properties of the caching rule object with the rule's key specified in the key field. Any existing caching rules that are not specified with a key in the list of access rules will be deleted upon update. // The order the caching rules are specified in is important. The rules are processed in the order they are specified and the first matching rule will be used when processing a request. Use `ListCachingRules` to view a list of all available caching rules in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateCachingRules.go.html to see an example of how to use UpdateCachingRules API. func (client WaasClient) UpdateCachingRules(ctx context.Context, request UpdateCachingRulesRequest) (response UpdateCachingRulesResponse, err error) { @@ -3092,7 +3092,7 @@ func (client WaasClient) updateCachingRules(ctx context.Context, request common. // Any existing CAPTCHA challenges that are not specified with a `key` in the list of CAPTCHA challenges will be deleted upon update. // Query parameters are allowed in CAPTCHA URL. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateCaptchas.go.html to see an example of how to use UpdateCaptchas API. func (client WaasClient) UpdateCaptchas(ctx context.Context, request UpdateCaptchasRequest) (response UpdateCaptchasResponse, err error) { @@ -3154,7 +3154,7 @@ func (client WaasClient) updateCaptchas(ctx context.Context, request common.OCIR // UpdateCertificate It is not possible to update a certificate, only create and delete. Therefore, this operation can only update the display name, freeform tags, and defined tags of a certificate. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateCertificate.go.html to see an example of how to use UpdateCertificate API. func (client WaasClient) UpdateCertificate(ctx context.Context, request UpdateCertificateRequest) (response UpdateCertificateResponse, err error) { @@ -3211,7 +3211,7 @@ func (client WaasClient) updateCertificate(ctx context.Context, request common.O // UpdateCustomProtectionRule Updates the configuration of a custom protection rule. Only the fields specified in the request body will be updated; all other properties will remain unchanged. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateCustomProtectionRule.go.html to see an example of how to use UpdateCustomProtectionRule API. func (client WaasClient) UpdateCustomProtectionRule(ctx context.Context, request UpdateCustomProtectionRuleRequest) (response UpdateCustomProtectionRuleResponse, err error) { @@ -3275,7 +3275,7 @@ func (client WaasClient) updateCustomProtectionRule(ctx context.Context, request // The signature is based on a library of attributes detected via JavaScript listeners; the attributes include OS, screen resolution, fonts, UserAgent, IP address, etc. We are constantly making improvements and considering new libraries to include in our DFC build. We can also exclude attributes from the signature as needed. // DFC collects attributes to generate a hashed signature about a client - if a fingerprint is not possible, then it will result in a block or alert action. Actions can be enforced across multiple devices if they share they have the same fingerprint. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateDeviceFingerprintChallenge.go.html to see an example of how to use UpdateDeviceFingerprintChallenge API. func (client WaasClient) UpdateDeviceFingerprintChallenge(ctx context.Context, request UpdateDeviceFingerprintChallengeRequest) (response UpdateDeviceFingerprintChallengeResponse, err error) { @@ -3338,7 +3338,7 @@ func (client WaasClient) updateDeviceFingerprintChallenge(ctx context.Context, r // UpdateGoodBots Updates the list of good bots in the Web Application Firewall configuration for a policy. Only the fields specified in the request body will be updated, all other configuration properties will remain unchanged. // Good bots allows you to manage access for bots from known providers, such as Google or Baidu. For more information about good bots, see Bot Management (https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/botmanagement.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateGoodBots.go.html to see an example of how to use UpdateGoodBots API. func (client WaasClient) UpdateGoodBots(ctx context.Context, request UpdateGoodBotsRequest) (response UpdateGoodBotsResponse, err error) { @@ -3400,7 +3400,7 @@ func (client WaasClient) updateGoodBots(ctx context.Context, request common.OCIR // UpdateHumanInteractionChallenge Updates the Human Interaction Challenge (HIC) settings in the Web Application Firewall configuration for a WAAS policy. HIC is a countermeasure that allows the proxy to check the user's browser for various behaviors that distinguish a human presence from a bot. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateHumanInteractionChallenge.go.html to see an example of how to use UpdateHumanInteractionChallenge API. func (client WaasClient) UpdateHumanInteractionChallenge(ctx context.Context, request UpdateHumanInteractionChallengeRequest) (response UpdateHumanInteractionChallengeResponse, err error) { @@ -3462,7 +3462,7 @@ func (client WaasClient) updateHumanInteractionChallenge(ctx context.Context, re // UpdateJsChallenge Updates the JavaScript challenge settings in the Web Application Firewall configuration for a WAAS policy. JavaScript Challenge validates that the client can accept JavaScript with a binary decision. For more information, see Bot Management (https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/botmanagement.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateJsChallenge.go.html to see an example of how to use UpdateJsChallenge API. func (client WaasClient) UpdateJsChallenge(ctx context.Context, request UpdateJsChallengeRequest) (response UpdateJsChallengeResponse, err error) { @@ -3524,7 +3524,7 @@ func (client WaasClient) updateJsChallenge(ctx context.Context, request common.O // UpdatePolicyConfig Updates the configuration for a WAAS policy. Only the fields specified in the request body will be updated; all other properties will remain unchanged. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdatePolicyConfig.go.html to see an example of how to use UpdatePolicyConfig API. func (client WaasClient) UpdatePolicyConfig(ctx context.Context, request UpdatePolicyConfigRequest) (response UpdatePolicyConfigResponse, err error) { @@ -3588,7 +3588,7 @@ func (client WaasClient) updatePolicyConfig(ctx context.Context, request common. // This operation can update or disable protection rules depending on the structure of the request body. // Protection rules can be updated by changing the properties of the protection rule object with the rule's key specified in the key field. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateProtectionRules.go.html to see an example of how to use UpdateProtectionRules API. func (client WaasClient) UpdateProtectionRules(ctx context.Context, request UpdateProtectionRulesRequest) (response UpdateProtectionRulesResponse, err error) { @@ -3645,7 +3645,7 @@ func (client WaasClient) updateProtectionRules(ctx context.Context, request comm // UpdateProtectionSettings Updates the protection settings in the Web Application Firewall configuration for a WAAS policy. Protection settings allow you define what action is taken when a request is blocked by the Web Application Firewall, such as returning a response code or block page. Only the fields specified in the request body will be updated; all other fields will remain unchanged. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateProtectionSettings.go.html to see an example of how to use UpdateProtectionSettings API. func (client WaasClient) UpdateProtectionSettings(ctx context.Context, request UpdateProtectionSettingsRequest) (response UpdateProtectionSettingsResponse, err error) { @@ -3707,7 +3707,7 @@ func (client WaasClient) updateProtectionSettings(ctx context.Context, request c // UpdateThreatFeeds Updates the action to take when a request's IP address matches an address in the specified threat intelligence feed. Threat intelligence feeds are compiled lists of IP addresses with malicious reputations based on internet intelligence. Only the threat feeds specified in the request body will be updated; all other threat feeds will remain unchanged. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateThreatFeeds.go.html to see an example of how to use UpdateThreatFeeds API. func (client WaasClient) UpdateThreatFeeds(ctx context.Context, request UpdateThreatFeedsRequest) (response UpdateThreatFeedsResponse, err error) { @@ -3766,7 +3766,7 @@ func (client WaasClient) updateThreatFeeds(ctx context.Context, request common.O // To update platform provided resources such as `GoodBots`, `ProtectionRules`, and `ThreatFeeds`, first retrieve the list of available resources with the related list operation such as `GetThreatFeeds` or `GetProtectionRules`. // The returned list will contain objects with `key` properties that can be used to update the resource during the `UpdateWaasPolicy` request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateWaasPolicy.go.html to see an example of how to use UpdateWaasPolicy API. func (client WaasClient) UpdateWaasPolicy(ctx context.Context, request UpdateWaasPolicyRequest) (response UpdateWaasPolicyResponse, err error) { @@ -3828,7 +3828,7 @@ func (client WaasClient) updateWaasPolicy(ctx context.Context, request common.OC // UpdateWaasPolicyCustomProtectionRules Updates the action for each specified custom protection rule. Only the `DETECT` and `BLOCK` actions can be set. Disabled rules should not be included in the list. For more information on protection rules, see WAF Protection Rules (https://docs.cloud.oracle.com/iaas/Content/WAF/Tasks/wafprotectionrules.htm). // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateWaasPolicyCustomProtectionRules.go.html to see an example of how to use UpdateWaasPolicyCustomProtectionRules API. func (client WaasClient) UpdateWaasPolicyCustomProtectionRules(ctx context.Context, request UpdateWaasPolicyCustomProtectionRulesRequest) (response UpdateWaasPolicyCustomProtectionRulesResponse, err error) { @@ -3890,7 +3890,7 @@ func (client WaasClient) updateWaasPolicyCustomProtectionRules(ctx context.Conte // UpdateWafAddressRateLimiting Updates the address rate limiting settings in the Web Application Firewall configuration for a policy. Rate limiting allows you to configure a threshold for the number of requests from a unique IP address for the given period. You can also define the response code for the requests from the same address that exceed the threshold. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateWafAddressRateLimiting.go.html to see an example of how to use UpdateWafAddressRateLimiting API. func (client WaasClient) UpdateWafAddressRateLimiting(ctx context.Context, request UpdateWafAddressRateLimitingRequest) (response UpdateWafAddressRateLimitingResponse, err error) { @@ -3957,7 +3957,7 @@ func (client WaasClient) updateWafAddressRateLimiting(ctx context.Context, reque // The returned list will contain objects with `key` properties that can be used to update the // resource during the `UpdateWafConfig` request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateWafConfig.go.html to see an example of how to use UpdateWafConfig API. func (client WaasClient) UpdateWafConfig(ctx context.Context, request UpdateWafConfigRequest) (response UpdateWafConfigResponse, err error) { @@ -4023,7 +4023,7 @@ func (client WaasClient) updateWafConfig(ctx context.Context, request common.OCI // Whitelists can be created by adding a new whitelist object to the list without a `key` property specified. A `key` will be generated for the new whitelist upon update. // Whitelists can be deleted by removing the existing whitelist object from the list. Any existing whitelists that are not specified with a `key` in the list of access rules will be deleted upon update. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateWhitelists.go.html to see an example of how to use UpdateWhitelists API. func (client WaasClient) UpdateWhitelists(ctx context.Context, request UpdateWhitelistsRequest) (response UpdateWhitelistsResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waas/waas_redirect_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/waas/waas_redirect_client.go index 74d789a6e38..097ee9f3696 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waas/waas_redirect_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waas/waas_redirect_client.go @@ -93,7 +93,7 @@ func (client *RedirectClient) ConfigurationProvider() *common.ConfigurationProvi // ChangeHttpRedirectCompartment Moves HTTP Redirect into a different compartment. When provided, If-Match is checked against ETag values of the WAAS policy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ChangeHttpRedirectCompartment.go.html to see an example of how to use ChangeHttpRedirectCompartment API. func (client RedirectClient) ChangeHttpRedirectCompartment(ctx context.Context, request ChangeHttpRedirectCompartmentRequest) (response ChangeHttpRedirectCompartmentResponse, err error) { @@ -155,7 +155,7 @@ func (client RedirectClient) changeHttpRedirectCompartment(ctx context.Context, // CreateHttpRedirect Creates a new HTTP Redirect on the WAF edge. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/CreateHttpRedirect.go.html to see an example of how to use CreateHttpRedirect API. func (client RedirectClient) CreateHttpRedirect(ctx context.Context, request CreateHttpRedirectRequest) (response CreateHttpRedirectResponse, err error) { @@ -217,7 +217,7 @@ func (client RedirectClient) createHttpRedirect(ctx context.Context, request com // DeleteHttpRedirect Deletes a redirect. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/DeleteHttpRedirect.go.html to see an example of how to use DeleteHttpRedirect API. func (client RedirectClient) DeleteHttpRedirect(ctx context.Context, request DeleteHttpRedirectRequest) (response DeleteHttpRedirectResponse, err error) { @@ -279,7 +279,7 @@ func (client RedirectClient) deleteHttpRedirect(ctx context.Context, request com // GetHttpRedirect Gets the details of a HTTP Redirect. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/GetHttpRedirect.go.html to see an example of how to use GetHttpRedirect API. // A default retry strategy applies to this operation GetHttpRedirect() @@ -337,7 +337,7 @@ func (client RedirectClient) getHttpRedirect(ctx context.Context, request common // ListHttpRedirects Gets a list of HTTP Redirects. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/ListHttpRedirects.go.html to see an example of how to use ListHttpRedirects API. // A default retry strategy applies to this operation ListHttpRedirects() @@ -395,7 +395,7 @@ func (client RedirectClient) listHttpRedirects(ctx context.Context, request comm // UpdateHttpRedirect Updates the details of a HTTP Redirect, including target and tags. Only the fields specified in the request body will be updated; all other properties will remain unchanged. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waas/UpdateHttpRedirect.go.html to see an example of how to use UpdateHttpRedirect API. func (client RedirectClient) UpdateHttpRedirect(ctx context.Context, request UpdateHttpRedirectRequest) (response UpdateHttpRedirectResponse, err error) { diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/access_control_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/access_control_rule.go index 0586c7f9870..7bbd087d229 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/access_control_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/access_control_rule.go @@ -19,9 +19,9 @@ import ( // AccessControlRule Rule that represents Request/Response Access Control. // Only actions of the following types are allowed to be referenced in this rule: -// * CHECK -// * ALLOW -// * RETURN_HTTP_RESPONSE +// - CHECK +// - ALLOW +// - RETURN_HTTP_RESPONSE type AccessControlRule struct { // Rule name. Must be unique within the module. @@ -38,22 +38,22 @@ type AccessControlRule struct { ConditionLanguage WebAppFirewallPolicyRuleConditionLanguageEnum `mandatory:"false" json:"conditionLanguage,omitempty"` } -//GetName returns Name +// GetName returns Name func (m AccessControlRule) GetName() *string { return m.Name } -//GetConditionLanguage returns ConditionLanguage +// GetConditionLanguage returns ConditionLanguage func (m AccessControlRule) GetConditionLanguage() WebAppFirewallPolicyRuleConditionLanguageEnum { return m.ConditionLanguage } -//GetCondition returns Condition +// GetCondition returns Condition func (m AccessControlRule) GetCondition() *string { return m.Condition } -//GetActionName returns ActionName +// GetActionName returns ActionName func (m AccessControlRule) GetActionName() *string { return m.ActionName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/allow_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/allow_action.go index 8c4a787cd5f..7ce8b5667b2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/allow_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/allow_action.go @@ -24,7 +24,7 @@ type AllowAction struct { Name *string `mandatory:"true" json:"name"` } -//GetName returns Name +// GetName returns Name func (m AllowAction) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/check_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/check_action.go index 1c67a91d107..c43b01e339a 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/check_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/check_action.go @@ -25,7 +25,7 @@ type CheckAction struct { Name *string `mandatory:"true" json:"name"` } -//GetName returns Name +// GetName returns Name func (m CheckAction) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_network_address_list_addresses_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_network_address_list_addresses_details.go index 1e983c47202..3f739917d99 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_network_address_list_addresses_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_network_address_list_addresses_details.go @@ -43,27 +43,27 @@ type CreateNetworkAddressListAddressesDetails struct { SystemTags map[string]map[string]interface{} `mandatory:"false" json:"systemTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateNetworkAddressListAddressesDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateNetworkAddressListAddressesDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateNetworkAddressListAddressesDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateNetworkAddressListAddressesDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m CreateNetworkAddressListAddressesDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_network_address_list_vcn_addresses_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_network_address_list_vcn_addresses_details.go index 90221aa6115..bad7981c54b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_network_address_list_vcn_addresses_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_network_address_list_vcn_addresses_details.go @@ -43,27 +43,27 @@ type CreateNetworkAddressListVcnAddressesDetails struct { SystemTags map[string]map[string]interface{} `mandatory:"false" json:"systemTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateNetworkAddressListVcnAddressesDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateNetworkAddressListVcnAddressesDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateNetworkAddressListVcnAddressesDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateNetworkAddressListVcnAddressesDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m CreateNetworkAddressListVcnAddressesDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_web_app_firewall_load_balancer_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_web_app_firewall_load_balancer_details.go index 4b8d13c694f..a99147a7ac1 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_web_app_firewall_load_balancer_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/create_web_app_firewall_load_balancer_details.go @@ -45,32 +45,32 @@ type CreateWebAppFirewallLoadBalancerDetails struct { SystemTags map[string]map[string]interface{} `mandatory:"false" json:"systemTags"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m CreateWebAppFirewallLoadBalancerDetails) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m CreateWebAppFirewallLoadBalancerDetails) GetCompartmentId() *string { return m.CompartmentId } -//GetWebAppFirewallPolicyId returns WebAppFirewallPolicyId +// GetWebAppFirewallPolicyId returns WebAppFirewallPolicyId func (m CreateWebAppFirewallLoadBalancerDetails) GetWebAppFirewallPolicyId() *string { return m.WebAppFirewallPolicyId } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m CreateWebAppFirewallLoadBalancerDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m CreateWebAppFirewallLoadBalancerDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m CreateWebAppFirewallLoadBalancerDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_addresses.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_addresses.go index e68fa322b69..c0c26b7a76d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_addresses.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_addresses.go @@ -59,52 +59,52 @@ type NetworkAddressListAddresses struct { LifecycleState NetworkAddressListLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m NetworkAddressListAddresses) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m NetworkAddressListAddresses) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m NetworkAddressListAddresses) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m NetworkAddressListAddresses) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m NetworkAddressListAddresses) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m NetworkAddressListAddresses) GetLifecycleState() NetworkAddressListLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m NetworkAddressListAddresses) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m NetworkAddressListAddresses) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m NetworkAddressListAddresses) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m NetworkAddressListAddresses) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_addresses_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_addresses_summary.go index 4549631a08c..b0553a8aee5 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_addresses_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_addresses_summary.go @@ -59,52 +59,52 @@ type NetworkAddressListAddressesSummary struct { LifecycleState NetworkAddressListLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m NetworkAddressListAddressesSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m NetworkAddressListAddressesSummary) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m NetworkAddressListAddressesSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m NetworkAddressListAddressesSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m NetworkAddressListAddressesSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m NetworkAddressListAddressesSummary) GetLifecycleState() NetworkAddressListLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m NetworkAddressListAddressesSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m NetworkAddressListAddressesSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m NetworkAddressListAddressesSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m NetworkAddressListAddressesSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_vcn_addresses.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_vcn_addresses.go index dd0f1ce9e7a..75295f8b3d2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_vcn_addresses.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_vcn_addresses.go @@ -59,52 +59,52 @@ type NetworkAddressListVcnAddresses struct { LifecycleState NetworkAddressListLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m NetworkAddressListVcnAddresses) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m NetworkAddressListVcnAddresses) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m NetworkAddressListVcnAddresses) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m NetworkAddressListVcnAddresses) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m NetworkAddressListVcnAddresses) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m NetworkAddressListVcnAddresses) GetLifecycleState() NetworkAddressListLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m NetworkAddressListVcnAddresses) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m NetworkAddressListVcnAddresses) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m NetworkAddressListVcnAddresses) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m NetworkAddressListVcnAddresses) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_vcn_addresses_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_vcn_addresses_summary.go index 6f045e8d2e4..56eb6bc69e6 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_vcn_addresses_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/network_address_list_vcn_addresses_summary.go @@ -59,52 +59,52 @@ type NetworkAddressListVcnAddressesSummary struct { LifecycleState NetworkAddressListLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m NetworkAddressListVcnAddressesSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m NetworkAddressListVcnAddressesSummary) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m NetworkAddressListVcnAddressesSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m NetworkAddressListVcnAddressesSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m NetworkAddressListVcnAddressesSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m NetworkAddressListVcnAddressesSummary) GetLifecycleState() NetworkAddressListLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m NetworkAddressListVcnAddressesSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m NetworkAddressListVcnAddressesSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m NetworkAddressListVcnAddressesSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m NetworkAddressListVcnAddressesSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/protection_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/protection_rule.go index 778e6031c2e..771c0440591 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/protection_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/protection_rule.go @@ -19,8 +19,8 @@ import ( // ProtectionRule Rule that represents Request/Response Protection. // Only actions of the following types are allowed to be referenced in this rule: -// * CHECK -// * RETURN_HTTP_RESPONSE +// - CHECK +// - RETURN_HTTP_RESPONSE type ProtectionRule struct { // Rule name. Must be unique within the module. @@ -50,22 +50,22 @@ type ProtectionRule struct { ConditionLanguage WebAppFirewallPolicyRuleConditionLanguageEnum `mandatory:"false" json:"conditionLanguage,omitempty"` } -//GetName returns Name +// GetName returns Name func (m ProtectionRule) GetName() *string { return m.Name } -//GetConditionLanguage returns ConditionLanguage +// GetConditionLanguage returns ConditionLanguage func (m ProtectionRule) GetConditionLanguage() WebAppFirewallPolicyRuleConditionLanguageEnum { return m.ConditionLanguage } -//GetCondition returns Condition +// GetCondition returns Condition func (m ProtectionRule) GetCondition() *string { return m.Condition } -//GetActionName returns ActionName +// GetActionName returns ActionName func (m ProtectionRule) GetActionName() *string { return m.ActionName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/request_rate_limiting_rule.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/request_rate_limiting_rule.go index 4a10c099a53..0ca3a8a4846 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/request_rate_limiting_rule.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/request_rate_limiting_rule.go @@ -19,8 +19,8 @@ import ( // RequestRateLimitingRule Rule that represents RequestRateLimitingConfigurations. // Only actions of the following types are allowed to be referenced in this rule: -// * CHECK -// * RETURN_HTTP_RESPONSE +// - CHECK +// - RETURN_HTTP_RESPONSE type RequestRateLimitingRule struct { // Rule name. Must be unique within the module. @@ -41,22 +41,22 @@ type RequestRateLimitingRule struct { ConditionLanguage WebAppFirewallPolicyRuleConditionLanguageEnum `mandatory:"false" json:"conditionLanguage,omitempty"` } -//GetName returns Name +// GetName returns Name func (m RequestRateLimitingRule) GetName() *string { return m.Name } -//GetConditionLanguage returns ConditionLanguage +// GetConditionLanguage returns ConditionLanguage func (m RequestRateLimitingRule) GetConditionLanguage() WebAppFirewallPolicyRuleConditionLanguageEnum { return m.ConditionLanguage } -//GetCondition returns Condition +// GetCondition returns Condition func (m RequestRateLimitingRule) GetCondition() *string { return m.Condition } -//GetActionName returns ActionName +// GetActionName returns ActionName func (m RequestRateLimitingRule) GetActionName() *string { return m.ActionName } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/return_http_response_action.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/return_http_response_action.go index d4b1b23cdf7..494a0cbdf9d 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/return_http_response_action.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/return_http_response_action.go @@ -81,7 +81,7 @@ type ReturnHttpResponseAction struct { Body HttpResponseBody `mandatory:"false" json:"body"` } -//GetName returns Name +// GetName returns Name func (m ReturnHttpResponseAction) GetName() *string { return m.Name } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/static_text_http_response_body.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/static_text_http_response_body.go index cc37e42756c..ef1ab0e37a9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/static_text_http_response_body.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/static_text_http_response_body.go @@ -19,10 +19,11 @@ import ( // StaticTextHttpResponseBody Allows returning static text as HTTP response body. // Example: -// { -// "type": "STATIC_TEXT", -// "text": "{\n \"code\": 403,\n \"message\":\"Unauthorised\"\n}" -// } +// +// { +// "type": "STATIC_TEXT", +// "text": "{\n \"code\": 403,\n \"message\":\"Unauthorised\"\n}" +// } type StaticTextHttpResponseBody struct { // Static response body text. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/update_network_address_list_addresses_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/update_network_address_list_addresses_details.go index a0d5263aabb..287c48b068b 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/update_network_address_list_addresses_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/update_network_address_list_addresses_details.go @@ -40,22 +40,22 @@ type UpdateNetworkAddressListAddressesDetails struct { Addresses []string `mandatory:"false" json:"addresses"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateNetworkAddressListAddressesDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateNetworkAddressListAddressesDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateNetworkAddressListAddressesDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m UpdateNetworkAddressListAddressesDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/update_network_address_list_vcn_addresses_details.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/update_network_address_list_vcn_addresses_details.go index 91527de83d9..dcdfeb231e2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/update_network_address_list_vcn_addresses_details.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/update_network_address_list_vcn_addresses_details.go @@ -40,22 +40,22 @@ type UpdateNetworkAddressListVcnAddressesDetails struct { VcnAddresses []PrivateAddresses `mandatory:"false" json:"vcnAddresses"` } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m UpdateNetworkAddressListVcnAddressesDetails) GetDisplayName() *string { return m.DisplayName } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m UpdateNetworkAddressListVcnAddressesDetails) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m UpdateNetworkAddressListVcnAddressesDetails) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m UpdateNetworkAddressListVcnAddressesDetails) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/waf_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/waf_client.go index 6a11288e0ca..01f382dc85f 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/waf_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/waf_client.go @@ -95,7 +95,7 @@ func (client *WafClient) ConfigurationProvider() *common.ConfigurationProvider { // ChangeNetworkAddressListCompartment Moves a NetworkAddressList resource from one compartment to another. // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ChangeNetworkAddressListCompartment.go.html to see an example of how to use ChangeNetworkAddressListCompartment API. // A default retry strategy applies to this operation ChangeNetworkAddressListCompartment() @@ -154,7 +154,7 @@ func (client WafClient) changeNetworkAddressListCompartment(ctx context.Context, // ChangeWebAppFirewallCompartment Moves a Web App Firewall resource from one compartment to another. // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ChangeWebAppFirewallCompartment.go.html to see an example of how to use ChangeWebAppFirewallCompartment API. // A default retry strategy applies to this operation ChangeWebAppFirewallCompartment() @@ -213,7 +213,7 @@ func (client WafClient) changeWebAppFirewallCompartment(ctx context.Context, req // ChangeWebAppFirewallPolicyCompartment Moves a WebAppFirewallfPolicy resource from one compartment to another. // When provided, If-Match is checked against ETag values of the resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ChangeWebAppFirewallPolicyCompartment.go.html to see an example of how to use ChangeWebAppFirewallPolicyCompartment API. // A default retry strategy applies to this operation ChangeWebAppFirewallPolicyCompartment() @@ -271,7 +271,7 @@ func (client WafClient) changeWebAppFirewallPolicyCompartment(ctx context.Contex // CreateNetworkAddressList Creates a new NetworkAddressList. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/CreateNetworkAddressList.go.html to see an example of how to use CreateNetworkAddressList API. // A default retry strategy applies to this operation CreateNetworkAddressList() @@ -334,7 +334,7 @@ func (client WafClient) createNetworkAddressList(ctx context.Context, request co // CreateWebAppFirewall Creates a new WebAppFirewall. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/CreateWebAppFirewall.go.html to see an example of how to use CreateWebAppFirewall API. // A default retry strategy applies to this operation CreateWebAppFirewall() @@ -397,7 +397,7 @@ func (client WafClient) createWebAppFirewall(ctx context.Context, request common // CreateWebAppFirewallPolicy Creates a new WebAppFirewallPolicy. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/CreateWebAppFirewallPolicy.go.html to see an example of how to use CreateWebAppFirewallPolicy API. // A default retry strategy applies to this operation CreateWebAppFirewallPolicy() @@ -460,7 +460,7 @@ func (client WafClient) createWebAppFirewallPolicy(ctx context.Context, request // DeleteNetworkAddressList Deletes a NetworkAddressList resource identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/DeleteNetworkAddressList.go.html to see an example of how to use DeleteNetworkAddressList API. // A default retry strategy applies to this operation DeleteNetworkAddressList() @@ -518,7 +518,7 @@ func (client WafClient) deleteNetworkAddressList(ctx context.Context, request co // DeleteWebAppFirewall Deletes a WebAppFirewall resource identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/DeleteWebAppFirewall.go.html to see an example of how to use DeleteWebAppFirewall API. // A default retry strategy applies to this operation DeleteWebAppFirewall() @@ -576,7 +576,7 @@ func (client WafClient) deleteWebAppFirewall(ctx context.Context, request common // DeleteWebAppFirewallPolicy Deletes a WebAppFirewallPolicy resource identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/DeleteWebAppFirewallPolicy.go.html to see an example of how to use DeleteWebAppFirewallPolicy API. // A default retry strategy applies to this operation DeleteWebAppFirewallPolicy() @@ -634,7 +634,7 @@ func (client WafClient) deleteWebAppFirewallPolicy(ctx context.Context, request // GetNetworkAddressList Gets a NetworkAddressList by OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/GetNetworkAddressList.go.html to see an example of how to use GetNetworkAddressList API. // A default retry strategy applies to this operation GetNetworkAddressList() @@ -692,7 +692,7 @@ func (client WafClient) getNetworkAddressList(ctx context.Context, request commo // GetWebAppFirewall Gets a WebAppFirewall by OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/GetWebAppFirewall.go.html to see an example of how to use GetWebAppFirewall API. // A default retry strategy applies to this operation GetWebAppFirewall() @@ -750,7 +750,7 @@ func (client WafClient) getWebAppFirewall(ctx context.Context, request common.OC // GetWebAppFirewallPolicy Gets a WebAppFirewallPolicy with the given OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/GetWebAppFirewallPolicy.go.html to see an example of how to use GetWebAppFirewallPolicy API. // A default retry strategy applies to this operation GetWebAppFirewallPolicy() @@ -808,7 +808,7 @@ func (client WafClient) getWebAppFirewallPolicy(ctx context.Context, request com // GetWorkRequest Gets the status of the WorkRequest with the given OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. // A default retry strategy applies to this operation GetWorkRequest() @@ -866,7 +866,7 @@ func (client WafClient) getWorkRequest(ctx context.Context, request common.OCIRe // ListNetworkAddressLists Gets a list of all NetworkAddressLists in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ListNetworkAddressLists.go.html to see an example of how to use ListNetworkAddressLists API. // A default retry strategy applies to this operation ListNetworkAddressLists() @@ -924,7 +924,7 @@ func (client WafClient) listNetworkAddressLists(ctx context.Context, request com // ListProtectionCapabilities Lists of protection capabilities filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ListProtectionCapabilities.go.html to see an example of how to use ListProtectionCapabilities API. // A default retry strategy applies to this operation ListProtectionCapabilities() @@ -982,7 +982,7 @@ func (client WafClient) listProtectionCapabilities(ctx context.Context, request // ListProtectionCapabilityGroupTags Lists of available group tags filtered by query parameters. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ListProtectionCapabilityGroupTags.go.html to see an example of how to use ListProtectionCapabilityGroupTags API. // A default retry strategy applies to this operation ListProtectionCapabilityGroupTags() @@ -1040,7 +1040,7 @@ func (client WafClient) listProtectionCapabilityGroupTags(ctx context.Context, r // ListWebAppFirewallPolicies Gets a list of all WebAppFirewallPolicies in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ListWebAppFirewallPolicies.go.html to see an example of how to use ListWebAppFirewallPolicies API. // A default retry strategy applies to this operation ListWebAppFirewallPolicies() @@ -1098,7 +1098,7 @@ func (client WafClient) listWebAppFirewallPolicies(ctx context.Context, request // ListWebAppFirewalls Gets a list of all WebAppFirewalls in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ListWebAppFirewalls.go.html to see an example of how to use ListWebAppFirewalls API. // A default retry strategy applies to this operation ListWebAppFirewalls() @@ -1156,7 +1156,7 @@ func (client WafClient) listWebAppFirewalls(ctx context.Context, request common. // ListWorkRequestErrors Return a (paginated) list of errors for a given WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. // A default retry strategy applies to this operation ListWorkRequestErrors() @@ -1214,7 +1214,7 @@ func (client WafClient) listWorkRequestErrors(ctx context.Context, request commo // ListWorkRequestLogs Return a (paginated) list of logs for a given WorkRequest. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. // A default retry strategy applies to this operation ListWorkRequestLogs() @@ -1272,7 +1272,7 @@ func (client WafClient) listWorkRequestLogs(ctx context.Context, request common. // ListWorkRequests Lists the WorkRequests in a compartment. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. // A default retry strategy applies to this operation ListWorkRequests() @@ -1330,7 +1330,7 @@ func (client WafClient) listWorkRequests(ctx context.Context, request common.OCI // UpdateNetworkAddressList Update the NetworkAddressList identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/UpdateNetworkAddressList.go.html to see an example of how to use UpdateNetworkAddressList API. // A default retry strategy applies to this operation UpdateNetworkAddressList() @@ -1388,7 +1388,7 @@ func (client WafClient) updateNetworkAddressList(ctx context.Context, request co // UpdateWebAppFirewall Updates the WebAppFirewall identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/UpdateWebAppFirewall.go.html to see an example of how to use UpdateWebAppFirewall API. // A default retry strategy applies to this operation UpdateWebAppFirewall() @@ -1446,7 +1446,7 @@ func (client WafClient) updateWebAppFirewall(ctx context.Context, request common // UpdateWebAppFirewallPolicy Update the WebAppFirewallPolicy identified by the OCID. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/waf/UpdateWebAppFirewallPolicy.go.html to see an example of how to use UpdateWebAppFirewallPolicy API. // A default retry strategy applies to this operation UpdateWebAppFirewallPolicy() diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_load_balancer.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_load_balancer.go index 1611a81f794..f6e5ecc89e8 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_load_balancer.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_load_balancer.go @@ -61,57 +61,57 @@ type WebAppFirewallLoadBalancer struct { LifecycleState WebAppFirewallLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m WebAppFirewallLoadBalancer) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m WebAppFirewallLoadBalancer) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m WebAppFirewallLoadBalancer) GetCompartmentId() *string { return m.CompartmentId } -//GetWebAppFirewallPolicyId returns WebAppFirewallPolicyId +// GetWebAppFirewallPolicyId returns WebAppFirewallPolicyId func (m WebAppFirewallLoadBalancer) GetWebAppFirewallPolicyId() *string { return m.WebAppFirewallPolicyId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WebAppFirewallLoadBalancer) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WebAppFirewallLoadBalancer) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WebAppFirewallLoadBalancer) GetLifecycleState() WebAppFirewallLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m WebAppFirewallLoadBalancer) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WebAppFirewallLoadBalancer) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WebAppFirewallLoadBalancer) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m WebAppFirewallLoadBalancer) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_load_balancer_summary.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_load_balancer_summary.go index 77d3a20e352..97a236f3dc9 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_load_balancer_summary.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_load_balancer_summary.go @@ -61,57 +61,57 @@ type WebAppFirewallLoadBalancerSummary struct { LifecycleState WebAppFirewallLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` } -//GetId returns Id +// GetId returns Id func (m WebAppFirewallLoadBalancerSummary) GetId() *string { return m.Id } -//GetDisplayName returns DisplayName +// GetDisplayName returns DisplayName func (m WebAppFirewallLoadBalancerSummary) GetDisplayName() *string { return m.DisplayName } -//GetCompartmentId returns CompartmentId +// GetCompartmentId returns CompartmentId func (m WebAppFirewallLoadBalancerSummary) GetCompartmentId() *string { return m.CompartmentId } -//GetWebAppFirewallPolicyId returns WebAppFirewallPolicyId +// GetWebAppFirewallPolicyId returns WebAppFirewallPolicyId func (m WebAppFirewallLoadBalancerSummary) GetWebAppFirewallPolicyId() *string { return m.WebAppFirewallPolicyId } -//GetTimeCreated returns TimeCreated +// GetTimeCreated returns TimeCreated func (m WebAppFirewallLoadBalancerSummary) GetTimeCreated() *common.SDKTime { return m.TimeCreated } -//GetTimeUpdated returns TimeUpdated +// GetTimeUpdated returns TimeUpdated func (m WebAppFirewallLoadBalancerSummary) GetTimeUpdated() *common.SDKTime { return m.TimeUpdated } -//GetLifecycleState returns LifecycleState +// GetLifecycleState returns LifecycleState func (m WebAppFirewallLoadBalancerSummary) GetLifecycleState() WebAppFirewallLifecycleStateEnum { return m.LifecycleState } -//GetLifecycleDetails returns LifecycleDetails +// GetLifecycleDetails returns LifecycleDetails func (m WebAppFirewallLoadBalancerSummary) GetLifecycleDetails() *string { return m.LifecycleDetails } -//GetFreeformTags returns FreeformTags +// GetFreeformTags returns FreeformTags func (m WebAppFirewallLoadBalancerSummary) GetFreeformTags() map[string]string { return m.FreeformTags } -//GetDefinedTags returns DefinedTags +// GetDefinedTags returns DefinedTags func (m WebAppFirewallLoadBalancerSummary) GetDefinedTags() map[string]map[string]interface{} { return m.DefinedTags } -//GetSystemTags returns SystemTags +// GetSystemTags returns SystemTags func (m WebAppFirewallLoadBalancerSummary) GetSystemTags() map[string]map[string]interface{} { return m.SystemTags } diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_policy.go b/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_policy.go index 9bd90771a4a..9e4f8f5e7b2 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_policy.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/waf/web_app_firewall_policy.go @@ -21,13 +21,14 @@ import ( // incoming/outgoing HTTP message parameters and execution of actions, based on results of rules execution. // In policy, rules are grouped into modules by their functionality. Modules can be further divided by the type // of HTTP messages they handle: -// Modules that inspect incoming HTTP request. These modules are executed in the order they are enumerated here: -// * requestAccessControl -// * requestRateLimiting -// * requestProtection -// Modules that inspect outgoing HTTP responses. These modules are executed in the order they are enumerated here: -// * responseAccessControl -// * responseProtection +// +// Modules that inspect incoming HTTP request. These modules are executed in the order they are enumerated here: +// * requestAccessControl +// * requestRateLimiting +// * requestProtection +// Modules that inspect outgoing HTTP responses. These modules are executed in the order they are enumerated here: +// * responseAccessControl +// * responseProtection type WebAppFirewallPolicy struct { // The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the WebAppFirewallPolicy. diff --git a/vendor/github.com/oracle/oci-go-sdk/v65/workrequests/workrequests_workrequest_client.go b/vendor/github.com/oracle/oci-go-sdk/v65/workrequests/workrequests_workrequest_client.go index 6f6d99ae099..9947d180226 100644 --- a/vendor/github.com/oracle/oci-go-sdk/v65/workrequests/workrequests_workrequest_client.go +++ b/vendor/github.com/oracle/oci-go-sdk/v65/workrequests/workrequests_workrequest_client.go @@ -97,7 +97,7 @@ func (client *WorkRequestClient) ConfigurationProvider() *common.ConfigurationPr // GetWorkRequest Gets the details of a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/workrequests/GetWorkRequest.go.html to see an example of how to use GetWorkRequest API. func (client WorkRequestClient) GetWorkRequest(ctx context.Context, request GetWorkRequestRequest) (response GetWorkRequestResponse, err error) { @@ -154,7 +154,7 @@ func (client WorkRequestClient) getWorkRequest(ctx context.Context, request comm // ListWorkRequestErrors Gets the errors for a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/workrequests/ListWorkRequestErrors.go.html to see an example of how to use ListWorkRequestErrors API. func (client WorkRequestClient) ListWorkRequestErrors(ctx context.Context, request ListWorkRequestErrorsRequest) (response ListWorkRequestErrorsResponse, err error) { @@ -211,7 +211,7 @@ func (client WorkRequestClient) listWorkRequestErrors(ctx context.Context, reque // ListWorkRequestLogs Gets the logs for a work request. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/workrequests/ListWorkRequestLogs.go.html to see an example of how to use ListWorkRequestLogs API. func (client WorkRequestClient) ListWorkRequestLogs(ctx context.Context, request ListWorkRequestLogsRequest) (response ListWorkRequestLogsResponse, err error) { @@ -268,7 +268,7 @@ func (client WorkRequestClient) listWorkRequestLogs(ctx context.Context, request // ListWorkRequests Lists the work requests in a compartment or for a specified resource. // -// See also +// # See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/workrequests/ListWorkRequests.go.html to see an example of how to use ListWorkRequests API. func (client WorkRequestClient) ListWorkRequests(ctx context.Context, request ListWorkRequestsRequest) (response ListWorkRequestsResponse, err error) { diff --git a/vendor/modules.txt b/vendor/modules.txt index f00b087a5be..a48434ca007 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -248,7 +248,7 @@ github.com/mitchellh/reflectwalk # github.com/oklog/run v1.0.0 ## explicit github.com/oklog/run -# github.com/oracle/oci-go-sdk/v65 v65.49.1 => ./vendor/github.com/oracle/oci-go-sdk +# github.com/oracle/oci-go-sdk/v65 v65.49.2 ## explicit; go 1.13 github.com/oracle/oci-go-sdk/v65/adm github.com/oracle/oci-go-sdk/v65/aianomalydetection From 51fb45c38aff472bd92efcd53f24a00391823684 Mon Sep 17 00:00:00 2001 From: jotruon Date: Tue, 26 Sep 2023 15:01:12 -0700 Subject: [PATCH 7/8] Added - Release for v5.14.0 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ab9b61b855..f2e5126efc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 5.14.0 (Unreleased) +## 5.14.0 (September 26, 2023) ### Added - Support for OIC: FAaas Self Service with Henosis From 2ebc1ffd86f3f373d5aaf96f26e6357cd4219094 Mon Sep 17 00:00:00 2001 From: tf-oci-pub Date: Tue, 26 Sep 2023 22:01:51 +0000 Subject: [PATCH 8/8] Added - README.md of service examples with magic button --- examples/zips/adm.zip | Bin 1859 -> 1859 bytes examples/zips/aiAnomalyDetection.zip | Bin 3302 -> 3302 bytes examples/zips/aiDocument.zip | Bin 1793 -> 1793 bytes examples/zips/aiLanguage.zip | Bin 1682 -> 1682 bytes examples/zips/aiVision.zip | Bin 1655 -> 1655 bytes examples/zips/always_free.zip | Bin 3850 -> 3850 bytes examples/zips/analytics.zip | Bin 2765 -> 2765 bytes examples/zips/announcements_service.zip | Bin 2717 -> 2717 bytes examples/zips/api_gateway.zip | Bin 27070 -> 27070 bytes examples/zips/apm.zip | Bin 18861 -> 18861 bytes examples/zips/appmgmt_control.zip | Bin 2681 -> 2681 bytes examples/zips/artifacts.zip | Bin 7103 -> 7103 bytes examples/zips/audit.zip | Bin 1804 -> 1804 bytes examples/zips/autoscaling.zip | Bin 5682 -> 5682 bytes examples/zips/bastion.zip | Bin 4998 -> 4998 bytes examples/zips/big_data_service.zip | Bin 9746 -> 9746 bytes examples/zips/blockchain.zip | Bin 1898 -> 1898 bytes examples/zips/budget.zip | Bin 3741 -> 3741 bytes examples/zips/certificatesManagement.zip | Bin 10431 -> 10431 bytes examples/zips/cloudBridge.zip | Bin 9946 -> 9946 bytes examples/zips/cloudMigrations.zip | Bin 8427 -> 8427 bytes examples/zips/cloudguard.zip | Bin 21656 -> 21656 bytes examples/zips/compute.zip | Bin 52219 -> 52219 bytes examples/zips/computeinstanceagent.zip | Bin 3311 -> 3311 bytes examples/zips/concepts.zip | Bin 4863 -> 4863 bytes examples/zips/container_engine.zip | Bin 21994 -> 21994 bytes examples/zips/container_instances.zip | Bin 3216 -> 3216 bytes examples/zips/database.zip | Bin 142084 -> 142084 bytes examples/zips/databaseTools.zip | Bin 3784 -> 3784 bytes examples/zips/databasemanagement.zip | Bin 6090 -> 6090 bytes examples/zips/databasemigration.zip | Bin 3831 -> 3831 bytes examples/zips/datacatalog.zip | Bin 2819 -> 2819 bytes examples/zips/dataflow.zip | Bin 3602 -> 3602 bytes examples/zips/dataintegration.zip | Bin 6965 -> 6965 bytes examples/zips/datalabeling.zip | Bin 2175 -> 2175 bytes examples/zips/datasafe.zip | Bin 41897 -> 41897 bytes examples/zips/datascience.zip | Bin 48846 -> 48846 bytes examples/zips/devops.zip | Bin 42339 -> 42339 bytes examples/zips/disaster_recovery.zip | Bin 13731 -> 13731 bytes examples/zips/dns.zip | Bin 12059 -> 12059 bytes examples/zips/em_warehouse.zip | Bin 2424 -> 2424 bytes examples/zips/email.zip | Bin 4640 -> 4640 bytes examples/zips/events.zip | Bin 1807 -> 1807 bytes examples/zips/fast_connect.zip | Bin 8375 -> 8375 bytes examples/zips/functions.zip | Bin 3475 -> 3475 bytes examples/zips/fusionapps.zip | Bin 12252 -> 12252 bytes examples/zips/goldengate.zip | Bin 5292 -> 5292 bytes examples/zips/health_checks.zip | Bin 8824 -> 8824 bytes examples/zips/id6.zip | Bin 1003 -> 1003 bytes examples/zips/identity.zip | Bin 16320 -> 16320 bytes examples/zips/identity_data_plane.zip | Bin 1948 -> 1948 bytes examples/zips/identity_domains.zip | Bin 48023 -> 48023 bytes examples/zips/integration.zip | Bin 2004 -> 2043 bytes examples/zips/jms.zip | Bin 11623 -> 11623 bytes examples/zips/kms.zip | Bin 7652 -> 7652 bytes examples/zips/license_manager.zip | Bin 5213 -> 5213 bytes examples/zips/limits.zip | Bin 2522 -> 2522 bytes examples/zips/load_balancer.zip | Bin 6517 -> 6517 bytes examples/zips/log_analytics.zip | Bin 18591 -> 18591 bytes examples/zips/logging.zip | Bin 9045 -> 9045 bytes examples/zips/management_agent.zip | Bin 3044 -> 3044 bytes examples/zips/management_dashboard.zip | Bin 5586 -> 5586 bytes examples/zips/marketplace.zip | Bin 3062 -> 3062 bytes examples/zips/media_services.zip | Bin 9156 -> 9156 bytes examples/zips/metering_computation.zip | Bin 4442 -> 4442 bytes examples/zips/monitoring.zip | Bin 3630 -> 3630 bytes examples/zips/mysql.zip | Bin 6564 -> 6564 bytes examples/zips/network_firewall.zip | Bin 4573 -> 4573 bytes examples/zips/network_load_balancer.zip | Bin 6539 -> 6539 bytes examples/zips/networking.zip | Bin 39056 -> 39056 bytes examples/zips/nosql.zip | Bin 4137 -> 4137 bytes examples/zips/notifications.zip | Bin 6647 -> 6647 bytes examples/zips/object_storage.zip | Bin 9907 -> 9907 bytes examples/zips/ocvp.zip | Bin 4324 -> 4324 bytes examples/zips/onesubscription.zip | Bin 7807 -> 7807 bytes examples/zips/opa.zip | Bin 1629 -> 1629 bytes examples/zips/opensearch.zip | Bin 2613 -> 2613 bytes examples/zips/operator_access_control.zip | Bin 6871 -> 6871 bytes examples/zips/opsi.zip | Bin 27188 -> 27188 bytes examples/zips/optimizer.zip | Bin 2311 -> 2311 bytes .../zips/oracle_cloud_vmware_solution.zip | Bin 3979 -> 3979 bytes examples/zips/oracle_content_experience.zip | Bin 2090 -> 2090 bytes examples/zips/oracle_digital_assistant.zip | Bin 3038 -> 3038 bytes examples/zips/osmanagement.zip | Bin 8728 -> 8728 bytes examples/zips/osp_gateway.zip | Bin 3540 -> 3540 bytes examples/zips/osub_billing_schedule.zip | Bin 1704 -> 1704 bytes .../zips/osub_organization_subscription.zip | Bin 1757 -> 1757 bytes examples/zips/osub_subscription.zip | Bin 1795 -> 1795 bytes examples/zips/osub_usage.zip | Bin 1749 -> 1749 bytes examples/zips/pic.zip | Bin 8004 -> 8004 bytes examples/zips/queue.zip | Bin 2696 -> 2696 bytes examples/zips/recovery.zip | Bin 4505 -> 4505 bytes examples/zips/resourcemanager.zip | Bin 6565 -> 6565 bytes examples/zips/serviceManagerProxy.zip | Bin 1691 -> 1691 bytes examples/zips/service_catalog.zip | Bin 3853 -> 3853 bytes examples/zips/service_connector_hub.zip | Bin 2758 -> 2758 bytes examples/zips/service_mesh.zip | Bin 9180 -> 9180 bytes examples/zips/stack_monitoring.zip | Bin 9995 -> 9995 bytes examples/zips/storage.zip | Bin 26432 -> 26432 bytes examples/zips/streaming.zip | Bin 2116 -> 2116 bytes examples/zips/usage_proxy.zip | Bin 3238 -> 3238 bytes examples/zips/vault_secret.zip | Bin 1767 -> 1767 bytes examples/zips/vbs_inst.zip | Bin 1787 -> 1787 bytes examples/zips/visual_builder.zip | Bin 1860 -> 1860 bytes examples/zips/vn_monitoring.zip | Bin 3387 -> 3387 bytes .../zips/vulnerability_scanning_service.zip | Bin 2340 -> 2340 bytes examples/zips/web_app_acceleration.zip | Bin 2374 -> 2374 bytes examples/zips/web_app_firewall.zip | Bin 2814 -> 2814 bytes ..._application_acceleration_and_security.zip | Bin 6483 -> 6483 bytes 109 files changed, 0 insertions(+), 0 deletions(-) diff --git a/examples/zips/adm.zip b/examples/zips/adm.zip index 032f339b9081f7122ff01690c5526ac4d675e2f6..91ccc58029599cf0cfe5605e6b4f2a0923708e54 100644 GIT binary patch delta 267 zcmX@icbJbiz?+$civa{IHdsyMRaQA2BAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI z8;n})Aca7@nUm=P6EjHg4vQg7aIy&NMs6ex6GL=hQXAXd7sj0wxsfC%hG@a$Hnv`1Vg{*?U^aw_O`gEKk(ZH4ju~$2Xb39<%m}c_^+1!)vrL}DrUVw2Wmf|LpCB_r diff --git a/examples/zips/aiAnomalyDetection.zip b/examples/zips/aiAnomalyDetection.zip index db41a9f4a8342a3bd0c1669f512d814bb481a4b8..e75fafc7e52aedfa05900e03fc5dce75623a4164 100644 GIT binary patch delta 243 zcmaDR`Am{Gz?+$civa{IHdsyMHBvbpBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0vy zMkY&kkU}8d?8x+#of#yk$>jhOoLs=QhZ{-5#AIuj)W)TOjJ%9Ya?EgBCtGqmFau4R z9Ka(Z2s9}C-;{TcPO~#G{L*G%P@cS!TX(V^6DJ!h156RvwtOCG<~k0B$%0I>lUMNw XqsYzXmS*nZ1j|jFzzx%RfJY4gNQ6Gd delta 256 zcmaDR`Am{Gz?+$civa}KxpgP<8mZXwGp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8ci zlhc|Vq!5TV-{uTt*+F^yHVU z5|eqEIN4YkU{VS|i^D6q!|N9VO%-5dU{GR^0J)F>$Yfa3c#~=JL{_oMGgt(W^ni^! U$12TqgBc_{v4I;Vd7DiQ0Orm-E&u=k delta 219 zcmZqVYvkh%@MdP=VgLblZrzEzTI{y`jH&kgj1%pon1LdbpE4VRg@D4F(@vJ=ZTZe|t{paC3UBchFAQX8lGF!C}o$uYytpUlc?!3;EMvIDD(Akg&iW4ofh z9b#l)Si-`w$w0i<%h{3gyNKuh?5s+AZdKn`XAG8vXM hrZP=-VAF&t2D>kwRhlt%vOSyl#0G9Qs6jbwY5>_}Jo5km delta 206 zcmbQlJBgP!z?+$civa}KxpgP} zj0_B>ObiUNlXF>BCr7jK!Bl|Fi)WQ)y3aVdhE)kg_yAD&8}sD5teRlq95yuov4AJH diff --git a/examples/zips/aiVision.zip b/examples/zips/aiVision.zip index b63f9b8463e7d01c8e1721564e36491619da1b55..ca9fa269a58bdd0d911fe3a6d74a3497f65c5336 100644 GIT binary patch delta 199 zcmey)^PPt`z?+$civa{IHdsyM)nGpzBAj|QM0lc&6f;m{@^eOgun5H@ q6`OpAl?O$fi%ps-l4-I!n>vcH7ppXLC^N&vOgT1I2Cz&Zn;HP{KQ=x9 delta 199 zcmey)^PPt`z?+$civa}KxpgP(~4i*k%Qv(1tb|#1b diff --git a/examples/zips/always_free.zip b/examples/zips/always_free.zip index d007cf0e2fddc1d349b79645441f249bd64f020c..2f4611fd72331aad4565223e3ad1f24ea418f165 100644 GIT binary patch delta 244 zcmeB@>yqOQ@MdP=VgLb)4OSC*wb@UH2&bM65uRu-#S9dg{GQPWECdwZtij~P1r{vj zv4jau-paF`o0&xfXaEP;h!_)?)W+$)jJ%9Ya?Eh^Cs*=XG6PMTT+JsV3p71EHtF|2 z1EBOwO$G)T1_`h`7=h&5$?tfjCgBuNhh)%_#_QZb4XR+pPx#aTczZ$H delta 247 zcmeB@>yqOQ@MdP=VgLblZrzEz+U&OcjH&kgj1%ppn1LdbpKzOig@D4F<#~J=xtUo+ zfQmW5%43XRavP_5ae>u8;rdRCM-z?+$civa{IHdsyM)nq>%BAj|QM0ldD6f;O9$_Ok16x}#EhY=(+c>=Qm zOlEuTo=FC9z zCqLkn0UKq_>43uj&nZ252d6lHZenJhUP)SL2rC1Md_0#lvpXBZrdRCM-z?+$civa}KxpgPq%Gp5?}GfuRXVg`vs8G%KBq8lgYFoJ|82eHG& zHg~goF>*7rhye9-fJ~Uo#AE=|u-TGHf(5K2gv}f#IC&D=R$fLXIcB(}lOJ)IGXu?^ zT*oN`R&CAc0OJb+jSSys6@A`My4>O_Dv2T0xI zgUmMUAca7@nS~{QnHeM~$m9wajAcq>1Pg|2`G=!A_rcwc< zQuL!~fIA}t!&xQ<27Lwzklz@9T!tl$@0llmrLo lf;F_W3$USCGUJ83jVDlj6wne46g^wnfO_=77L;?T0RVe~Sa$#b delta 327 zcmbO$I#-l8z?+$civa}KxpgP`5Ws&UPdN4 zX1G%(=W{qS1C5`o$SETTR2@F!g}jX?BLhPe69a?B zR}ss+#S#&F3*vxyI#8e@P6kROVtR3o6^K8WLKU%s4M@c6Y(hK`H@bzQ;9l?;b?=ji zv+h3$vXT1qF8sO0mQ)?mBX)UeL3g2OkEEL_>Sy7AKK;&EC)W(+67QhFE{rym?2F}L ztxeGKVU^kZ0`XF9o{BhID~!t%GwN#DMA`k|i;i6?!GdEsw89j3qHM%ql@PolnwJV*%>$ zT6EPREi4J9(glLg2)MI(wLTLpdghTlcSg^?J&pO;L9%aiKe!bxu;qr?=+6hM>%HR2?od9 zD-{MIuDb*eW{7xtyf`^k_mBhbuLqQTK5F%Y7LJMEAmZtC5NOOxe{KTEW%!5mH^FOi zMSN}S!R3t{^TG@0hh!5)$%Q~jSMF{Z$cRH|%#4s*k!ot5s7d;7B41lM=8g|&k82IG z)?ho>Mr>15hfQ^Q%AlDzn>eP|5Bf(A2Sw?wTqWotMOWbIrX)owf5^U^EdgYh%lZc%STDlSt&G6poXCKLi?baf+P7#eYC}`|5%OH8~ zNxnBoR?b9ZnF>kiesF5?Sg3}EaJZRcDk=e8YPPCpcth}q6kntAf3F6lJtiYapd`O%vn8JM~0CqDBTgwhmVztlrZf5Zf*^|rbG0x)qQmjD0& delta 1908 zcmZ`&Ur19?96onv>gJr&x!Us9beaEa{!5+B|0XJ88mTjzF8@z3@WCf5FfxfA0y|I< zMP?-^MiZ&Lq;WL8*MJ%t|7N2<+T*cJA)==D;!U@B6;p=hvM_jS-Xwzc}^=k_JwdjywBFfndrA+dy!(J^O^vG^f zlZU>>90f4c6>xOKbpuKqy~)f~z!S6RS%QJSEGN~y?<`gTwfPmI0at#KPHV!8(+I0W z8_fsB(f$)PoKCt|ciL8|(TCX#KC^aHMUwoAE!he~&9+L0o1L_6hDc6qtj%L1bhY+5 zk+=k%3W?9Kl;LJG)ef5OcwN2%I9FFD0^!lAAfh;vth|S)lyVX1Nx2OP@RY`(P<*8c z?8~f8jU>Q}71R%H8LiN_iYigDu<|_hIF*~FP~;r6P{LJ}I+~!KQ(0l4rz7q>p`NJC zyPKRf^uwnz=OrlKjvB)wp8*En_?L53?q@p!h zVY0|X_3~KyxJ?bf69WJ&81?yEr0tNX#%|q4ifkLF&B)i8!F&_&^uR)yNe946695@9 z-yh5^V;6cR8I3 z_Vq+D(~2g=%XarZgED;3C^?37Bcc_%%4FjR6rpye^_XNK^j;p? za@ov)e$+|n3R|oP00;%Q6bM9V!O68cUoI|Rz;y(;;Ayhtg9XUfma}c>y|U2W5}N9} zMlUNTiTwq~ejx&^TO$v4@v!(9<;QlLQEj{U#t`~fJf9HfaoalDBXe}73BS+|tI|z! PCl8m%Fp)XA-kb0bfD@3q diff --git a/examples/zips/apm.zip b/examples/zips/apm.zip index 4b436a65cd725254ffa9e9a5582daa08f4a27de5..659514dabc9d9acc751380561f8e09b4918e47ff 100644 GIT binary patch delta 2138 zcmZuxU1*zC7(U-$nzZ?n+GNu7tV`3`pKM8!#UxGBY-!RpNjra5NO9nWoi!J;Oh+5U z{~8p8p^WrJ=MUIj$hM1iT^R_2ZO)5DMOW!Y(FK)=8`3_DM2_Kps25ITY^^pV zJ*tfRQgyU0N_neqoSqTBD5*+Rl=v3?K%z3!oocPW5ivsQVNk_Izlt29XBzN9WR(Fwi$C22v<<&v0N)*cUZ_iCDx7SBpA9n!P4~a>2-U3?LyfrV z8TN(``$R)RtHL-K&A7!!hIYJ-=JrEjqSZ9g~T}HT>-0ss>!0(v*Yg$6+xE-M&>ZB_z zkpHhMTL!I*lf0b4(uPbW9r{L^qSTF#bhRn0>vf;gQY-6bm(p1Jz{<*GH(`BTp&fKj z+*)#;elu7e-4mUH+OGZe)EEf0qkEanHm#438=QJPw;xMcyH?!Q=yL-br~m zsutTFH?;+)#%!iFz4xDESQ^=80AMKNl&vm3OZ}e6Mu_k4Ue0xy#`F?-!Qw5gTlRkEpvIK|U7&IG4M(iE2>%ej7YcoHTx7rS%2cGp^)s+?}NVK%@sh&tw!r-$Li$zB~yHU1_V6A4g9 LyXoOKcNY6n!)PjpK2~u@e+Cu@jshk?nkp6DKytkPt(N_$p};l|ZOUtG22)Wm7~& zSRlSam@Bb>g#|*e2?E5Xs8yP%>Y^1OHb@9i#iBqdMPx&1RTjK?Z|3>UjD;6oynD{M z=bm@pTm|7O2>xx84rd+GejZ=4>~Htv6=9~J2yi{!=w$`ipYG!-%N-aDchW=T3^Q)l z4Q?07;f~=1J3KsG6nvaKe59l}6<$9Ooa8E0|6p*2NxcmIClLKPB?9LCO@y$EaHvh|9Ii|JK zHRRB=%9mH$aBiVG=QiOhf`hU|$#fH_?VYzG<6v&=y?{p#XZd?wS(@@*!=xc@M;{jX7vyx?Bbm@N6owkIM5_lQN#sF zC!STs7i}21obOZHWz;ldZiU8zO3tT8PFvs3sUpx)!KKt{c?`F#?vbN%QVpKo_PKFYEE`o7 zo{p;@lr?WqC9TWK-aam1s{G@6yyOf3|E~Y==faqj8a^?kEBj$jF>1s^608(e@f}|d Z!~gy5*12A6R2}z+5tK4fqjY4V>plAC@kRgu diff --git a/examples/zips/appmgmt_control.zip b/examples/zips/appmgmt_control.zip index d04a1cb9553639eb92a971854cd149966dda2ef1..c887149e91dc71ca3d70eadb39aba358460ca15b 100644 GIT binary patch delta 430 zcmew<@>7I2z?+$civa{IHdsyM)mJ$kBAj{_h)XND85mh!GBYr+)B|Nv)J=9}^<;-C zob1mm#SGLtc@t{@SPUq>nUl?lksHb2$*j!I7#ebzz2F-5GS@S5iU9550J&rGA4Xf4 z)MN*yJqVeJ2^KJkjq`&Tc^R4HnBmT!9KmkO477d{huGu-PByTsDmkT@f*B_BbD464 zhOja~q-7Lfw-PN?`)ZC{4EG z7I2z?+$civa}KxpgP<>a*MOGp5?}Gfvzf#S9dgyo=QWECdwZ{F60^k(-%C z1gMw;qH|YkG7fkVHP3C$=gzAY2o@k0Eo(+JjRbg~u z6@w9j0_ALnHd;N7$m?!1>`a; zX^dx{?7(RawgPC5B1kb<7D^aH6*DjhFuZlNU%BAj|QM0ldD6f;m{@;hEz6{t{ZX$3a}Bg;!> z1_qXTpazgu5g^S0(mL6nF9fU?sCe@#zIRNVa8oDCFq;u)Mj5jM%#6uf3%D{=+yx@A-8HK=lCr7b45~X?a1NKnvz5UFC)=41b7u*dNn=9l%oGpyPQ83M$lZ0~_xsd}kiN^>oIh)6Wk(ZH4ju{cKcSOvY zf#E&bQCvn47%btSXoLav$lli2$IYL8N8KBCfkZM?v?l97dh;Xf|}gF8wvrJ`%*nk>U1$A%izV5=?y zt$NOfW);_DX$dO~>zo+gv@Hb20uL}M6j7|>5C9v{DJ6{JjeSzmOe}&>vt^LY16!>p pEzOhxkxq~{LzV{nF62~1xEatYBVa<1L9xzJ7-*(4Si?+dH2_t31Lyz% delta 931 zcmdmQzTccTz?+$civa}KxpgPq%Gp5?}GfuRXVg`y#_GY($3(bQFEob)v3jtMb z{=qK91Xjn(Vur3Roy7sBZt^-7Pq4CIEY2{o%`U7gP`zA^=z72KmBG|aF63Vb)?36C z3lrOXjZ2yZEa)d}1Q%=<_F&{j_D+;7nz<8qhrm^fF}`Es6ajji1LXC|q5|eHsmZ|t zyTOJF3POAU3J<8~O9i7~$~IpU%w^@O+Jya}OTvH`z2%*jBz!A>?_U|Y$^ z!ocvKmw~|@#iy6qVJ7RMYYI6P5pD(y4L?-ekQZW2 zfv5n?<6s?X7mQ?Y0nIPuWMHsEvBQZErh|L(3sHD*fps}CylGnqi~$~?>l9IRO%a5+ q%u+xA<{el{h>?*3=K@MdP=VgLb)4OSC*RaH)h2&bL};?fFk21b^b%nS@H^*~vWIuRhv0a7>l zE~5@RNFfk!7GUaNVg?D$W-*2dPQJ>rksC?F#4tUW)W&XiMqWlHIcB)6lP9wpGXqVU ze3Dg05NJ^N9^W4-c}xrpLTn5SVw1nIDop;%$jQda08^v@QuO%J{*3=K@MdP=VgLblZrzEzsw%epjH&iOTw1}+z{v8FnSp_&9w-Y^Cjz87Kd|kj6nkA z0|uZTh9!*`fK+NlVs1fBYO#J|X-Z~^er{rBo?b~>Xb8d(1&|?+FYRxe57fi~)FO*w QNFU4OL^c($jnCNB0PU1FKL7v# diff --git a/examples/zips/autoscaling.zip b/examples/zips/autoscaling.zip index c7fe0852e9603475992f75ebfc8d43ef4bb10363..3de9ea90e6779657e678ffb1ef646a0ac471bf65 100644 GIT binary patch delta 511 zcmdm_vq^_Hz?+$civa{IHdsyM)n-2(BAj|QM0ldT6f;m{@=6|aun!oZ+7nNwJ8@_8OUHdY3hA_b75<&X1r_W>1Hi!m_BGf02~g%Lz+?Q*&tSQ#Shqlip3}Y66J?!0K53NkTjDv7g$PPSQtf0S45ggf)^wu zkeXMfTb5W<92$af99Vm-s5H|fKCt#megPz>gJmZGO?bo)mR-lqi!OUoSel7h5G?yw Lm=A0P+ zo5BU1m{+iX1qB36;DX+Q9*o?~EFwT-IY0(aR^>H@OUCo|GJFC&v2Gu$7O7YJE016@3sS40M^Tt`HD zvY4>sKFfdq)F)+w8NPxqE5lAj+v|*lHFRTVrtO!!9%p#O( z29z~pVqlO%QLN0tFj+xRk&TrBMMJxe)5~I@hUY*HvM3rha)LC7P4?#HLed0wYNDt# zb2T?ada9@Z%s{Z*Zy{;sIXn9FB2SSja)0YKo$~|^d zxG7Q`yFg+SBMe|d8~fcEc^R4HnBh*I+$dnm40PONM7(23R-&XmkeWa}g=}sjH&kgj1#S;n1LdbzwsG>g@D4Fb@|;HxtUo+ zfQmW5$|HSH8Vo6 znE5p$STK=Q7p{9M>uz2~COKxflP5O{m@)$$H%V9qtXN)Hdh%xh(aHY8d{ALUpf|!( zwGJ=tWny69XJufJVUPfOm=Q=WX}rS7Ffl`(jgD O7qUu0O`4n_tOfwXT}>_k diff --git a/examples/zips/big_data_service.zip b/examples/zips/big_data_service.zip index 8f7a3c78eee869471553d8f495c53c9fdaad1fe0..19f416e6a2f14aac12c4f81c1ea580fc7689f04b 100644 GIT binary patch delta 949 zcmbQ_Gs%ZHz?+$civa{IHdsyMHDEs-BAj|QM0nyt5l*=Hpwh`M%wAw2 zp!&^InH3qqf@`I;CrhaCad9#*!_9#xpDqe90i^t)=zeA-!zXb%p&R~#(-UsE2iI># zB-J}vtkG3VutE#~nVrZwi3#i!A0BhK5nVj1IH2ycLD$SHjc{1F^j>CeW)=}(XmEhS zWAaK#JD4Gp-%0KPnK3cZ63vK-`y613HnTFGXXHfa|Hckc404$nM<63FBa<96B3KpW z?Lgr)`GB$v*m+S3(v#=N%T3N_7Ul>IVFd@`sn830UDuQ5BVH&+vq?snbq(yQ`TQ7!HdvFzBKf`vjuLLRu6_4>*$c0fY0KB-q67D#9p1 z*(fi~^h*jPHL-^qUEeF9WVkd$l5?_-0wg4X;SBcR={}3+_P~&^00xdSic895fqJyS J_PkM50|2n)40iwk delta 1011 zcmbQ_Gs%ZHz?+$civa}KxpgP<8nD~)Gp5?}Gfr+`65)hPOlFt1M3RwW1}dJMBJBVc z1M1kkTKYUALixl*XLQvQPk6xBqp%JW?6{!Agd0` z1~PIZIePMXHi!<0t08U^W%q=elFI&@ky8ZdLk^H1CokhMhf6)-S;YaiV4|q@x?Pca=WRhb>gsh^x9W&7M z$qN+4CLd5?0~>QvMSAiadAZ5`(wrQjA*>8g1v2tL_lGNO*O|PVk%1wdm4QKvK>{3i zKrX|Q#*LE&6l8&#gxKI(5N0;YOEX1$#;~vF|BF;=k8I##K7>6oq<6I$(px~+^kSt z;xMm*tvTIi@!THhE(@S0Wh4zt8eg)5HLR26#^zUFMQNs1POu6Gb|DmpfWvn`Q2sSc zUK(KnB!F#wz5Y+&U|?`nWMEK4vDJREp|U1&V1P}_Q;=rT5(V3q!NiAT8d&xgP__#q zdxA+6T{c=pnrV(CSg)Rx074cKZy?hbNP$)C5k)o~96~Rn=iFTljJ3m}3=Fy`Ze@@L N>yZ(I+xbRS4FK$I#Mb}- diff --git a/examples/zips/blockchain.zip b/examples/zips/blockchain.zip index 2e4633717b2dea8075dca1a47885ae656e28226f..e4c2d6f471992224bec196049052c37b0d43d774 100644 GIT binary patch delta 225 zcmaFG_ll1Xfzy{4?lb#&J zCNcRe8xM;3Z#HRWCuWApZ&*~>SQ%haia-a2@7rw0W5&q9V8X<}Aj=>Db~=#Du%ywE Og<)d00!+ONyBYw*t2-KUW4AKk|V23gS$t8`q85t(WGmB1a g;ABJ7)Az@Ye=$%EFHoTpik|ZoRbpQYW diff --git a/examples/zips/budget.zip b/examples/zips/budget.zip index 9e00be286169ff3f4fe47cfe042645f8fa8ccba2..97c40d59a98f7736a1282858c039aaef750b624e 100644 GIT binary patch delta 465 zcmbO$J6D!Bz?+$civa{IHdsyMRZ}?~BAj{_h)XND85mh!GBYr+)B|Nv)J?w1WWf$q zIMGUq8K`x#A+tSL2q?U{ocS9wSg?Ry7hT;!b`!X|KkRpyxtUo+faY_6?4Nv(5iU7d zl4&z1TxMdpK1|ofUN=TwMkYCCxU(le~ERUXvMlgeU9ribG|@ zRN;n&|L|#Fdk5&VpZp9AnhX*k-!m`*@sh@6P+dZkGx&I5W-0=m77kVfCB&h67#IW? z-a0;IVVHc8U4kPtgp~ninL5I<+cP*fp8{Ie3$#oQ#WFKikVZu|gf@hSC(q)MW{%)w ZnEZ|rhXQLJX(oTJ$q_sXU`xyS)BsoQaQy%P delta 549 zcmbO$J6D!Bz?+$civa}KxpgP z6U8_cW}prOm~m=wPoRbvR0{)x0K;3yWcJDWymBxfGJ_&CpI4e`3rJXUayBa`%roVD FY5=F3Ta*9* diff --git a/examples/zips/certificatesManagement.zip b/examples/zips/certificatesManagement.zip index ee2ec56d87e975c5660c236ba5c3a433200e9de3..474edbb494f408bdd07bb153bb8730b8c5d5563e 100644 GIT binary patch delta 1247 zcmdlVxId6Lz?+$civa{IHdsyMHDf;=BAj|QM0nyxk%@6^%s|1(zt|iQqEcX?ICdYf z5K!^vjqGtuAi;_0hLbla@^f)AFvHD&sIKG+gsZ;DwS^IEL95fYy0s*g&limU9@Z>T-{;WXhv?N z;F;Vd6^yQ)QMv@KzD7C^Z0^K#XEbFK&mlrUjqx-qrwA~>IY2=^*;CvFX29er;=7S# z9`f14WHzhw`!Vt|GRZL`f<#;11r*Se<5gt@fd++xBN0kyO`b1rGy!Y z%ETr&D6`3flwLdRwZw&qfuV(sfx(PH0<4Je5U$f?)GBWw{X^1cwXQNb4UD>pg)+3IL7tMlo^~ zMBj8-C4@d1jDWF43786DXuyagyB+K`PM}lX!=!~K`%5b$84FJ+w?%;l;7BMf!9P2< z14Fc07CoUji2-%N5(?OFU<0{;p_wNGlv0{pB`$!l4xyq`S(>R<7OdigG9TE@Gd0uz DvExXU delta 1189 zcmdlVxId6Lz?+$civa}KxpgP@+JU!klymm^m=j6HoiV70WTkF+mM?Mprla88gCEJC-esV1-{< zgD@0kvlYQje8QH<$SDH!1P90)le=W?;Zhf5{TR8C{5aW{T!)q4ceTKS&_`D zmT`eeO+F^G8{x^x;{2W%2DR|V!&Gm6#UBH4eXDRVhQdF>C2)o1B6$#no`PN&3bzX; z!WGI3MKkg;GRZN+Lwd5dybCB|CSOz#n>{sE{x2PVrq*+x+q!vTeg(oEGn zKm&9q-&f+8>>$FyiRrER-zT~F0{t^yMwg>#W!CS?qdWC=CK+fnFUdJgw+bJkd^HkJCX%yqUIRN4~ja&m2-=I zhnV|ON^NqC5@_tn|?Cy`2KsalTL=Y3${Z&kM7!JC_ z6b!e(jM)^T@S~IkhC*LyM2O6mmSN^b4&)eXboCQ=`@+rTXG~(`6amHu2Pj4+YY17w zq$Xzw?Lv}y!fOJP*(}fJ#mLLZB*%=1u_JPppop4Ws3bP|y#gE9Px;Eylda^XKruOa zgEA{rUPb|EQFuz%_YWnE3=E%`85j&1B)~}m$Yog4xSC!Q!9~uJJDg$;(l%h1_1DJxz?^$`!%myp+Q;}w3 z;GXJV`G$rV4(oE zae|UG({Gp*@8pY0!pOS80fpPc!2;lb0;V$#4F7hiN;9p5$>TRv10@vgg~1M8z$A+9 z|98jaw*kY4VFeolgDr~x7sB)iPu`;-h3o@ZGGH$$-7*CnSKd h5E8v*H!h#H0IIhFdQlEVkE-nChl;9T3%01K0RYdRM>zlh delta 1133 zcmccRd&`$Mz?+$civa}KxpgP^ z2Gp_nh*T0Il5!tmI}GLPgoEMAIYdmEz-A-}s88O<#Eqf&Et3^ou^#g^c1{tX3pqe; zoNOd(0+-5_^Mi>gW2_XFZT_6Y& zKn`LS7z*czA*_BSCd16j$Rx*%h^r%VmdwC7ne3<_hU5`BRq4rA@=}xcsq%A#hOja~ zmB@hI-Ki?gw2omiqp}20UJZ+GKV@mAT&Bqn<-{j{P!`5CU=L9KJWO5}ivj=SrI`|0 zAvQ2^u%X$Xpdih(9VW{*dA0&Ciu3Z-q?xYsf@~KIa&>g^b=AvFLGlB#H|2r$r1MWc zsHllz0*{h3(_xUX%4A<9VVINxFg=9}oLcR$44Arv7#SFp86-eifdR;5Skfph1op6% z8cYMaMRLMG56MhEAkQ&5L7o-G)ReC8A4-76d}3x`Fhnu63Z_X0ssY*5Q^0_T6a`!R zPeBl7A~=o=6{VTBK&1M(r4S*AtQ{1}Kg5BKl0%6ius;$Qu diff --git a/examples/zips/cloudMigrations.zip b/examples/zips/cloudMigrations.zip index 486c313aea072eba7c997fabe67e0cc109bdbff7..fc525fa51daaf7f00b3f45481a87c59d3abdfaef 100644 GIT binary patch delta 932 zcmaFu_}Y;-z?+$civa{IHdsyM)n`8)BAj|QM0oN>5fM(f#ND`3s{RhK4XEf4GJViv z7Iz>USYe!q4~D{XBDrvdPNHiW!3y))?J*QyVh@BX)Z*}F0xPT&w8Bt$N6-zfP*X^U ziBkj^TpZv4OR#{+Y@F}K$jiti$BYQHFOs&*z`&V&R#rwH7+~SxV1^QU3=&Y50K;3y z;K>3~GLvN$q`>OAq-DTviByng+zpixojg-ql8u!CW*}I>ZYgP|VCKmSWmG2rk>WpKer&d!_UY`GhN{aJDgWu5~dk!+az6? z=aYfXabaO#2uE?9ivU!E$mF^5YB-&!iQ>czA)qF0j?fTj&;bJhY)#k0iJuLb7#K9z z85pcltT_$R;RG`t?4dWZGK`{N%XQ`0QCxdmPvL?D&=^-X1_lEZW6nb~@CymRJP)%v emjBgc3!o33fclhB^aM(P1Fc(%4{XU%1vLP^@$mfs delta 977 zcmaFu_}Y;-z?+$civa}KxpgP<>a*MOGp5?}Gfv(wD#Z*Gnj9x#0Tu&_Z=NgR#mJ4M zesTh{9fpQO%>Hl<5-dBJ!KPecw}lB#mf$!57AqC9$IyI3C=jM@vw^TT6IkJG4jT-G z)|}pOg}t1CY+!|TqE;9R?})m=6>5s@#Fhin(oCLA$f_p) zWEN$E+XGQ$FC)zq%?4KWk6i#ED~1#@YviPvlGvdp2_e)#OpunBW;zO!6_}hXFAnnv zvJpUQvbn%U1jzDoAUjq87^dNCxa6y8Jfx#7MumOsp=MkFt#gKiCBkavk!ah(0Ze@U+2#ROG@yibk zuY<^HtYA*ZVZ0uS@lVCT#{ZWRoxDJb6~#xESA`5Efj+te^pPuyk9@_Unhe1jjw+}D E0JEgGA^-pY diff --git a/examples/zips/cloudguard.zip b/examples/zips/cloudguard.zip index d6ca8592424fc0b58dec537e58a4686f57358546..9191046686be256f8801f5ff3f0713bbeacc653c 100644 GIT binary patch delta 1713 zcmaKrUr19?9LLW+`*Ww;Y-?^Tk1pq0OiMR4b+f@7^Us>@uUkcb396?ojKUBi6N>1m z%XzU9?Lh(&DzFzR5Gt^;$k!k!da|IhhkWRz&OO_`ySIC35BFi`^ZkB*=lA=asd;8< zo-tUF`3j&Zms>2V9%V)G zC3KgiDFyppMapCQArZ7Y?r15P48)XRAR&Uf)>zTe753t~M3s6C581q^s5IOz-gGq9 zsjyy+Wkj%{m(?02v%rJFh(honSZ<9mWGOli_*xa7kjy z$JiP?=C=t9=KM>v0S-@>!fVu%6S&3Ko^jeK?r`_N9Jh2(#GFibK!_dczJ;M*%SH_Vn+5>dWWH;> zDkQ7)X%4{w6OG%5>G09vN_ErA$JZnC5P%tS=^mNsoK(GAFsC=9S1Nt>ltchnz_;ki z7V(DUAt)kg6SGMKJ1i2;CFz91-z)Rq<)pfaA*;G~atOhj0@EQBO=Ewj5xh}XiruCz zAITv2LtwlzIX|82UMeTgOI`kTAA+9+#xIjE3?ulyk;*q>CUvqYpyTao9t^DIVryU^ZA{B0jzlBlmGw# delta 1670 zcmZ{jT})D87{^}@1ROaCgb3pZYKBt_5N!&6foTl+5)i6c7qyj}E6Z9})fQZ|)=i1; znqON@S94~oHLvQTT5VlbtIc(17cN_~Ty3q^MQy$3J)FZiKwO-Q_xV4+=l^^#y(F1l zlBi=LsjLhzKZVMkRW~WRHIn0AjRZbZR*-xEu6R2H5wjGDq0V;@zoCqkabJsEAkQdm zFdfyFkwBW~v02}2Nj@uBKO<#O*+Z#9dUo|NFKd_dD#!|CQOTHu%l=kAwBhfUs01BA zx2dxb1*c5Ie8O+jtPHzf)dYn?9U>pt2(8953INPI0qBJDHWRdl8@MKzHfObS3arEv z%YAB*(g?Q_YATg1(ePSFg0J4zd7iC)vBf2xdjbUh%lONBGk72*2I1 z^c5xlv9RqhE+f`H1r{zjyhTFFxt{~Bj5@V={xG9ttFVh_7qzAg@WS1sjTI&-PZ9AU zl_!>~Ul6$Tr^dD-p|2^%6Q`OKGPQ)TO7l0?7H~7y0?!1hFrsUShRXpHJUwK{y;n{K z<<-ohRGMkKRSv+g9)P{Tgcl(}-`kmc&^2I0DOzZbQ1IuFQG}cypb5VMy5g1SJoN%< z4MQEMyYT#y6o5GrfF2Qbfy*g}zoNAwgF^o3_ih;e$slFjg_teED;`9o0RxWS3|AKRGqG^h znw9|&r2yy`m0sj>bnvyQwvaj=qKP|Z)|?97519pEY-$q;^mJZefZbt=n+on)^#90} z20#n8ddWI$7yVt7rTTrGpowFg#Qt9wAm$E%OYC9&>yKAqbR>6;05pr*zs~3_ z@Ikz&voCR)*yqF!tqJZx*jXQm(1fp<31!nNcr(I9`Az?w{J!3ZHr-wWz#dV(ML}9Q ztd8=t!qcpd(L|3M*L>qJ=9j^MvEUjK%yR+*d>^ag=7Ph_QR}*L`D)TxYOG|CCdPOT z)R6jo9k#s;QhfAciY25extmQS>GkC#E|CY%AX-}=4xJp-2{wTp-a^qQT$F+z2CK2+ HY_k3zt3qtB diff --git a/examples/zips/compute.zip b/examples/zips/compute.zip index c4216465f22793bd555aa0221df3f3df657f1d36..46425c7d000d2b1779e914990a10c5a1e8dbf9ef 100644 GIT binary patch delta 3537 zcmai03rtg27{0xwrKOY#TtK-9QczKphXRT?8nBAWOC3nY6hx6}raV-faiUh{aE>VK z%+w7~KxM|~TovUhOaU#K&TX2^O@~?HT;`T6Zi|d9*}3QToZiDF83|4JAK(A|-}(Q) zj98T;R;7Mfs?x=c5q{==ItB1fEJht3ZLT znimq|ar1Om%fS{jLKEP;$>|z46|g8iHewEm-x~4K6&a(9Vl|8Y5nmQNjpmZc zqEemPmy>kvtw~~}iI0)hvGNN@;1hmWB$Qrn1c`&(82o|dTsn!re{Qx~Cz(88;KW&y zHd4enAN~S&NF2szZ_Jc2iQf=Qkjpnr!c#j#7I;_foLH@^qv1I_qGW*y2NMWl#lh$9 zk{2>?MmP(evXmox=iwCaU~dO{=n4Crw%mOuknKZDB8mIf@`_;lpfUxUY#EgU;*0t2 zavBSF-BU`2>ir$LB>wr1sbc*2swKp@q3TQVF{d{q6XVu~Ka`R_((A?j8@23b>PZH8 zQ6J+0>E-x8-dU$oGK@|O^2~mqvEK`{SVaYd)#1i0S{nimm$`w=>niu`tTEQ?y+Wd#?M~rg5x#t_nRM8*wqG=sHj#k<=bGA) z?$KJ2oRmkkHiINT(du1L;O}~;kVzhWDv9uGio{V7y0#WAQs@`+yR= z20XNTVSJP~@fy#n-GHKv*T^ta+j#ah!50YX;SxRJI@{!%%PwrS%;w@MFjP_b$^&I%P>E>FifNaN&x{+S`PW3oFS7Ns4=S~d5C-f zMAeUXL>MGqgxX$_W_j$&Fj_x`38qlH{9#jJ6v16khrf)14j|V^2#(cj5Y_8Q1Sq@7 z!>g{taH#e_?I$am)eQ54Kf}aOwX-4}32Lw>$4|l;byU#FvxRXa;&`VIhDGl0J9u^^ ziMaRVcz}&590q}GQPi?7o;|P#L|@@RgUt^EAYQG1#_V3HVwj%{3=>cBdWsXgYJVZL z#_E3x)&Ipb(AzVUs==0>dX@lJJp*b#i>hHrhrwaM-b+vDzr8%$x(vCNmJ{vq{Ema( z{1wO>St9kKhMs0y>}ohG0FF-rRqX35lymiSf5dLARsyM3GFC##yurh(dig4xxyrLG z*dL4mk=jwWc=q`!l$tn5tL--N*qvZF1<9TaGlwF#WVIu~3$zVRz<8)5>Bdi_2!6K? zB^}`0DS{}g-=bZ+4VLPK0~bz}npNn?3Xsf+tdbv9N%tn4F%FdWsHjS)UsDgyuEKtD zOoB$A1YZiU12pw=`t6$vish&4(q*32Z4pRvC_wm#*j7Z&(O56%PoZz#2I&UKss7y0 zv%Sza5UTq>Kw9aS76=$hP4%?-_RpH&+dP23p_IUx`(SX8VO`0V_0lSMeh>HYY(}LJ z0tWlsF(#5S7`kHLL9W$(<0#iKbhQhv01#d|0lyr^d~}0nzdC@tzBdDKB6`#X??%nk z!|kinFpQbv`FAx+sJ;=26A+0~DAN8KDAHt*R^>IilI}Loo(3o}yFqqogxUYiio6?d zc_3JPgg%0<)T79Czn&!Gi|_n*VD!ZwggFCo6vNvCJR4t+pmcT8?;*rrxOOcK(940L zJTLhWv_rqkF^7K|?hn(9@8;QpCJ=o+gvvxxK6vs?csaZ+cj3VdqonKLeh#($#pqN@{Q)+sMF>SR~qK!6bgEpO=*_r*vwI*xAoA-V1d*6FAyZz;| z{&JaS!5o>r3Yh;ns)I^3BOIr=*ri6g*ui?EzI47^hN7@6dZHxkiDNIL=i?YkH_e{8 z#sLR!uMMur)1C+4x_#1k5OoSaoRn+4nIZaOHLUic)L zkQ2c~S!BvImR^{$kF<~wA8u336hECMzKQ>bw4hT3+a${T$FoF(f16sVM|LU9hQUtH zaqLJT{_Thbr>Q2e;BnPa1rE;E5fZ6XPmdWaG0h{1cvGvh>hIIl*Ox z14Zx{Od=~&XliXp&WqIm6CD^uIpS!zt56#N0pKOfvAm(Z6*`@yd}+*C>+v#thl zT6@^K1L=qDWtb|viZ~*bbF?Ok(Lb%ZMOwO36~The)x{*Zr#^%Q+v}t4)ROIl9vMOS zP)hwt2I=0shqW0#WZIYJPPR$RjJ5XN9BbJ_ub5e^Tt-YB>EQYTYo^P>WklG+#S2;H z_&6UD+-xLjrGgyyE@O$S_KqNwy}M?zV9@SvnZ(~G$$rqa-T7VqF3%(P4)q2r^IElN z;g*alb6Dh$)^9la1i)*RZg6{^8m`HArTnlke+nK%!VW9CVn+>*b>v%hxD|BBFlAVG z!MP>@fNDno!Yq^uc=nnCM%>gu4<%cEZuLQ+^}kYIF{WAS0U%*h49_8!c z#uiVGE7K$jIda(DqSI{1Ov(<9TkL?ZB1EJ< zBoJe8Wy^oQ77PHcpl{kxB`T#yud|k7P#xSLiw1*B z>ij8~I&$^0C)hN2=)x)80iXjQn-DOX;Sw$|i*eI)W1{!%Q~=P8obu-yNE*vPB`POc zjGF&(qbNj0S~3Q5O3yZl!clsph0mJ?&|_S2-ob*NQl#rAv|s#e78opiTBvMtrXbw? z1jHE~#g3mhsnnaYGTGiDRroSUcW?;j>`k~3t>6oz0v0#RVMsGG7i&5avFVuJ9)KPv z03taTyl2AtD|+-IIwGJRMjQ0h3A)4G&7x2@N0Oz3UKbTqJ*I!%a%^igTE|{wayUnC zSRw)XU=Vc}U3ek(BXsNmBW^n@Sg*9M^0p{^NzVf)6xWm5KsSM0Ma@d&p|@tu>Kr3? z>#@m+cSK5FBxpY%cQ0rpe(P&z@|gGKk~RToQ$+=5T;Ed39FS>g>_R zG#f{KT18>ST5}RiZRI;`E>k_H*u9m2eWNsrjTJ}W2EdnkzeP>9J2I)G4u5lDsY8ykr(>H=SLtbAO1?3h> z3RSxY(Y>boXMSEoKeJ@0ZOgtlx$}G#+O!_@8OoL2MN!fn!cw`P8XTrDmsUc*JTz1b z-Sso=qTrOrGJbD&qRn91H{bu7eFiy@f*c6tXkSv00$#rEML~GA-rNucbs=+r{5WAR z8Rp%X>zaNaJqZ^=02s#cjxLe_T`4aHc|O>D$N`B_E8kv~)N%<(0o4a=zD{=a{c&ml z+L~|B*3gTK{zPBq-yWn`7h_WTI_dh-f&I`X3R5d+ns)uV)SQ$gW0Lir)5L|hM4^%; z!lGO5Tm!n=`!gP*1`McyK(6b-m6RPmgwo++L%Y%Qkz9qATL*h;UFisEQS)z(<<o8f*MABl-l isdz@J!H4hpq6gWa1z;T4qLE?-z@o%~w2ANT4*w5ETe#8y diff --git a/examples/zips/computeinstanceagent.zip b/examples/zips/computeinstanceagent.zip index af64e7ae9047397d7ea7d1618361fba13589060b..2575a85dabb11bef3c040ea22b892c41b1ba51b1 100644 GIT binary patch delta 285 zcmaDa`CgJYz?+$civa{IHdsyMHBmVoBAj{_h)XND85mh!GBYr+)B|Nv)unplQzrsc z&jB{?N(wv3JRsg|&$xt*8ED7kHcls);NRp`>O_F* zIl$&!Nnr<>2gIB08JDmz1MQgng~JvuXu%oC$j!_G*D(1RyAw=uvOdQyUPdN4X1Mbv zPvdf82AVbbHkS<8s9#)>V15h_gkQ>Cgu<`pk)Eu=qcnL34fh|h&BMeAH+8Zfvni4pU}Kjv`@mKIVs2#w z8@%p-+rrmCm#hF9t^qb!UVvA$C^a!9H&rh;B{YPSff?jHkQK*SSsB45oo91^nW?41G{IXp!DRUd}6>bk!E8ByB8=e1D28!l4jn>z%Y3(mkuzv zI1$na-JSf>%%aQ;lkc-BaD;}S>3;{5%!5cy))A0_S`9HfOF)|0lNGFS@(KYyn4BUg z!lobVo_YZorr9hE3|b5lpvYzbav7F1PGbY<&_%dJMggRO^Tq1!1waMdKvfDT8cuOc zUN5AM;ptU;(#%IV875|GA{hm?TVe9-U3yFm3^D8s47w;rsc@+) Yfz}!T^+=PR0=F)$mI+c z0xI5I&E>=-4mTnkY!;M|pS+Pxi6=CKlYtp-EX06nW*@i#=a^d=!KQ|>+Q9{9v$8@2 z7qdCQ1z)kff(RbtF@y{L<8f!?M)pLcBUldX39xMw_j$lo^D^=z=114U2i zD9)dLtb6JOpt@`p1_mt@wTIY1E}E<$D1f5j`6HcWra%n_KtD^PX!ynf)F3kXB@Z{u zLBLQ1NAoH^X{H7)knF@7X_zF?hhRx*ercwsV9Cio{HiE+alTmHy#VMDZlHY%D0X@B Pg6;anApkS(rjQx{|E-I9 diff --git a/examples/zips/container_engine.zip b/examples/zips/container_engine.zip index b8b42158c5442dadf9ca03222c272b22a3a260e1..e01cb672380f9c62a656516b3e6fd2e077685a42 100644 GIT binary patch delta 1432 zcmaJ>ZAep57(VxGZg+leZDe|<+n5X|m77ZL7HyhRxw%d44u6D(kdj4T_JQ=N5hNAl zIRE-0M5BaA`}7eaH@Axd}F z?AH<(5%=~C;*>i~iMbU|^a|Z!Uvec*OoJ@>{FLtDqdEoshJHtex{i%d`fhebuLyK3 zNR`l3aH>dAb-P%(^i-g@Z9{HMFaS+@tJ%(Gs@~!J1@m!H?XAz=jx{m>e1piu+R=c^ zh!Qq4<;~kV8B)fQRkl`FQU}Rl%q6#R-*poz{Pq+DsmS9ZuZHk>hg|a&$C;$^oR_Ce zQ&pJBV_>O9zOJ(&znBCK3Tu%^&=H-dVGjKXm7>lF%f^H(5)~7yb}`ZXtyc|S^Z>jm z1HcW|kz#N_FgiF1(8GuoPgyb)KZZE?n-$^sRf|qmB_rSMQ;X$9oixWXr)_9JF#||7x{G<(jA@Fn&?OOJoPK!g4DI8|-MXtx7db zGQXJU8@h)xj}`+^tIGU9oXBjD7dSXmPV7wk4Dz~Uq&paOxCy!-n3ZLbZPK?U{(4i} z05F0d^@&O{)E_QXc_aw~VGg=IDcmVlNCdAf@GEz*m>J(wxyt?p9~qd4{oh4}%Ee_K z4|!D^Mn3O5@BsqwJ_~?NstwB`c|G#Cnxp~Zb~VaDek*|zHe-50=P>%yPte(@WG&g< zQG898>IpRLDo_lPq+iD>xkCI$7|#KqM&)Cm5jmn;R31*Xa4>79C}lpFdLi+m2h&Krka*De6ODlbM1xTS;mCm$(dm?#-KF%fhxy+3`M!DQ>*6H0 zILX(0Z`S4&yQ;bKYBh)KibG-rR3;rVRCWkhjE1CMa)uo*a?+^9Ab;0( zv_yWu8)x#{-n^*Gvje`(>g<%t!~(Z2l7@a?Cr3k$r)Y##l z;3HnY6iT{!NU0cRF|wRXmsh!8i;@EeUtWkFE%f>sX;(z!tcG_%3JjI7vM|aF3vj56 z4Ee>=St4vz0!(;CNmvX`19DMbc)~GxqQX!b_c0gx>U(A5_(nnBhpW+mfK7-?J4udY zgEl@bXeqh}wMh=kHb6v|)6S+s*bCpglNT%itkwe10qTexXAdT>=g>f`0iD(wDU@7h zDhc_!B1)w?$}{~s%T-_e^=hWpe0bOaxuhbDB-j`C~ucvKry8uAe3cx-S@OV9Sp%4AlG#+x@TYZq9 zcd~M)DjNbMib|{)Zeof|UyTXyuOIR)ZdTU9w#|Thc<#SDnPN6=rvMV_NzcW%H}OAV ztrCDv)7atW4O0_E;+H2L=#UA#ob$9Q uqBBZ~;)w?NQI+^-v`RV>32l7VpMQpvtHJB+?@oA?s&Hn*?!8acO diff --git a/examples/zips/container_instances.zip b/examples/zips/container_instances.zip index 5f251e005a268a9e541b12add1f0a329dd11f584..c42d8d6b6f8744a99431792cf5fd160e0447274d 100644 GIT binary patch delta 278 zcmbOrIYE*)z?+$civa{IHdsyMHC8ztBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0vy zMkXtEkU}8d?8MZ?&I}Sf&*=ygoGi|@n;S{P#1tEt)W+rhjJ%9Ya?EgBC*S9CWCofv zxu07GY|uJx>B+I&ij(!3IN4YkU{Z=eJHnS3cqp#~Izx()fkB%=0?1-u05TbtG^%ni qOcrF4oBWqk09{kf0nv6Lin(Dauz}95(r~v@<{6I$l delta 251 zcmbOrIYE*)z?+$civa}KxpgP<8mrjyGp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8eo zz-hw{QV7JGn>qa%xsfC%rdYw`HZJXAX9lS^;&6nCO|IhD&CAFn#|*c1@_jBxW}r!v z|8dKJRm<{7PmbkQoSetW&Bn?AlTrX06dpQVb6o*D1H*MO1_l)d36Q%P7=d_6;}^!s g@!Z-l#b9&Ra7!~E;$)Z{z$rI5fkOahRu+#M0NA-Le*gdg diff --git a/examples/zips/database.zip b/examples/zips/database.zip index a0485334a29fc504fda18ef489141c2925e42761..6f56e1d129195ea0ca19b6a04f9860ddbb523d1a 100644 GIT binary patch delta 11590 zcmaJ`cYIaFw%%)}n0C_3AqgSL2?-rSF9}INAt8y>5Rei=kx)$p45A2#O1X%HEzX0B z3HkuVOZA{f#Yefql@_T|L@5fQbPxoBfxBkr?Ad#A&XeCS{4x7m-&(Wk%$zq)_`Gq# z$I>U)!_!Zp|2l5&Tw!VS)PVtEW2y&)X4rz*TM4*&e3lXtqXvex9u%-2PcY zKCs1{t+w~hfj`OcQp3o7Z#CG@SMi{P_=kjC((ha!Az6H`jR%vgxzS%N4!BwF?Hi63 z`B0m*omWSRPfe~>s|-KjVv$(<>SC?8uh@fjB*LbZuJQu$7 zte@Ib@J>h_$elDOrJGp%AmwFWX4KTQsgACyqHGV+iVLiiQCndP6S%FmL44mq$?ZF*BW}G5XPSx6PVOx@+P*LfOxfFg8h1GL+3VAebGuiSaw>_w>^Z?P zw(OXPk%QWeksVyDd05h2z`Ktt;=BjP3KO+HHQ^-v1=yusDG6X3%^5X7NUR=pmP@=j z#_-m`G55iw_4{F+U9`3tUMM&!h9Bq7Dk&B@Y2R9$3Z~r;EXWb~wFSet&RLWAcBo7K zZ&DmzTr)mfAn%TUU5ye2UC6qV^S@+LVS~ml)y8UQ)xA}*#}GFLw9VtKBt8+s$<07D zP;UaLj~unZb?ObWIU0lmKdOm_r`T$30tka0`H9d581rE3>_9s*HwCR?o0EBwMYWij z&)0)$2L63v<6CcfE6S!QQaT%)=!Z!ls@W0N5UO}*{VvQkvW>%yOrIP+g1ZOX3@JSi zE`5gfXbbIX!bw_Lw|Wdpf`0~I7f-QN@DH6PoINk}X>iXFr*F@kraxK?(LsUPtYXPQ zPv8Y$LgEmB>ADujb}u-}U94H41zR>_`-TBeHjI&DX&7u}yCyjiAgaePKLS4RFmj7r zvOqh*pAZNsUZ&(d62bG@q(o~MIa9~mzl==wWv&=pZX@wMz~a_XJ^Gpv|>1o(iF__Dl&6)^C`~DB~HW&W>lXRX&k*af0XO!x* zx#H^)x*?hkday0Uc@5In>@&TRxZ81#wPCAVHI)yM@&*$qnS}HO8|fOO`nU-_v6O+}CDVPFcEI2-#0+&2k8N{B5UU&c$Wxf|JgT`b-j2fo1(kTBi5iW6WE-W{A z2?jFUalIVYd6`0eW-^FDsyDW3RQNGq%A^Z&%B$jB!$tq5iqktIpXp%XL7C=_PXiQUeDVX9q{zQ<(f;yrN4 zCtMs{3;$7m@cj`!iZVAzyOnPxJJ&%7xtgr{nyX;&*D%9}@y}Tfe2kj;uPirw=SW`x zh1@^yuX6_7iDi}CA*1YK8LDfNq$u5ZCAYGJFUk7^;)IXOK7oI5eWcRqOtU`EDkDQ3 zL#iOdkJ!L)2G$E%MQs?y%tW)L0U2Hf(VyN$(VySu2YdY67v{%a6= z@G5AV0<27t7Wi$b9tC^neK8O+bpI@n%c%cee$+F&tIv^QUCbzO?fLz~^;P?U{jWPu zHhag2#m@U0vjWym95;|%zF)-K1}1)z)~C{!G^l|Hy*A8R=dTtW&VGLNc;@$t!RWFq z9E~@df)`U{k|4WVf;iMWB3r>)3rpi2=|=yk(|@haAYZrFf&Dj;+txhGL^LZ4Vm(b$ zsiK8Z{Cexv^8ReE^JokH+(z|k`%iLilZjfFQ&V-E{qs|odHm=pFa4oSh_PD4Kre-BU5Zpi%aVVL-Q?R)6S+i%V>qt`jeG3>l7D{PxS{pTs{>8Aon)@f)< zwl~5fw{cr{G&}@%xDTR_8uJ~udD_$~@lcVx>@m1@S*F7J;tr*L4T(rvj;{3&C2f?uzOFnJ}arVpyds$X3J7pSnaR6&f<5Bak;p2=q zBQ_ni4_2n?ezKolnGF_D<2=N5gWUTO+S5l1a{DgCvb_1B24YCbPmsVKHhc;Oc(GRv zlKRLAnB=L(z~?07Cx|fKKfd-<8w#HIx@WDfid7uhSI?QElD@w}92w!QhSP_WFeWJY zuY0I5>Qyr)%~K5$7)BnJSuk!CHc2f;QPQ2{=zL}Moax?zJXx0MujKBqV-hU!RFr&4 zrk_Q~gp&(iYN9N7dTrr%zoRk;R+Jn`a8a-!s4cq~}fM zR`p{3&=w>l>ejgRVpHKonpM5>NZAc&Ega|)+(ZGV!QGTcmDqe+O4Y-J+Q)7fF&Q)U z8veDAcI=K@CJ9iid^ltB( zTr*Fm{k0L@{1PUDOj}+=rQ)@c_&671Hg;WnX%JTXJJ?$ElI5*s`3QmoB~^Hd*?!II z;-hQWQG5gIMy6maRnkCnWV_n#Pi@~aky$~qf5XnIm!?Z*MM{~q@da}G96t4w{sEqH z(XxoIxQV=v4U88#d=sLD#SBw%7ctc@2_A+C)Xt3eBj@gd(P$Ys;7X@qLJ(micH0O2c)K$l=(Jk3{ak9PS@fx3BrXBKUpCwtLW0c!RN* z{fstb&k~p*Hyh9R12O+=VB+OHSKqD!2U^>q{Kl~JzwK8$jG z@rHpS@85wy+2nv*hdru`gD`z$H#hs`rf`jIbhfiaVq zskKzW(uFcC^EL#_`%a+wU|l3&EY_jgk^;#Z#@K|W#oo6C)RPq5HPJDPdo7)pGZ`&z zhZeV%EKYex2#S0XZA|3JlV}|6u#`jDlV!X`d^(TRdDK=y9Su;f5)^-bGR%r%L zkhmk6CIQ=4Dy6%=LO^XUVKCl1>khgpD}`7%!6#6|xy&2J+b1?=$r}~#n*{MSG+0+E zJi&7MjnxdM<%QQtX+}SDrT4=g*mT6ytS0LnVgdu=P|&)vM(v@ zxztS=9lU^;XFsCS43pu8B4i!=tbJnf*R_ipADQ~@krr6vJN*@+!IxOK+?ZV!DTCYwS{mB}oc^<~G&GjPN8(FgkRi0?o6ph++~ z7sP}RR#k0DoHZNeZ0Nhjl2tdWO|lR3Kt%71QF&((l6X=;w6zdvc8yCQI*5Ftr^4eu2ub>C&F?Wn|JPLiGiP*2 zctx#r@?jZwh#GKDU>g0ca`|BY$}gf~e2lFL?X1-vH83Fth6aUc9~z56Z+(&TEQzgq z?>TfoZ~g&{*<8H$w31>rvG0aT`& za36zboR~dmE4I%$c)*rB$8HOSHy~X!H`~23YsJDC)R2qQv!SHrOc)od9tVDZTW|W% zqZ}MVlIKF0POW>A)Qd;NKr3S*L*mssx3N}n`1zX{ z{<+<25aB{lK?zdgIO15m8Yvvba(+D}Xkp`@Z^W5CGe4f*xJaS3)Ek{5U$y5YahZ|^ zY6PPcIk_N8jfI9J#HzY`A=q|mW0U8RaXkLX)ftUHu31(7LO{uw0f-X+Y|e;q*IrE~ zeQjz(BiDri^-^$8*(vmMQxd!fyj`5Kh$1!_2v73L9+2*W%sK0l5q7E-(?frk;CEf2 zXGbD_UfGF$PBqLB)9c68ckJmnfx5d~^1Sf<#HOapZd;dxY@c@JR^u-cp)w^is7XV_ zq+|$;>-^emLqvEsM|7}nDrI(Am4nbvyh_ew%>f(@&*p$pZAXjaZnTvFQey;cEx0uzZ#A|a){%Pu;Dbl zcrF$Ii^~aLP_24^$g88MvIu-ych$v?#95eYQ8KI8# z=?}*XHe&e;!rg?X&m(+CT_3GRvFCmYB2|xoUu4`yM}8!&d{NSnB4-%eQsfi?!Jl7T zw>0S?ZfTkXa@mqgWy(iQ`*fjV>9>JycG=)D>WF&Tj3OnEO|J+{!R49D!!Bd}ycbco zQ@r)6S=1%SB0S5fo>Oxq@Jq!ny1f3e>G>hK~CxR>y~DqE5syHt`Uja0WSZ^$wMqrXU5<%u$w9!Yk~ zkT7lUYS*G*XYB>=Q?e*>I7qGYq}{8-)(4BwhavbgKs(9KYlciXdE8PS+wH1+FbyZ*?Nm17yDcWcuAzT-WRY+B&wOqY zJRDrN5jJ}Yt(xwjmSEdD$vqR&6z&iBj-NIb8DR zMIn_)8hfa9o&Z?e$k{3IczGX&`S;yRjysQx-`t9Q!_*-3_2h1A!`J;oJpwCed z4|#6AD&Lw;R5P#ApXcOm#&%>rTFYn6=HCf966{+yKg?(A6v-21hYh(|zNQ|*^yN3& z*3Sp)cR$vze6u}vOvq^m?@N`>s$#P*`XKX!4idLk(HhLBZ2cgMJqB;BZGX_Ee6&tA a!g(S-8FZcwIm1RXDShC4+C1AtP5v+1#qB=; delta 11417 zcmZ`;30PId9zS#7;$^ukauE<@ksT3ntq=io!v)3E&`QzV%?x*~%oR1Csc^J;fqcb@OSW<$Gl+fe~h?Xl}V7nx>@4`_Bw#&dj~{@qO3t^UUx6`|tmmGiOJCZu87hW zRd=8u5Z3lq_ojmFP7cwZ+1@-k$jxd6w3(>MFAF>WhgUO2De}izStw+^8mwiUj^OAq zr(>H@iu1qb>JPa+wdpZ9>j4V%88*~YadWgbVp~rtK|B~-!aP{MZMM#0Q$Njdqtp@G zx@bus`#OQ2|JVSZ{J1Bg;NlOSa01@=Ad|DU|8O(~;)C;03~t+iT6zh#>2?Hvvw%x% z{3hO$Qm?!aqZM}bmc7v>mKEgb5?Xb^_f%jcTe9KEqWi zJ+5yr{h{_*-@oXyyBSaG&urbg&1ZJycJ0F-ZtVIjQ*&TyfBw+_8M^F!r$gIqsq@;rR)SvNm@BM|L0BmSybpGX`h$kO54*aOg`q zQu}S_R_aekE~^1jjAL_G(r52KJ6Olr>YuG-jLU{i)gNm2hkZ;-`-bV_!yE33;_0g> zU5YCrwY3u?b&&0gi5@0O_tEHV{_y7LsUDuZg|z$u-Ss72v-@62q0ht+#jQ5dGkf(& z=8kuvk&2;(3q)R@73oeKQ&!~bx@_OCsAR$0x{9aRc70WQB-mE`K@85mg#uhv=bKB0 za;}R@&LUsZsDD%)YIy-Eil4jo`REYrf7_^Rh_212=sxn~ZLPhqm|Kt0ab(q|-aVwf zy2OWu?6ZYEIR9S@3mAXDk`;ZYsfyCsTv8iCOf%uS8^~AlpX=q9I%@)NaiVPL+9j%> z?B};wPm-m;H4!X+zs?!Nm88ubi>y2^`7nH%{_TI)S~9vtyfJ{Modn~YtM0> z`LF%tCg|NXkCi*oTRpFm={ zW>0z>O`)S4@0x;G_X}ahp)a9lxSAO+p)PFfFH&Q0`8ec-7lf*@daZ)pqBl&S;2a{hIMm~8BP)Q>-&Js*Y9 zxq&Y&7BqESg1WMNPG5%jc4f~gMqvn_D?+|Ba<_{RYgN(x)9cW9P7eY}tSLHOxm7sH zLs1Te;)NxsPvFaACQox{27CT0w8VolPhF12a1z7DStV!`e|)M0t!BgF{I4-MF;-2` zqbizn`zthyi%i{%uCO3L=3>^X-njA1|4F&_Ks9FgAh(V*NX6ey(79}BsE;@%-tjNs zOO5^w9!64@bxv$@E_*zsyS=88jck;;dbzTM*@JJb=Wa`@qI>}VeyKPxZ9 z0Gv~ohMj_SielA4@F>~ z{hc{*>HY+h5Y`D_vb_V$w0->L9yYT^ePs-?&0oDQ+ED|Cl5)-JGFIB6O}x#tvQ5Wn zba!Zcxc~FM#%%oSU1Njmx3MErI;|u}H&Xk$29JdB@&=3;M`HnF?OqR)gFWrP89Mtqx&Urfx@mT(d*U zt3MZL+U`c-?n25BA7xn+Gg(u?i_w;FVw1a&$yUdVrSZqsv!FgY&a2S&blG|_lPfQD zq-GI%eJ_B9j@^)kTJr@M-88D!Vn-oh3zNI6U`J{B3oIkcJ8_tF7#9X zPdg{X8v`28jz_Nw5o~;DM6l1JEo{Vmd*68I{h*Mw@z{~Vw*Apaq>0CX-yic9*HRi! z8Vd05frxERWGEzCQ9EJw;q({eVM5PHcyAnHhoqVd?4Tf4!~W|=dsuE{A+&Kh3UGNC;sBkovW4apbZBh+B|hC^2KX?)gYnBbcgua5g!f`xPn@s z{;Z`>JXzU^G~!81No^8N^HEKBmyhZrP}z+Qu~US=Q51n}^hl#++%tM-$-PV#uQ%#> za&6z#r?Y~uun3bo*cW|oGTInFh(}NHe$pEaj!V7xL%qpPe{jdv4UQf?$O{I3e+Wv! zsm)bC(dhB%D4!j;qH_=%qC!F7H91Bj*)QdwEH8QxD9vnYND+MQ0+0lFO<4#7J1F-XFy{T(s5;5QVenk@um zrB^8~?Dc&Bn27=g*VH3V1E^b#H`W92M+ab*92`pab^uoxO_vEp6v<3t^3wgu@RE54 zww?kdgubQ0f0YjwKQ?5-@sAH2gYI_=bRP<2yp4Y%tIWG#lSh4TAUY1bi4t$PmC9&- zABH$Z=g}h|JsgA=-$Ow-wE>bt63zXc+5pRmE!gsw1~fu;)h`he@N*=gkCdZDU0rZ8 z~OGhc&4NN34Rdj}>6A!11(RZnGT$u#}bx=BV+{FR&C_jIN* z+IxfD<&e;>^}I&x>B4B=y8^cl{jVV}ZV$!WybKukCv_UDUNF2O-n-jH=p) zbl`BB;ZZlh_~0f`w7p^=-X?=V711?lBgbFE;tkLU)~@o%c* zSsBWjO`qL(&~32e`;iQ@=r#)G@uL)b$#VQCzT8~fy23dV*>?c-{1^ijSUBUAIg`hY zpFyt>9QP$ULeIa*?J`Cv)%koKuw{(p%YJxc9cnGxRYNfI#xo4u5Vn$+uaY5MI?M-=}av<5tmIi~?`r z)IY$+8836ZyY}cU$wnHCl$(I6n8s0z6&K!Y>SCAmm%{6hj3cd(OS9WYc_>kj!au2K zQ3_=?1m<*4$)kD)>2^F6)V_Za`?}2L8r<=@n@!>3H5U39Fazc?47stC4WK;lwtzkC zLj%K)A)JNok?O0A1#arx$u*|TL|sWO8NKwgXt+Ke;poZ)SvXBB2x`QpWH4g=CZ^(e zvg%8Hbs6GtDa4UmxLIC?N!)b0Q_dDJ@#7`Z8*e_INEyC>^ zaTXXe_Q;G0Jf4({hGma|aj>6e^NSm|GqDNIQq2{my;PWiUvP3~hiI_`?c)e9eDHPT zE60cO8<(<<{PP{8gY~G9*iu>JRZvknNwyt5=%5)F%ty`x+A|!YnSR(28?^*^ipprP z77^@!|Lcg|z6|;4SRVWag6;jifX$0g<6L+@_QJg|KbU~m;5SI};Eqdh~&b$0bg1K3%WAOGG;S5AsXw!dp zk0U-givoF6DWW(ADl_X(g0SLG>_$cL+NCcu>Gv5TJ5lwQ2?izsL2=V^VHLc$_*NP$ zeC(x?N&dK=u~676zanXOr9~9dxI6efMEDnI+|b6E)-m7gr9u6u8Y>Cta#hKrXuGK%qPTiVhqTE zyN>6>tE-agil7H~L15*L;fq*9?wvoIx`Wp~xzJHRX+t2v4!zYT8u;z)1kB86q3~(V7~dfrqqe)7AXppi*bSSA@lo9w zro6T4aG5~Qh`1M7hHulyTpbZdk?7PJ5Y6v|b9uc%&YEZX={(ZA9S!0w0@y!*0&rBL z@K#Tk>G;{2N0x=V6rLeE-2cqO?fuo(__2!oUDRi!CwMw~FvGyNj2J$_XatRKLXI!H z=Y|-(cuKNkdRm!*x8*PaGu14lhnl~YV5a9Y%vrMqc_>PT)V7zOGkC2t#?O3Z z_KdOPXNoT_JO=dGwr>;(QG)C~^>5!VJCi5COqv2e`NY<;fXEnc=+xpP9$@kH0-`-i zOMS!-GrZrfn*dPxBFzX+@K7Cglp{f~ymlO24tSyWmTCO?@`d7j{mPf`0F6DuTy9@49yHmCuUP?Y~33*!61)JO zsJB-Nn3p4Derm?+q~ssGMe9zRa!)dV0$w0Zvv3^)Y_FGcKrPIwS~PqQl+t4O;3FSw z6pgh&qs36nv+^%L;0=C<*eAR$@MZGSsm`LyZO8{C4_q3cns^AQX6aLt)JSIxLF4X> zy7N*X@UGf|kyY*NVxpW%4qX}tA3`oCI9_1ir!w8C1;k2f0n`Qm({B^md1&1>;#nI! zEekbwq34OL=@+NNN2laiMR{5>-SjCJeR?%8eRp=_#a8tx9w6%MX)8E8%0^Z? z;kH3dZzghdqS2sz?+$civa{IHdsyM)nz{&BAj|QM0ld36f;O9&H^j~6x}#?D>F!F@=I20 znAl`(w*6qSw``U$vCX>d9jx5UEFwTNIY6dP4rMWeOHN|(VdQ0Gl4FKjI{6TfH8ars zNxU*(qvUzrkhyPpr6(@}Vr4#IsIUUi%hdqS2sz?+$civa}KxpgP<>ayGNGp5?}Gfs4rVg`xCS%5`=q8sOKWd;dN*5NjT ziEYm0_F?2^W)T7E=Kz^7Ih4g3COLUJ%YLwiNLEXj*yfq69jv^JOmfU{OD7-Vv1SIE zKZ#cctXiJe4VfFwCp~!)ue4y0tD}prt6pwOXb39(aI?5AFxg4=hFhIoxF%o4FHLb BHt7HW diff --git a/examples/zips/databasemanagement.zip b/examples/zips/databasemanagement.zip index 49234bed58ed4b0a4edd1a31c25a511bc911ad4b..bf9fae231bc0ee786120e951ad950b333f4f2078 100644 GIT binary patch delta 271 zcmX@5e@dS>z?+$civa{IHdsyMHBvbpBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI zzl@gbAca7@*_P>&kRVVnT=E;|nWaD_VvGz7S`!Q9C)7 q-N3*AbOgha#%$rq1>%M<#bCqg#iW@^M1aC_6DM%9K}}jBt_A>%^Fz?+$civa}KxpgP<8mZXwGp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8eY zC}PbHQV7JG4~zIRawADjOtyr{ZCrdwh#925Lf8Q&HhI7Bc3ws%IcB)6lV!ymn1Lou zP7sq31gZ{SA0(h}&B(yu%EZ8+I=NR&ck((BZZ=j1m?E%|^=`#9O5Iw#JPVg{MD+XXBF6rIe*m<1A=%*|{M7Yk(G4;B+{Wx?ixN(%P+bfR0t{~**;pnYJ diff --git a/examples/zips/datacatalog.zip b/examples/zips/datacatalog.zip index e3b15c8d8df5a70a7286a86acc81e2ee5521d99c..9eb3b5f897e23fb2cb922383bcaf90466b1491ff 100644 GIT binary patch delta 351 zcmZn`YZl`T@MdP=VgLb)4OSC*wb@UH2&bM65uRu-#S9dg9L{J076J-yp2WDC5iEF- z#Rx9Q#X6k{Bsej~940n#)-JHJCG3_kp~+9!w{bJGhyd;30NFIzff-?LHM2J(FC&v2 zGu$DQmvdM$1Ff9Aj#CC~R3@kNWLZwh$#XgRP{a+nq?s+47$!etk!NFNfJrF=Z3sX3 zJ0^Vr(7rc}3=E145-Byq(OYLIi~R}}L!geh%cTYYqrqO; delta 380 zcmZn`YZl`T@MdP=VgLblZrzEz+U&OcjH&kgj1%ppn1LdbC0NbDLO|ikVXV7AViRLb zU_u+GuVw@*6JdvoZT4sPX5?mO5doUX0Wx*6E0YmS!{$1s=}cf9!fci>!O6jF+jtq7 zw>b0|QGv zP-lQQNEzIWaJkx!BO#m&3~vn>7$hfu=24!^&BW=<%D_y7Uf#H+FBSpKq;IA`)3UNr!WZ%0=E delta 247 zcmbOvGf9Rwz?+$civa}KxpgPUn#AOB(nrzFpg_n^@ju~$J#W}rcnyLn~6hOgq4p2RCQ zS)QAljgb+Gwwc+~)bX)Fi; diff --git a/examples/zips/dataintegration.zip b/examples/zips/dataintegration.zip index 6f4e482552f3ae015a0dfbc01b9c8df7c147017e..bc5e3062c58bfd3e940d17afe97e134c6509d5c6 100644 GIT binary patch delta 792 zcmdmLw$+R`z?+$civa{IHdsyM)n`8)BAj|QM0oOhHYsMH(BwXDGq4y?eDi7U&rF;M z)d^1MswW-`gDX~MoW}$<;Rv%YOmK2M`zM3}lTY!xp_?$dLog1edh=UBeP(WE77?K9 zI6&^3Y$6Z{lbqZm@EOUd|$KKfo?L&Swi3TlQl(cnSlW_IZ;eT5$L|~*5x``_n8jF$&Wd+)Z59H$ eSZZ>Kq%h1Zu+(2MY34Rzu#_z;H!LLhrPTlh`qJ6} delta 860 zcmdmLw$+R`z?+$civa}KxpgP<>a*MOGp5?}Gfw`4#gkX^IwG4d2-Fas z+w@T79#H#!Mg|76$qR*LCM!q^O|BCZfEj~k0UuuoOlET?-!-s%CMKA{#5T_T%!K5e z2|~6onaNj#wjue|hr78%G>WX0tS>J~J;PlN>W5;50>T znSlW`*-=bv@_h+5a2UN4m1YWNnA{+)I@v&s4=ODKmP!zlX4(mp;+$;5BF4tb08^oW z9xCPx5}=r400t1llE&@KP$M}fTe0(^>yw_waMS{*(4L8bK?y}48!J$s^yGh1FsFcB z3bqVvI+W0cYGPmzV0h~|iw$g2;;DO!T`k+ zd-;L-%wfiXeSCknchr5LkM{wC${NLfbpfDaqsiMO1YjD#KDsF`%~UN2meP=r1xxWu Gs{sJl8>LME diff --git a/examples/zips/datalabeling.zip b/examples/zips/datalabeling.zip index 64fe11a32c400502b1b93a9afbf85f7faba8b721..7e4567778dc1040c1f3fa9ff740457a609d90c09 100644 GIT binary patch delta 281 zcmew_@Lzy8z?+$civa{IHdsyM)nPv!BAj|QM0lcu6f;m{@&`s^unPOf9KVg?#N zS%F;!Y?3{@^yIH>QvA7znR$98X`vyk3@~{Gpp(LVjSnqZ3N%`Pk%2*lK?3A<1|XAR zNn;Dsag4LGp5?}Gfs4nVg`y#e#v4A76J-yR%P{Jv%r-Ew&DWXP8F?9*POf9KVg?#N zS&m&s5NKt1a>V7wR*Vb`mP`x`@{?b%sZSPQdcrJ2Q9KyvCx+7v-%Oa6NC`zz4>dx7SwF-U;?%>ZOFENPTtg&1~+T@-9sB!?OR DrlL0H diff --git a/examples/zips/datasafe.zip b/examples/zips/datasafe.zip index ba5cabd397f3728668b421e83e5c38353cd001a6..efc2c7fde76a1192c1515ab15919205c44049bca 100644 GIT binary patch delta 5404 zcmai2dr(x@8NYiLcG(v!F08P3Ss^?Pgm*+9^|J2rMYR8$>gqEIr&b{ZJyLZ$0M@H}Y zeZTMfe&6Gq&6SV9m5+d>@`qYKBPaY>Ih`|XNznhc#P)J`ew;L05-qUnarBwZ{K#Vpum+o z(h1O-wMGT(%W9{6}%gn2m^-s2QXFO#eWODbV#-lS zz`=Hs1)JG!dn;wVV-MG22~52)@U}+>XT}12sch;fp*FQ0F~AUl`Yk}{IJmnYg&w_K z@QoB?mMXx~C^^89s4s}3rOlZt;8?Sq_FtPz2r$Bxs{;19Dyi#Ru22HJ8yO87Cv|Y| zd4q3NQ=8;CJWbb0z&GOxRP?Fw>nZ(Ee6AlB>QSIjFn^eM&f-g`GY#vg&A%FM6Y}Zq zC*ar~pY3}<=cf42b@e2LM}hgOU^WEF#P0;1mWZR_Y+e9-cCX1-Fr#Lf{429wB9DeA zyMmxAR%c1^*><1B)Y6zTV#P+C1JN+@oDP0j5#U?apH~nC@gP=9@hHUag=569eXr2wN zYVgrkxw!MKV&{ym7MkA-r(XGvmGa|_6*T*WjZc#7r;74aG6fbtLxG!%2QNJ6lCz>5(IRuIDmI=fSFISm-js{C<@m8_#SKg0r z_3qP{w0`o2{4^zvvY1n=35(DJi{pBq8o>FjOe1XT1Qrc&Y31uMzi)+b55nL>_EQ7o zhSv=9@a;akc!!$;*46mqyAolXxIkMGz|}7SVs!MFQshtY;A<@`+8YA5O_)Rn#CQ}P zmHCNBI%`wMrX5|$U9F50%JQ3IJa|tB2lnwWCySTeI3tBe$M0|TUHiL+A3kQ2Qt%!*v|hIpU}6p!@q%RHN$1kLi;X&!uH#exXCG`T8F9f4_t2gSh* zW|fjim0YAExegmP6=vnXKqs4$irnkx!G|&;VNbYsiZ>4M-~&76*j{ggmV-7aP3(Bf zpS4vfNP38#fVGNBq%38O0^#X{3EtFS9OuFPFpLte1dm4#9Ve_3Jr>w~f(OrpD zmU|QZ@;ndRyofRx&~-%HlBBuoC=V`C0KAhHEDJ%4Arx~<1Y&Wbhmk=B5Q-|K!>^@N zJsdt@_l{zI9}nu6p;k#(6cNkR-WGOx5lQrK6US95WV$X`)OmB=xX6R@Xqxx?W6I{b zJBIp>J=VkA4kjluB?)VE+S{l$C1^^*6;54oaBe8l+o>QxRe~Tu(DrQ|ZOyyXLZ%+# z!5bI?+YUu|69{$qVbdFTCy)#llTjcAnSVWgyGEIYtko z+0MjX{uvkU9fRoz4_c(trLaAoSzk1buU1T!Cp1+ z(V~iEn_bL>nu{*`lxpeM{bDvU-;HW#0;>fVV!8@-do_*(l513V~M zgD$EV1p#(_>&W8!kC4QdE$BD3BJv5rBA1aCtEG9F2l{dx)b@H8(~FqRw0viJAktw4 z8aTItZJT7{gb(W@Wjm^}5TtgkDAp1gK$^7uRUR}-r&hSo6(S=jMc)M;lvbg3w8M$B zydqZ|`Hng%Hg}hH8r8kqq+zaf!QW3_8;gDsqvO?zXCyQaZ zajNXIDo()-V9{tOoIV+%ruCfUHP4I3DU$X$)b4k>V_rp^X4JIOuAudj zuc+?=YZ?FlT3T5MTL<=dZ8bATWYRXCLK{UoT>{5Xsh()Ul{m2-+q>P&!X&SNt?5Bg zTT!en{@(ZPqGV%(Gj67%=!^*Sdus&C@$E zs&UeyP!yjhPx4?=I*(GcM8(yj*=&?R8X72GA@=SbI5+s1w<}??4ZDylr|`=Nj*t5* a=yo0R-`t3(rUJZYvqdr@51ajyasLB&x@6%1 delta 5318 zcmZ`+ZBSI#8NPd2c3D0aHo)?6mjztPhaiZ>#8m{=Ai)y81Vyldgg^#D5fq_VqyoVp z#1eR800SyoGh$?nlgXr}F_Nh*I?X7llX03cO50@8rZJuVY1%-To_o%{_uR`_`N0hL zJnws+_j#Z5p2PGUKRw6$73F#8y*cs6=(A?nFW$J>Uss#yuY-U41q~M&JjAc%4#*$$ zhP(!Ecvx>xA;QIFFg29oZz%Ge=Nqo-@W(qPIA|nD@4KVa#Cg!PB>%8IqCSPV3-}GmdfU5Kg5^$&FNd}luN;9{WR?C^446w;XGk)YU5}?_c00Bv! zQ1z;hd*b%Y9SV;_nXi#*i*q+H>1T3(q5zk31NFGV7a|EcqA-!-lgK&+m=P7`fq|9r zi6eHSdkUXMo$f$dPt)Jyd1Jk0w!-_fXOLE3a~FFm`G6>{}cnf8c(a$Y$k28k6ISutfoWFB~R7q&WoaevIf}R?y1Rb}x|1ZyLx)bvx6H z4NB_sMm+&8hGsDws=~?@;Po&`8Ii*SKi2+cGu?iVxs6v9ofw;<--#f_;m~Recz`iY1 z_Z=<$gzKG>1h9jbd;fIh5UYsODwZ%*!WBKZ!S|19RCj#UIhzShU{uUq8h5ZhASRCP=`Ul0&D~#f{ zpC^oh^0OK0o%zoxz%TRT2{5YB0kf$FIC9Vcg>M*`EiB0JWv~BlW|yGjxE`M4Ho!*? zD@2|3L2#Rj>^t|W*OQcHX9lx(vy;xVkDUutw%ODm2K?Vts@F5?ZV+&}AdXBQ2Ar8h zd)=RuO&lbT_~mhvOi_J!S}W;Ho~x9m{KEdNO!939YVkMG7VjQ7O_)?T)~kVLQK9<3 zymv1Esq+UI>mx~10AL2IAwXyJWS7bocT$?Bc4 zH+JgD78+{5J*)-GAon+Vjb1$hq?PQ@ z!wsODw4+yniRQ!%aIkYo;M)npnQo&9QiHf_oC&V<3;z4})zvrFBH&1>HBG>kdZdGsuq%uaz{SM69Ke=Cb7x<$Z!lh_gK~iGI34wQ6ka|HdpBum=#v*+P0zWBZ zVrUUIye-~G`n6Wtmg54rM=re;NgoXJCY#B9#?E53r+E zJ1ixy>>n<_?ajl9i%90r4IH;oqxwEM&IErP4A&4tmGKXvur1CU^OcsUCvG1TcxSY< zYy|Uwwk+fc{)HH@OvQU2a4+m4GSw}NfUJ>7d26O!37U4z#$pvhj>{ItgmBRAja84L z^&FQG!f{(PMLOc7pb(fmZkKn$+U@zJz|SU17Ko+F(mFpwh}0wr5d&+FB&nsqI~QDa z%{!62sb~rdnw{rT@Xl|wtJ*?5-P9-WJ5oieDqZj$5Zmd4|NA>UXbW#S1&OpIAV7~K{Lvqn=1x|;Yeo<>V{ z$T;l7gkxGx?jIli3DuJ3i(IdvwKZFc)DF`3PoX*f47g6mx=&cO^^xrw(t62)9$T7( zkHn}<4MTD4*q$YhX%434)1%{eM&N%TBLe+@R$bqe+*+r)7w8RESb(QLdL+Z_h$qv4 zj}Kk=eKTr6H6kYu1oS7mHm2o3**zrZo^FBfEJEXFEfn>5KW4PwN1%TxAQ-bG(JJU! z3M;`{W{r8PY2p4gjtP9LyzB{=#$*yygRTidcMGD&(ETtGsL?O#b@W^)lbUY<|LrE0 zCT?@i()6i8RILLIw*pO9*6dP;!(#C&RRK6wee9B@SaR&LDsbyg=i3-B;My*|Ch!+z zOu8yBUKO2`{!`SmVCg+>V6x!-HP3eq_mk>qW&Gph;@uHfi48ICe9V2Hhn`KxWK6{i>MU#X@Qf`{~kC_HV8Rc%VN}eO)`A7G~w~Obe64Z^*MCCkmZRE_4Amq zVyMQ76D?8~^p80KCoT0ahN3}dNAovIQ}MS-D0JzWOICb1?rlYyIH2o<=4p=^Md!VJ zy8{*LgM>`er2T*dohnq#HKncmxi)m{R!hoIPvoPK&9$SYAHmS1wxwbhmOF5j=zkZc Vt=Ny>P6>S3Aqf+Ov-h5h{Xb6EAnpJF diff --git a/examples/zips/datascience.zip b/examples/zips/datascience.zip index eca0c7a8e85acefa1462d44175644a9316ad8fd3..7cb42fa830e932801d03529faba0cdc54f11c0d7 100644 GIT binary patch delta 1381 zcmX^2m+9PJCf)#VW)?065U|)_HIY}F{d9e&$C$&9*E%s`>Z{26MKv$t{bgobc3 zFe4;ICdXy4ffP*KVh`2>l-l^qn~hThXcPy?u*r9nJYX`L{j~C!z{dHpJHQ1Qb?u}% z;g(OHqpFW&JKTcF?^R9VTC~-!G9zi(uVW3DV$^k!23x_YWd|38+xsoo2CLy=dH!(4 zYw{Rb!6s}dMz|c!k#7CIF!jJ764|`2{}US@(6`~>Fa#5m8FQs4>+fZoe0~})HajOx zcZ3VgiA~nq22L20&A0g?i%Eh)DKkBGZU_?tLkcScgAs!SIJ_7q@7bn4nOj+mjTM~2 zKn5#-6t~z&ZP$`!U;tyNVvvp{jf`BAAMO$drOU~+?0iW2zz*u$Zi{R&SnTa~XB0;t z*dfjIM-yzyQyn3M31H`gZAW&h2F$5o+gn}1`t-F#5&9r52Kxs}sKH$0z!0=p=fx!~Rrr97}4lsvf1PUw!K{hUF{OSv`VzR?tj>#AH zaKbc!egAupG*fpbR9Xxs1vU@a$;v2Beo+9_APY>zTnKL>V)x-*X(rb~s0t2&-29Z( z9KDh>BoAUnqCVVwkb5;sz`FToAxAvexj%PGGwtpN2l56Vr07N1-Vapauo|r5pQj); z_v!DJX8N=itU@MN0HFe&W|=;%1Ij93kCHQbze){&QSwBHfk71|O1#zsb?HEZ5aA$g Tpo4C123r@ulMgJtVxJlSE)A;` delta 1363 zcmX^2m+9PJCf)#VW)?065Mbxloye=rZp+V@YR}I&InYmv87MUQ|2nnF+1ogILPIzi zm=Tg9ljnP|ffP*KVh`2>l-l^qn~f80*knE~2bj#}KtDTaP7$Cj93Xop`>}h#rTSK9 zFip0H7&dv1sy>nn;Fe5&uWAa{psjY58Of|ku6A%K6tg(Btl<)9_CMQf0+&+U;>F0# z%z|*7?`kW!B#MD2`pw}IfqpL1(C~p61qm~Ri^JC=Y@fN_iv^;1ttHHa$@c5^g2g;M zY`|jZ2CVS#hpFBC&x4T_teD9U5pZxP%*gbGsRTxw$fm4M;Fy{GwE$upy2(L>jxhC` zXBEz10-J1F;tCfG^s|xXWn_|LMnq=CR!dOqPyWA62CV$@RwpQ5Z1VfP5c|xx`J$+i z+b%u%;5Mbnwp@H{tl-20)DBjz089kondz}}LzoyCQdk)nj2I-qiI5RUE@?ckG|fHjNe8S)UrPv~2jS$Te*Y~NKsTBLoh^srWNQzwKAtVyX!^jRb#RX~(`iqzim!V_ zP&^a`l&bXsOZDx6`xWd;aEL$&m~9LU0t{~*nKCAC+^dT0X|RSfdcR5ySQr?d2qC-$ z3DGE!1_l1y#LPUslC;ne)aU@aQG2g6)5{#NL*n-eqqtFfCr~OEC?z{NU>En~f}N}w zR)-pdEq)HP`ne(lgC$DHc;>-1-uJ*86R<=8iHXI` z@~_%7X=AJO-=vaM+NiPAG}YGDf<;OJIm-({7(IsmYafC%#XR)7S_Ih&GyF0s4jSqheH7LO25nE+Pm1}{SMvLTI z3JJhtVTH2kMc7j_jhq|InI~!!lN0qmn75O-UvThKQQj?f8H%`Vx(&p;cS_t4#~j(z zlfIw4}I>NM@$Ww&^8%6~_&sUm84b695g4UT}W1la+>33mrheDS~cAiNR_4 zxzY7<)IXvRs4+Kgrt~KQaWA&XNS9b?>}i`c8T*e7R8d7t)0p!7L^BMiWJ+SzVie6Z zFMcy&f+?1-Q$+v9ZX}l8g1CNj+|h?ICikMOE?2ojnY8jHxGL_Ay6M&5o0UzN<@p)) zGxdJm?4{!TG^Hjf1W%@#WEG~Zz(WqL4QmvRb%tFeO0R0;3c3*6`7DL|gvTb?y})x) zh11>Qy+=O$-Mbo4B_u?P@Y{I(gz&V0OG zPqW~JiZ9;2G*iuSui0{3JW9wJDYJvudbBY6Emu0J`W*|z@jaI*sMo?j%k30we}9^~ zp$C;`zlP(MNo<0r1{!whWVQQueMHZkajRG*q!nJ>`Z*q=8=DtUti?w{~`Qr8+Gmg99gg!2emMlAjNrrugt(Xc08+mZa8JRMeP?(JV zQsppYX6f+-TguED@yF!qMZd7(^=i*sDU{fG=DXC*QGrq15szM_&j&5)?!+D(moZyjqYevYh z&a-p?0esPwC+fv9>z^YIkhzVj__dPN{PjrVZgaWjc#+hhZ^38zKBUoxo^uTnChum2@Aop zwh}Zq^)omwkHP8nBpUp}+mGlWgHNwDHs0z)2^UN-=#nbx9naJ!F9~DHTjr1%!UK4* zg$H+uX*P^Z3Zf{nhp<;pq+xJOn=b+5Xz%nNjeCkJl8q{o%VcJ|S^{{$p*BC#LYc2M z9h=c(NYVWEgFJA`kj+zXgaa~LuaV61jv`yVx|Ro@t&_oIe8~#)euD?!+vxS90}*x$%9tG<`2s%G(-%M`{FbYCWzGn-l}jQ9t6Ml47x`}0ym7Uv?5kAUYR$q z+%=%PJcjma7$bK;#B^6`r(%8xzaFw1eceg|IWB;~w3eVa@?FJ^Huj+KJ8}4HJ>pg* zv6;6R!}Bu%2+uNirc}aXpnNwj$K!IvEn^;JEG5BMp|_bcl@eB&gBmcl2lYn_8@nBu zfbVzk>XE%1?9TU8Hm9hIS1;cu7=6(z%)#V9`ZI_e-jf|X7-rO2wPwEn4psuIk+B3D y!zr=8!b`{ZW?4fix^QZA;eweYzpunP;leI0jzm5xqN2!4D-U_p7a~f> zY7rH&YHdu6>Du&Z8%v`p*x1C@+RmN3b9ZL%wj_`+=X~dU=R0T4 z+@Y)d&{bZSV^*m>fcP`UGqzh7F(%2tmCiG8FvZumJKIeqo-Uc?;uQAhCc=>}HOwjS z_p;<`fy#jl5Ml80iXx0d=Wz1MKCLfG;x49v{sk+E#nw=eslo2S7Kghou0t!cf*T^u z6oCLe3bAC!FKGQW9)M6SyuKnD{?O?Shxhn-*lD1YwwWrIT#9yj(j3l(hI15$T)|QIc|oP2OpShW z^|n8>WonAv`UOkr^jNGS^Q)v9CvAUSAX{vU)BoYHyCw5=;%>W{*~(MVho&!5L@$`J zjJP{RUu7&O7TZ_GB$XJw`+SZfLKIga`@PNSdCbDinyql$Y%P@??_0|yM^0;{9OXV- z_mP51<0%cT{)w7Wdz*HRjB--@c9_%%I!RIZcG>-5cnhu?z8Jfl zA}O)?Cb5J#Ith0yZZ)yk+~Y54#)(5*RI~O%J-QWdq2FvcIz0xij17VtEC%8V*^A(2 zH9H?Qu$-m3rTpV^1U?D6%sGzM$H~c!Twx}B5^=o4GCe}pJ$LtnUq?fa6Fk> zCp(6w&8M%rttDPI4Yy=)p45tiPq$2^V#%}R*OW{hOXX~7%8=uH(KKGVN`uWQ@?q50 zHhPaNYDiba__#rqkQ(^6fn&@FD0? z>WaqZx!nfFY(VBX-fj+c)8NMl5^zh8z~3GtgEv^bhzFt4(<$&b-C@EWBb_;feP{r9 z8Tg}{3IN*s;6&?uEd~tlnMk-`faUV`sIAE3PxLyO7{CE91W0wRneWiUgk34_mV7&H zLMpyP;8h0EhMpErLYWkG0a>>ZtN8Hf85Uv2qqlxj1CZteKsv)BcpMHnpx06%gT+#_ zK5VYaLzph~QnRIY!700P8RB#I3w*HvH}0Mc_htISzWr>!xB~)zS2lYWudA!6Ev=5L zEt9K6bzr$>KUz2OXC&8v27oMv=t!U(J}F&p8Np5C=k``2iMP7}P|V;~1lw^YQXo`1TlF=ENg9Z9J_izFVInhbOWF z9I(;^6k5E(Xz^t%+_)plLCKYRiy6eCID}YE<_{Biv;*Ba@z_F-CN^EzF7T~WkSSYN zvEJ24&~up2DE?@=NDU5Z<#BLDj?Avq+OKCLopJ~{T>I#i2gPM702X)yP{kz3F(GF& zGqiB1npHWU4h=$sCz?S-Q!j&y80gT_A^(J?cC(PRv$Jmf_( zU134CY^5mR>gk#F;WryPJ*Z(mX@i7BQK+CBXCEp#Lm9gDE`M zjMhj5{O&*$$$+Va92EF(B~!#gGc~sg9cM7%+Hz25UxLY|@dQIIdVJH>o)~n=>&7{& z^H{>1GsO^$t7(X3^7Jo}@@PC915Ps0jWaUpxGyCrn5~v)kKhLGO?$TnjngVm05Tbz zdYK&;NioDap~sGYx)NKn^8%GzPG9Owd4ksBGSsO;CT4Y^9W{rFsZckWsrq>l-W7wX zeoQ9Jqz4N8W~<$9Br(Yz`ul{yrxe40lObd-FevA^pt@25;7D_jBcdzyV;CO6rSRJE zFnFfPh5CKBO1A!mcI;F%p9xIG?F8lH%&zlh`=|jh1ZXSI20lib2IV! z-R{0mp@tswva diff --git a/examples/zips/disaster_recovery.zip b/examples/zips/disaster_recovery.zip index 05c4928c986a26c6d04239dff9051fe3c431a631..ab8b7ada8217a90ce8b904e8f7b6d6fa94caff09 100644 GIT binary patch delta 1260 zcmZWoUr1A76#wpb=bgKD-R5+gyLOlJ4-+@9+cZ)tOA#vnmnIUuXi73F4Xs`(dWoWk z7~hLwV6woF1mQju7!~*sQc?62g=W!1ybM6-FLTJgI(C~&pGFJ&RsH|j7!~Z zyhTK*&#uMBgcONB?{y8oq~FO4d5E)Y@CaEhQ`V&G2SfT1CgVy4S(ow>cXF(0cjCT} zr}fB!)BzBMH7;Mk0N&)=8Av|yKLHyR2N?#WNK3A{sk4vea9H4UG<&kZG|*lZfYmQ?dmhAv#vw> z7!FUb0meOxIIE+eGys*=aX#2$s5gVtIFGkv>ibKZ8A(o-{)TbJD!L48Mck(em9u)^ zA>|+=G-D^jfddRAagUGp~-LOYQc-V%;J?_Mb;_V8Y& z-I3A;PLXrne!~YD)FMNe%5x3~^r6%J^0h)bT~kabD3D&0e6oJ#HKW7d!NG$!Muk}?*kgOfw?;fb1wk^eHz*U5Op59Pnsm9X-Vad&8Z zwu@e_#fnhOl(DP~4A)|AlVNrFvoJ#qQ#OR6Cc}pcFiZssvZjP41F`jnIeHZ@eSfM< go-aY_QOIkjJ<9|8yrjx_vx>6Y$wO7Y%ff-J zKm`>jMiTT8U3!p+go5m$!pG<#eefYjf}moh(7EUCT<^8Py$|2_`+eW{`~B`_hGvGW zM>9|mf$}q1A~|ckuA!70Xe7_rWeebhuMhy?8et7}y|kh5ir_5r<8;_6ngJ|y=bltR zqKBWGj++#SJo5GGL7svVJj_5m4u4W?#d?fka=PR-XLb_xVkHy4BKB(3C(#UPeOBnx zz(rx13g_N+Xjmmzq?&P|y&BjO>fkI;*pU7mXk;XA2);0Di@>7o0Ai?$;S#0$1O&DQDe*07Z1l^5K%c-=g2?57wlOO8uW=h}~wl+wAzst;+^+6JF` zTNsG*-apj!o4<`=a!Q(08OiU&`_&k1aClqCxs|ZMoJ9aS`@+e zg37hkIvH1`D38y2SH2VFzh(fMft!A59C<&S{86NI)Zv$+qi75L-bhFfH5-f|?ljIt z6L>CC&g3XFLSjr=)yDa-g>lsC{I)=IifA7sb~_DL>!kqOL%Vb~J|$aU{Zew4WO0+G zprPTm9WNzf1$F)6CTbBs<-oRBytt=(Q|h%C;>}wX4!6g(?NO)4-JdgGh!Y~w_86R= zxkv*$kvjck9PzN6>U@lA+oa=XiA8w@rC!Al%O`2)HvFBd3q}Cgz-n{85|7mT4XJ4~ z{psrs(N1`k4(v>5v(OC7b%=LVDU|)}SpU$#Xms@4f4j&e5Pxz9?e|Ic&5OU|y1V}^ kS;YquJZbRk_miF`c2?>)O#B`M2plZAaAsIz|uU78j%9FJ5s8-&bay55yk%%s(H&U_JjZN%WF7wk=P%3lF~pCuSGv7#epZ-K1IMiEIOStDGfc<4m#vR% zcr%vmHG1L#*NgN*(*wIKfniS}PNxkYXqRT!Dk7WC!kS;YyR%ExUGvz=~mX7;D z^oJTOJV1!Nm3@WRhKKs=t_)af!WycrHT_ZG5Q_2$RUjWg>0k8p=A58)MxEPGIvb$v zD&~qvvP!Yd3u&x_cRL(|lrtqF6tuB=v<4E)%Qt9-#EmMq!FfGy^FIkhUJ)rL%C5H1M`?^Xt_5rxbrM72ZskttSOWJVPC1_Yx3rW3G zw#WeFw2Jwq!tDyhxCEsB#IR89LF9tZYwp8XRZjx*qaN}pQEuj_anQ1PD3lFTEo0PP zjZMokbd>ZBU+(W2=^NT{G-$RS&E9-kq2uapuFGbcTUO|l0qQzon>6p!w2|SuQk$o9 zwOII#HBWw BdrSZT delta 1458 zcma)4T}TvB7`-#Iv%9l8y4L z=vPk~F8!c_Cb0z3OW{K=(GS!^lt?{Bru0ydgmmYwduPUdX<+x^p6{IRoOADZYCI*j zwQwdIQa?+9GAf43YKxhkI{Z5~T!0wUHx41wC5#&8z|U7$HU^=UFXb>7J{RvLXZSqh zw-@n(1JkUkEZh>CbI|>dB1^`Tg*Cae%sS_0bmNM32Zc^q9SoW85N`YSP&*%dPqU?T$}|y-%fCrcBLRArc@sFO>jbVlvoZB6 zyWDkDchkz3p8XWEdskT96)ie7R?xMR5gFFc(emMMc@>A>0sIWRU?5^H!H?j$`o?mf z15SkfupY5kJKA})F)D9U$C6)@9cw0pF31Rlk%urC{Quy}9R#Zp*O=X5)+i)#Dkd?j zuo7{P*^40^+nUoO;Gd|()>~C3Bx3d)L{_=xjy+n#(g7YJ*|2Itzyvq+Mhgvu+M8|s zX%?Yr0U^JEux!JGa>Fp!H67~2!vPCIl3{pGBz9g=by5;>+ZvX*lpVoa&SR*CfcA*Q z%@eSEa|N@QSG0xjMqdj$v|jCWY2n6HH7+rX?YIn9qE3W*hEMhn_Vo-^cApulJlfRI zc(^Iq-<@|c&5@>elejH27Bc3Ub-~$Wa3j2yrJ+J%({4yBZhaIDKa!BxRTcN?ahXK@ zu1IX7N5!BeDC+VMv=pOLUV^^x*>otm*7TvuyNlSUf{g|ZY41sdvz#zqtL^f>qH0{t zF7sx>Cm9oBdC4X!B&HW86)*hoSo6&f#3g1S2g8Uv&;L?fVx!x!v!T zHY=FmWC`|d+{`Q@Km$0yM#P%Jq&CjzC*TcDA b_>3)3kp&Y2gFK2JGd6~axk@ngL7Zv;7au&E delta 252 zcmew%^h1a@z?+$civa}KxpgP<>ag4LGp5?}Gfs4nVg`y#c4jjL3ju{U*R%OEax=4t z02On9mB(7co7}{@jhB&0ju~$L zH93oon~jwLCZ!0pIDFsCxXZ093=EoL3=FCa5@07X0?8$f&lnjd2eOJ!&fyS2(c#4T ZTx1DQ1wT-k3W|O_Dv2T0vy zKOSv%kU}8d+`w~(ksC>JVwf>ZZsP?Ux*2kh%0g6r7e zx+lM2+XdGBgT(-@P@lC1qHrRoK3woPX9Gmgi(3aKIJuVl99Z{!Mm?C=<|~ZujJ%9Y za?EfqPtN2sW(Im=ass~$SouCd>B%?wgeT|maImp5pi1#cGbJ%izRjnCB3#ce&A58< zY<_tZ(fI<>Otq|&_Xwz>2-^rqGiS0hOy0+)fNuO9ercuzj>$jy6=6CQfMFLd%`M-Z z#>l`R3XBR#1_@A9F#x#?OB%(vCMyUkz!b}a6o2f#^Lh(VG8w2s3`Ozz$#sHqFtuQx RDgy1h%rn^z>hNEJY5?U;la>Gg delta 489 zcmZ3WvOtA5z?+$civa}KxpgPMS0yBxsi43VAh38zG0pX(UHqx02f@sQ3DYyV~3kP zc?0_{u+d$tCUAvES=T`nDs$<>1tYl{AcA+ebzp*%`FYNPbWaS^h6!!#xWmZH$Rx)M z_wwXSK4WH}Hzqd<$bhYqd&lTUbZKa&6(D+7wuZb510NsJ7WKk!JSOV#j8GfGaL z!7q=ZVS#`&(`%N=dj%9xgl&Ps3)v<|38narI}hdC(8;d hplFB}lxDP@TrDVvBD#-Hn#qx8@@+mDu<$QIH2~O3U=08O diff --git a/examples/zips/events.zip b/examples/zips/events.zip index 973aa797ab18bdb8f5164e4bf2ab24ff5afecb87..8bda09f2dead9be8bb5543092f03712d2f090645 100644 GIT binary patch delta 252 zcmeC@>*wPQ@MdP=VgLb)4OSC*)!0vm2&bM65uRuz#S9dge4kMlECdwZEX>rz1QwjZ zVgeJKe3@kvH#3U}&;Smw5#jnUsg1qvjJ%9Ya?Eh^Cr@HEVFsEs`6R21Akg&i!;6I8 zXD~4^u(C5Sh)@2;syK;>lZ}-DrbYpzCZjw1*8-sNoQw<%atsnc76Sv2$*`o6nR)U- hHdPeG3nJ#tH3iD*01cHyQT&^EGAo+`Sn*3XH2~nWKjZ)a delta 272 zcmeC@>*wPQ@MdP=VgLblZrzEzYV5ZBjH&kgj1#S-n1LdbIau_;LO|iob}a6U+{`Q@ zK*bzj<>9(8xsBaTOkni_%qB3g$==MHco~`GnBnG6p2TXx3^ZwS7n=-N^-4DB$;@mb zlQmhm*;pB1QjS22!w)YKdY{3>z`)ARz#z^b0d^uIkX+Ju2}q?@B<2?6q!#O^mZj#E v6zdn2=A`PCq=kkcOi=`xlF^<0YXMLfCs2&! ztPf0V;|6xH(BxEBCz#mgb*%Z!V9j2lt}wyL(?p+x#S}OZ3Ntw!Ai8%k+QAfV{?C{U z(d{W>1rwayC9)T+`-^}dT+CDOKUi!bFWfnszwmB>n7EqX9HwydOMVWB;2JJxxZpP~ zF^J#|3167tWF5&T+{`Q@z|i0Tg~w!m9#fdyW^bNgh=v9+8@S+MF)k)vMkYCCco^@yY9?RAF)oKzqac1$uvk zG6P+~%fO(+AOVgaMj*MQaW(Vg25Dmy#oViyEzSZZTYxI`Q52`K0~M=Ht{3HHV`YHp zQ3P4QFTDA+8c=;b&=OP&=5Roq#3dt*q9g1^S(qnKb)PT;g9eH%8eA|>@K650$ck>& zqn=6g76YBf5427NMdM{&h{ggD0d!3cnjS7sftsY5fC&>t(-l6LZ32_E1x1iFfag4LGp5?}Gfs4nVg`y#j%M-!3ju{UuVZ3o1PhvS z*}(;?xRRN{f;*U<;DU@S`4GXC90K+c=IL0SfE)I%xh$y0zhmWyw)sQGmjsvXRn+9ii`SWrJ0@!fTd!% z_$Q0=iy|2bc5|haG?SeWSj9RiL6~N+ZI5~;&07o%I)0%4RZwiR5t-~Ls|`~OHs?Gr z3~fcheqYYchhz)bD22s`vVH)KabaU%P(v}QSPZB~7iJV#vC@J&_bvhL-2&8Lj-vRq P1lWQl@{(W;6BX0|hC{qI diff --git a/examples/zips/functions.zip b/examples/zips/functions.zip index 245478d315ba5ece21e932e8031c64b1b562bd1f..c0b6e22b9a49bbb0e32318bae2546215666b1058 100644 GIT binary patch delta 272 zcmbO%Jz1JJz?+$civa{IHdsyM)nq>%BAj|QM0ldD6f;m{au~ZQSO_S*c@n!2Gg$B$ zqXAq{mdT72EV!J@940vVDc5FhW)=~ksT^Q)ql{ou8z*}(@-i~XF~cpLyp-FV8EE`u zM;;llK?iuGCrk2(Pp)F;V`F7NkxJl^W}3%5xt2!}Caef_WcY{GYMuq?Y delta 288 zcmbO%Jz1JJz?+$civa}KxpgPq%Gp5?}GfuRXVg`y#7Uwbo3ju{U2XJ{Xax=4t z02On9luusGYyg*h#B9b2(lIg06ehNDnh-PC5NS?xnAqe<&dt1xOmfU{OD8YoHfIJJ zKlwhl3|O@muk>U|9`VUBynHZm1)#y<6+1K6%CIspEEQ&8kYbPkJDL$lE@`~UIJtpG z5vCYy$UkmrCQo*tu;^q19zmEC*qjfm+3qd`>f-@wRzxvp7T4qlJQ`rdxx8usnQt~X diff --git a/examples/zips/fusionapps.zip b/examples/zips/fusionapps.zip index 69d3c72ae93943816a4130c86c994f8011ea102f..68f962059cdb86522aa8e4cb6c6e1feb01babfcd 100644 GIT binary patch delta 1612 zcmZ{jOGp%P9LHz=5jH9Cg<2~Xg0ctc5EUM}WJY2T z9RkOH20=szZ$%H5GCBkbbx1@EAp$!@U=N5rbW4!_GqdyBardyW`~Q5u|L^bd-=5f> zV21jL8ZV}NvM<_YCh1R`?W^}IDOLbc< zZZjv0qZMXYA6^^09t=2I%%Dq0r#EtM|Kb=%!2q2`SeK~}x&VWNdcxe9#aLFE5u8fb zsp(2_9(o%Su$`7by;jRFe@W$TV3;5KlbfN-zHmO_ zt!CVhIZ;N`HmQ8cM1%S09Sd6V{!VIj%Be2@T>IrvcWzvkbJ*$b;}<4dLXy zdeedx&Fx%U97rsoc?8f(#%$ZUT&rkdYbsQ=tae*j%X~SovS(Msa9L)(?NR3ZPYK<$ zir&Hn+ij^ji?}4__7QJ=Z@AZn#91Vc+Qhq2B#!Gb)m2cQ(47X&GpIcMYC{}P^5CBZ KG@j6FN&F96Gp!B) delta 1618 zcmb7DTSyd97(R1mXLk1P=(g^9wskXGM|am%!`wuT1jCeYB`-!pYEA&AW&te{#*h(daaz?UA%UNRymxACz8_Oo&&<`ItGA62*3%s*du3=J+mUp06b>Mg^)m;O{LsDu2iJuEO32o0H2k3>NgQX*txYD|Bk!WUYORC z3B=sRcPdKpaAN1*Sj-^aT`7_G=HNLRF_BfMpJRx5s5b5Rk`U1Wy6>k71ix`ul&Z)h z3kv;xx=7UW7D14HBqVKc^V}$}vbr|tQXU1Wf6XcnfFkg5cZWcED;$40Eb7!SrCqNb z`j8^}PslZoo9ylzXg>Ta*0Le6i7EsIA3@Yx9aEi;D_;=DqdWjTCdVluCMvnYA$@Pn>o r5`ydH6gA-u=m_OW4vq9rPLXqcw*hd>bgm;&mE*_5)pc~>d#TtTg_Je% diff --git a/examples/zips/goldengate.zip b/examples/zips/goldengate.zip index ac10d7e77be133b9683f588ccb049859712ceaec..4a4c9a6fbe7cb9e06edcf0a77101ecdb54fe0d44 100644 GIT binary patch delta 703 zcmZ3Zxki&Wz?+$civa{IHdsyM)lxYfBAj{_h)XND85mh!GBYr+)B|Nv)J^u}vS)`X zoZQbP#SGLtc@38vSPUq>`6t&DMotl+HV%-nlYg;Tz@#QyvhD#Z_vBKYEXON4`2r6s zhEYFx5JtK29%SN1a^vJ5tfm+m0@-X}7Hpovwuu>R!w*)~$$4B{y!xRboD9t9&UIiy zXlZ6DVFGEH7;OwQX5&9m>N8U!nr2QPF(~HFJ49l1|3v@*%=tr hP&~IEp*5e03*k8AV9WzrQOO6gVqya~Oi7!F8UTDBvZVk3 delta 707 zcmZ3Zxki&Wz?+$civa}KxpgP!xYIcMn``9-z zgEUNxwnwvT;yyQ+shhbOr!aCN{1L4>`JJFR7pBRaEC@YeEC-o*8JXmm;rb?v2v~sJ zGPzMmOjQIJCLEwp2|ssu!vj-B1_l!*1_oIM32`G`J0;yVYC>M zX08ddQx^fw5V)g}O+J^YdVdBp1H&9) zbZ5D+LG_BDo17;g&1Ay`akMx>Qj8Ps+sSunZRl;$&ckI}_n10p1w6-eTTwV0$LUd0??-;wgkmT}BpWge{YE1c26v@J{|O%!)Pw@^(c%KwOzIa$`1HN_Y$k4I7KB+= zEM_pXHkY&bG4e7p$uYx&V)Aq;Yfu18o+vM)0JJ(B9Dh(kjX?s+5@2}i7|1aBp{y=g z@kSXLu$v6zq?tB?gf%9Y%8A0v0ZVO=muBi>n(QdA%Bde3!U_)M$uNCV3erq3z><^y z2?()4Wr0orYmJiu%Cb%tl$M+v$0o{wq5A?*-j59`uZOOC4bV;XoIs0BP;`Pl$Gely z^$rsQ!z@k)1~;hZ7=d0~()b#r!xzN|AcNd_f!0`}_&G;fnrSmg*ktlvX-O0vAU`V$ z0;RC|`7hAVjbO>i_KJ|Of(1vUtTa=T2-rjYvcf1vg2JLr6f7mDgc=rLA3dDdZO{qy vku?VcgENYc-oSJj!kiD*utp=|kqyw#RzOV(C>lOVfUVJ!;R9<3Qc?o|D$5NY delta 1035 zcmZva&ubG=5XX1lCfn|h*X-KFwt2hhOU06c(N@KSiAXdNr7ESQNUc;4dh*9#kW2L> zin7e1pce}kdhsARi6kmsdg(#%W)b`YgnDR+Cw=?6Z#TQThj*Bn?`OUGsd$qj6BJflzK?~C`ytW_yh;Q%^t8O0}N-0{F5e9t*{24tJ zrmACCWuvbF?558pQA_G#SpQz#M182|*@{TPm+S}Mkhfe-0KD#HQPj5OM{;2MVxkOs zT4Z@i-$T4^+AaarO?+&jsY!~MJs5HqT?)w!<&99BPLiM5QQdcY18Lzx*}TVLu88%2 z;lFdy*oy~WA}phV5(!uH72gj0q7FCOEfB~M!fxTJY3>wi#2IHBxwf+Ls=b3GNiihp zf;7sHDYN(WN(U^GhkN5EIf~VDlrce2IR!Quv*#PN`jy7f`?nXG0aWy}iUfU5`$gcY zBYiD7V#XzCN)56(Xt|E)Kz&Emz0Kx2b6_zWhhvVeYh3h=4vXoyfO`&}$w0v5($Ctm z&IDya=gn^sg1UaV1nVRxIATj^)#NR9Tq;z&1%5Zw*k)ULp(VGZU@oBgj2KfaVViZj zX$4sm3XU2>zP-Ek6&P}DP?Ao>#_U9*DdoWbu$^I!ZDCVm|6X)aKE@GBWCEXPo}Jr- t2Q)sUe;Q|m%UxAxzn2wr^}~BI{g}C`Fjwbet{(P_4A?5}Uu}M3@-H>W%hmt@ diff --git a/examples/zips/id6.zip b/examples/zips/id6.zip index 263abb5544c8d88626f711c479cbddeef8615b00..5e72a42d95f82a2a86d06e12cae6fd1f285ac581 100644 GIT binary patch delta 241 zcmaFO{+gXPz?+$civa{IHdsyMRaQA2BAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI z+l+?nAca6YS(s@HHrL7G7V$YNjsG8vXMx-(2(z^nvQ>;O`{wkgop94M>B#K0hiqSy{7np%;VTac4l cte=@;rXS?$=;G_DmzxqA!pZli&5xsfC%h8V)+CiZOMWn_|LhFdWC3X>r-P}Ag0W*J4GLE&qg0)5RH z85p#f7#PGDBtY(90CE|YG`ce|Opa!hWMgH3X;1)ZFi`VA~OI0 diff --git a/examples/zips/identity.zip b/examples/zips/identity.zip index c373c3c6df7eb9b701be82cb7715a61f87d48196..8872aefb6d40259fdfd0c7d8dfb9cb919de0ddc5 100644 GIT binary patch delta 1525 zcmZ8fYeVx z%yWAsaGN`zV_=i1Tmr$=tT9-ryPo%lQy!m0jeD+PgA@&ZXH+suk*&eJL8`uLekNEx zu~tiNJXLL(UZy;<E?F&YrZpN{^agZs>^uN2AKe^azd@NuU^ zq?R2iVF5goFI^d?@`stt_x9MDR%-DQBa{o}ejC(;Qx!Iew`n~>%0j<<&?f&5oWg14 zlU_8)ZUjOwx!fQMT)bdc*TsQCTG2q`J5+)x4#AKwFG2!$m@X8#@E`nj3Rl%}I z_HUh^w$eynXe9L=M+nud5O2tg#v%kC%VkEoiVTrr8`e&&el<=vJfmND-lt9k7hKBo zvR=*r;l8>M?9^JJF5nQGF)lSoxWOWx^C0@|a2ElNV2(tyIM_Z0=qJ!V0 dgA>(FPx|0+tUxSg>1(N@XDM`s1o%R%_#cYAw5R|8 delta 1700 zcmZ`&OH5Ni6rJ}Th0+$>+H?qKmMhFYtkoZAepe_h1@q>vUyl)J;tbr8#rYx#ylcGk$9P zRNVG0LX-wczZh+9f1E3(OwYBJ>$!fvO#lQhrdJRM;80*yCr`k;S+xp?Rjzk3<}6pR z&^Ko*CxQJtiWF@0vQFkUX9g53G?b|!b=X_DmV$>1t2wO@l?ay9k|`X_@zTSQoDx~) zbzUI_lk-o=GUJ-C%y-Q$E|yM)H|l+){;$z)>uadQSN&62qAz8m0^*k`zsYD5#!U(q zvL*!O!dhD$1&3{`WU$v%Nx>=8FM-gftW^}WBza{26JnU2YCj;;XLD&@I6dz^Vb3@U z!tB&nGW&xopMuWpO5O-LHT5o@5JeR%QjbtF?l+lD$Bwji_K^@(CL6x$4hR0k-OR^vyh8|w{%Bp1)E7T3 zwiAu(J`sC87ChxkQSda$c~);y%@pi=2ZvAzN|J6Pg1>0^j7q?Ro?`4TQ!4}_r1gt@ zRTLa0V!z+c963B9w}8(SnQ@)R#GLd1sZ5PqO3nBV-0o###6W$*lb=P<(aj?yG6wo$ zNta!P+GrICQ5uGDUQf<*4yaFzMks^f*tCRmKF1WvnQtrKuowDF122W)48-BlfKxG* zDy0(g4R%yR@yH5OwRo`DZ0u@n4|X0T`=!<_nKb<-665k`^>QkEQa3hG zp1hw=#Uj7iD4pRKdPAi7x6>bg&w}1_DJaJLK@;J`_zcPbWJ|#kJC{gKmW=U{YLn3) zU20GogXz4CTDJu_*;rd@Wz^o3i2Q<8lGD?B9rjOF5|4#O5%eCzE68OuOYIWT(B9Q~ z>=2unyiDs{$80^gc`rn|8FK)$f^m`;5c#udWXF2~>>cy^ME+#DbaXLQ7di62FQ4zZ zz}^hlOJ?j{aRSAvJMu4U%(G@#30YF3|E6)_VZpWmXty&4Asa(Hy@r@SthE60a>tH3FZTb=0M`!-+kj&1{5|y6Fbx3rW=aQ_?NKa)x`T-dbUFS9d+bOvlPG! NFyk>dHFd2#^ABUDX-fbA diff --git a/examples/zips/identity_data_plane.zip b/examples/zips/identity_data_plane.zip index f87c33182620f5c2d6c54e60b58d31766d7800f5..862d8d58ab9aaeea8ae6205d16b3be9d1092aa7c 100644 GIT binary patch delta 222 zcmbQkKZl<;z?+$civa{IHdsyMHC8ztBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0vy zVP)(oVL8w>VvGz7+6)pv76Sv2 l$*`pH7vtnOHu=fX%mQo(Jz!HE*`%4+n1QkuV57>|)c_t`D_#Hq diff --git a/examples/zips/identity_domains.zip b/examples/zips/identity_domains.zip index 51db90f61531bcc88f52596173abf8657697f9b3..846bf1d0decfecb12fab82dc5992b77255a4127d 100644 GIT binary patch delta 2454 zcmZWq3s6*57(RPI}876(K`kqH;mMvG9KWXw=#P=ug} zPKK445Gn768_G(~G>$XXlx4z%HRC8{I+i9m&1gDVXaB=Jch9mjJ3I6J|M&gh|G0PC z?h9@A1#P}Xsq#RMPtwqmR_!x$zbW+Ha)Eqz?baZL>Xs5ARSk(c^8CoJ+L4Fno3h*- ziR5eBY5G#3bb$S(DGZ!0-9*8o1*-TYiKM~A@uPayh9U?)9q>xcchf2k-57<1yzz-5*T+^%VdDYd43P$ zW#NK^x81!#_^pAouLOkR-4Tk!-l|Z1EYF8&*z7r_Y;{{E(ebcb2Q)CRN#1c~(|IK{ul>9FQZw=Q*of?D56L-D!?P#EM=cSg#!t@kDnp-e*+f z4JNNApMX1M;ndTjuuZ^A2aWi0>8$9~h$wigAR2foP|^)`m|9jIANd2h)L+#I%|-r> zw+A8~QRnL?-LUs?FxK~LB?1^p?-zwB570_B7@d58T-~FIK7aC}(UDHVIk{0!9A*#3 z7kf3591t!izjo|fQvWu&#AuFS(nFC?N(@d#z(V(FQBj8f>I=fP)?lX~2$};dH4{Dv zeZL=}Fi!B!Qy^G6>d85H@kq-AB9^Zc2lF|CaUq#N5bo2@8mOHNVXq0~?)3*ta$wH$ zGf}t|4WS#^PrJI4-#D)GQN)t@Eaapj$3$T`fp`efM7{FD+Cq8f(CLMBIztsPeK-@L zWX|}-d@#QKWCW*INzPzw16cbg&&SCc7(Y5F3OApF=;WZEM1)GK54@WA4_T5*gHSA2 zY0?UW?L9#pVf~gWT?Luxm=>YM93f>hAtZCj4@VB(P9n*%I)vi5WdE(8uFnu%%?|X4 z!r7M~dbQdePxp9nl3!;o()JL^Yu*S&agx2|K&rKRzcZ$mIM9E&ok;GOk(}dNuz!H; zVh==b3>Z1$BeL;>)eutW`nwXfL!w};oso6Nc|$sm{BN%)bk{*Rp-<0+?A@Y}f4~uH zZ4Pmjy++*LYXDxr86S=pZ6i-;6NI+f3|y#rR1`M1Kq$E?&`A^4jMkWUc9As~lZQ8g zo7(zTa!@8t>P^!1#&<#LagN?e3WmAr40#_Nf@u92wi^hw6MGNdgV4`5)-f2ko0YXF zfvoL)J^Ab83>-fU7hPkV^~O1LX^(E4{DLUBZRe4+#)HGKf!j7;$0xZxK(Ll3&APky@%0s{)GMsc)8Uz)# zivy(2gqb`kErS!d73ePPV(FmulNJinfg_h_;WzqOVo+nSQCg34 zt{8mgT&F^~)fy)T^Q=L%vP(Nh2zL1NP|7~vMM8{E&^al(GCWxf-VG0=Xudv04320> zqrr>Y9AZ%aQ8|Stua`JKTVFvdpJXJ6m2)zisJeAWq8Qw|V;)wz)+PxtciR<}5k|Ly zyyYlrW(Zm3%XK?Lxf+*QDB+u2mnqkUrrBcfpQcomPQDOVqco478h@sUdudBWM9k8f zQ8>9N8>QZhH!h>*`>MnZ@%BA-wZUs@`L9)_sVYLwbC;YGxu`nHlcR1Eoy5}_lERx& z7iciIHeQhB+_jfcwYF@55aWLT;FKqEUXsaFn_7~Fm1?alb+=g zTRv64Rv@mCA6s~o4)@;*X$^_Hn};mzmlo&QznF4%=1OpN-q&;>7h_{ZOM|h$1R7M# z1hsgb+^Uv%HC!BbvMt!pyP%yNU5lgPK-U-uv2#~i!Z@>Ml28%qtyo(Aq5V0$D~*m2 z8wv29If0FmBRij}xk66}=X3`t0Ba6A3M!x=2dcsqfOIYQIv>pSboeU(@dL;19R-ET zQH0D;0Fr%Bq3@g$;2gZ&767JA(AOjdV5JTf9_xKajv#^vZYB3L%Um}iUGr&!kirf( zAFRGjfbJpazp9|yYDT)ylN#>Paiai2KI1W#xoyGp-&(y)4Ji+7xq5UH^#7-ZkeLcf zwLfA4b-^+WGKRFX%-sNVnBL9`Vo3KWDJdcr95$E!=_Cx~MD*cq0Y5sB#u9JPh7bHQaQR0&pV*0bOMQvUU)|?`x00 z3KNZi2~AgEHl)HtL%IIdMi~Z2(9p^)D7i}pn_&-v^ zld@ZTV45!+ghVPP+Ej-9doSrlf!r^enS8ze+CJDsrqA%Vec%%?6RBABibJJ-HgJCb xrOT<@%{6vTR}_Dj7-49Ick#e)xTC--a1!BP*@dpGpH|7`<-y7%#gT-7&Jt{FMpj{A0?!EF-|i_hm2l z)^FfWKHci{z)Dt<`;zs8%PT`BRhQH|TLf_}n#bJDm)rTWz(DHYOpz6`%K~1A=>D)g zwDYIx)JFx8K2tq!TDCS)>wZ*G5<=%}~Le_7D^3(vx` z?prBmdOq9~9kXH1?@I23Lbcw!&eoGfd9`h~HuFt?!j(R)Iw&>B+CNeGVM}rhM@e60 zeR222S7KF%GQv|TMbgwhrYt=Ubo1dMxHf)#O{e-iMZ0-7gm7+F0Cb z&z))bWRsoeg|4K(Hdi8d#e8JFY~$Qe+PdUh@sDpG6ch`dJN$I*WBl{<*NaC_Uc7n| z?Xb)8y!jj3S+J7JbUnoRK9Y6axYXkHAj%Q3}t%3pe zkJbqKAFYyFE5_1zZCe{l+@0@Mxew(hWh^VWm%>vzYqr6&?~WX{(YxkMS-06MH*Ze= zXQz!<_8(4h4d;Joy0s%X+4$MdGlDrU^=B6Ro)xCbIZHL1RWI~V{cJ1m68SlTJEOZy zH#l`1yUjGcA!t{VwwdMUz-^!JxM%Rw{b0Y_j^f*5L=KG-B zCj!hr9H87c*`3uAoc(|qY;rs6dTu1Si7_THsg2WJ7Hs{6DJ!h15A+uNYO3k7tM2lcJnbZFeo!f09gzSKqkYI#_P2bdd!pEG`)2>geL@s+XG*8Ui(O9lHWsG#f}i0D>3XSpWb4 delta 1100 zcmey(e}$hnz?+$civa}KxpgP-%Z;L(|~pp9MsYoAZJ z;NaxW-1Xqy?)&#+w{ttsUDF$*BfCdje!+d~|3z-^|1CG3A)zP2)PH!LnZn$9R=fG$ zsym%;H#P=MxE*PbaWO@rEb6XajCbS4qXL&KT$uAZ3l{(PT592QdFG@=E)Lh;e~DV# zBYiSmM7==bbHtjNVn#dl{Dt*W~r-rq=tohxcV$Oyijz3v!UYl%gxi%yYF<> z>K>{0nJd*;shhL^@7F+g3 z{PMgf(T74;^WJ}{QklaMyMXWcn}xF{m3th|@)cN-JI(*)-Om>nnEp{aad*kJmmP^R zYPW>H-{gLH!cBB@{-xZr({AmW!#KtJ=j~!u{;eO^?{u7#Eo^vPd|HC*o`hp(-IeMe z=o+sJ(((B-JI!_ZP4>n0&N&+4`@h&prw8dU%-o_Go-@r$)GTQQ@47~5kvxYb6*BB= zg{9>eS6@oonk~tFv2bNhq*vYkRnNWE_FafSGTrar%WwPH_V*{eyz*A&?P_oRrIX`c z9yb1v`mOhRvGuDYrpn!`L=+iTyR6c2=v#L+TJP1Dhqu38-7rVE*7@C!%;SzH_LcR% zsXrh1nAhsY!oS@vFU9`nzswI%Zdu+~V08FFZtI@6tK@dFiTs@sF?aDqtB`-ozVd^z zAUsb^e!^@C%W#ubSl070GRZN+Gw9?jHcL>xnq0^(1J0fk*rg{wV3QOKa&>g^b=AvF z2@PQd=RA-KMT|VkAOXth42(d$r12&r!{m1?Vv~Qe@xaUk>$t`IqIoV*1s_nEGKvl> UR)~&hc44rNtLzGFCTt)R0hJEH&;S4c diff --git a/examples/zips/jms.zip b/examples/zips/jms.zip index da6276ac43ba06e4c8dc454c48594a900cfb9fe4..04db7668a1144976a71d8dc2f78b4ae97f31a13c 100644 GIT binary patch delta 1732 zcmZuxT}V@582)y?ZO$E!+d6J;oy~cUo6c=sn3+F`FoURMsiaiiXhK;TVnLJ;rFqkZ zNcxdjNmu-sgGV=Y5~=JIk%h ztz2V0G~0pvseDpB%oT**H}l6o;P3g1EHIgWK>*BGa8-vx3BCZ;2C_3!;NhX|5Ytgl zpprbokEbUCM@{5mQ*NmdcRyFdE#-Dn+&Ly{#LY02D(n4aRv4nUWJwrt2dw+lzBjG! zs9uk|%!r$FSF1RiXD`Jy_-c%}N#7n7x8W;fGSv;CpZ1+bbUC|QMPFcVP*n$)G~)WW zW)-)<%~4#3ZNCxs$=0ag&;sY5uFD*wSTU<{ObBp zyZ(3bZcbhG$GC?UI?4T`<#PG{1zX*mf#E$UHT zi~1`+V#?I)y>`V_p+By@CeFmao`9$l6)QZ-^kl*QP_wP&BP(4q|hK_@nlVttdc6-B}z{Zc=%6axS! zSW8S~$bE89x7CXrg_g~|$k4q70_1E8M%4B~*VZQrFl?vg-)?)_@I<4kSb&#Opsr$% z;*8YJL5~NPvskRJAY6Zf)ye zSb!A{1(d53c!6s!S8A@X5|0)^VB`Cb$2dS}0iafA>#E8Mp;sZjt#!Q22Rv0B59M#U z@YC3OPL6_!E3VRFjO${QJOK3vOVCVQ7a?H<$BxX)XRialZOe3CuMyTREmZBW*T)2= z&WldQB*g)V3+K(0`$nW-+DgeW-|_Hm@)U0M1-A<6S`A`SOegiSP=JR7dC;;nG2(lA zc66u;i(SX@SLwvw5L%7qTfM`uDW I6D5WJ0kh20?EnA( delta 1794 zcmaJ=O-K}B82;v)b={qv-PvV-+;x6*+#faF%v|W#L=!1OG*BWhDrO~E2zC&<7(wBs zTE8TP><~g&6vi4w)TKj(DRdM;s6!}Hbn7U6^UcmTJI&f226o=(dEV!J-gmb8w)(u? zXIKXZv|p(wo%O~`n+0aLMPSg99CFhFYKt`$RLWTlMsu;F9NbFACm`kS zhh}x~PhZ9cZWoRj;M^@?Mh7Z^P8;xUpoao?0-to?fT(-YgVG0D6}u>~O6p|XAsmBC zixoYosHdfkiVnt8kU5%=^&kqh*5t#Kz$?>C8Qp{>U>OG-LC-l34R9rdP$)9RnfqDc zI&|j~vVvYi9~y&p!W=ZauER?@A;=%MDUb6fslE4n3Kopo6{TxMx1(>!vL@tscGaDo zv~|ob(uOa$&+GjfB5k&QGZB5;+NJ%7^fO)tDlClzrPW65ywIR3*=|rqcT_xa%i{AwMBXs|BCX@^ZYrsQZ`ggJsh z^KqYHjC5PWrS%d_4x_O|w78=a2@y6s^O%G|w>fIEIO=r~!e&inanWZrBK%-r>h}~? zETUgIBI*~sW;A3>Vx~`tPhV#MILiW%%=7SHuyCWsljnJaD}y6f_g}kMkds7$Xsi|? z^b**&>O^tRFED1@z#Q1q^FfQ}Spkb4$%D=Xec&1Uwqk}ckc!XyynUaN)D|P24)I~LpBd|K?C7zMc)&~lAXM!m8oj)}g1;}| z#L)J N8g19|gxZ=;{RP2uP*wl{ diff --git a/examples/zips/kms.zip b/examples/zips/kms.zip index e7d45cd460cc985e7d90a07f749ac878eb8c450e..82c241ce045b3cdb91f2694f6e4b7ff8d4d11aaf 100644 GIT binary patch delta 788 zcmaE2{luC#z?+$civa{IHdsyMRaQA2BAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI z?;LvUAca7@S%-5GBQr?wB9}f~ke$1e87#P*Q3oz~i%}k;GEGz$E;vi{2}E#?kS1L4 zjL>u@u=YPpaP5=zna_a5{xNIA6&kRpLljQtGlC1A;kyMEoEV}76WiDdwYpIpZs6uE z;sT7^$lh8hXb96V`JvzruxuDKj`Cv{4hSZA0+=86cV*Tt~ zAWp5+D@h9tL9_3cq%^ZE55r_0W=SNcD1z) zz>d5w{Knz{P=hnjZW$B})%=rHWt3r#1S_`U-sH{-^ulT&7C})wQE0Lw&{fFc*eEN_ z{6v^x@BE$5PGRa~1{>VLZv+=S$bSoBo4u$Z zOmK3!=nk;L1Wrwu*yahG(;*67*>&N9mF!O-_IwmZxK%|&fRUGxNsbvFijyx&7%~Gx zX0m~_4A@{E8EIyB28PM&gv8lc8BnAiN=h@&Vq}=aCW$1Y0Q6qCtH;T@O~3$WWn^Fw zV~_x{7#M&|h9!;fnI;QJ%c2X#^E*3$3g0oID}Kc>*-;Wz@t*fryYqobMv;SoK@!E} zBV3c`ODe!j1_#S3prhOPCLfnph6#f$Y-HK{Z645dY(Pt;QOuYlIQhPe5==4Jj9F6B z%>6O_Dv2T0vy zLmmfqkU}8dT)|Vr$P5z9VTpnXPCmo!1X0 zIN67UnesP$p`|y5MFQ4`Yef&fkB6r zfkA6>D8JF<6~cTl6<`Kn|bQH2MOm^f^n%vIM57Pm5!F~a0 zW^Y!AXZ{oDGp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8c? z$KuEiQV7J8kFoSKgT#WEW8q@kn2&~+V(m;P zz+xf17BI2RlX*QDxse^v$7KbVJkK?m5v-$^(-tN;`6A~ouvi>B+@+hBu|EMToS5JM zQ@3$>4McA$j~`5I@-Ci!UPdN4W_Y+ve!*wU4DxHBungGLa{|(nllWC9Z(!kJV`V^* zaukqe)@5XvSRgeyfJtm}zkn=?^g2Ol=13;6bb=87g!Za%a zgE+kK@f6c_z(^=$WMFV%kN~n67=TQMC5`bcP#bm8je937&D_ljmaXIEMv?`aC_MQp zeeDWGxdSs56#QH=Y_ z3D%P!Bn~qUY=6B$>$4=F1|6UVEfftZJU|T?z9|6u<`pm4r~oG3$#Zx_U`{X>Q3C)2 C1dSm8 diff --git a/examples/zips/limits.zip b/examples/zips/limits.zip index 58c17587c2400abeb6afb2a8582e653b1c24b046..be2bc423cd73ba560f30c67fa4929bff0cfcda2e 100644 GIT binary patch delta 440 zcmca5d`p-&z?+$civa{IHdsyMRbxLLBAj|QM0lc=6f;m{@_j}W zO&2b>iOqqLo0&xfXaWbwjLGe+CNRm#hgf%lG)xTFhY4-$b!X&dWRhcsTRQnayNLnF z*3t@Y21b^b%nS@H^+3}Cyg|y~=7yj6`@tp*DEW|^fk9$&GKb3u&QH;o7V_-N+^P2S166D;x61X>xs>CGz!Q$_{`9VP|_$;rtaih@C|jxN5gdbuf~A*>8AwN4s5G0{~#WM7sb0 diff --git a/examples/zips/load_balancer.zip b/examples/zips/load_balancer.zip index 4642d30138bbdaf38a14265e6df6bd3e494c5277..3fdaf16aeffcbfbd0618a49743614c33d297136d 100644 GIT binary patch delta 389 zcmexr^wo$rz?+$civa{IHdsyM)nz{&BAj|QM0ld36f;m{@_9iEgpkO@b!=c!Z6Q~% zC{Xd{av^ROZe|t{pb;D(LnfaQu!c!a<`dip(l9a36w{Q6+wEcMHvYBX0~>6?Zw3?F zT*~jm$jiti#|(GhayGNGp5?}Gfs4rVg`y#mS;0X2#HM2XJZ2kSFqWG zg@LL!?_;yz0}K8XF@p=5iTW^dGqZ>Q4dwtDJz0j;8YVe8j&&bM!^AiXEM`yK7g)tAaT&0)W=cpi ztzwuQD4{rc1se|=D+5ec0i^%DXG512BLjmK69a<+g9O+lAeUiDqc;EKLUGB-c9MKB z4PfI=ic2%?7XVBB7Z--P1uXSOOq%JCAW%w$BQylfo{eVT9{yxzU?}2YV9-agM@|T+ L!whVYzoZ%f09sDr diff --git a/examples/zips/log_analytics.zip b/examples/zips/log_analytics.zip index 9171f3496fb5b4294241ead0199c6c034f10e8b7..a29bfce81060acf85232f44cbb7b735a9999cfae 100644 GIT binary patch delta 1934 zcmZuxT}V@582-+8=G@%ev>oT%x9L*LzjUI`Y(MJO=1*!?XkJ8F^n*r*kWf+d1BMY5 zoj!^vDWV7}q(YFQ8?BongOa+5K)Mo*s4lz+5&F(|_MNjc-Nm{1p7(j)_j!MIPvq{2 zT>7>)UY7=>U)^)Rm|mXxq04sgW0y?~J9+Yg`%J}nmt9bw1?ggB@Td%1^^0i*q)2GR$G+t{nc5JN>8Q8 z8nimKj1v8BCH9JbMrTxnafzo!fev_&+TF%JfKE)Yf;^ z{FMiw+YCSjaL|1s2Lc|Re>pxmCbVwbDEMKfu!@fh{*+e)E zpSB8YPOQtVVZ>d+V$_MxhO-$zPg)hPp|>eb2f&gIfS{(ozvA(0u1Dm8iP(x>lxcb~ zP)zI03ka+9-H+f5!@aBqD%g4}bz+jtIAR3Aqp4xIG;Z9)9FfhVoUy;N{~nR4WRSgH zr{UZ!r<`l~8H~faKyD2_s352l{|Q-EmiQ`!An%RiE?Od^`XdPDR#D->h&&*61J4LF z!XO7;j%b&PEI3z&8%a*`hoZ?z`#<&N^399H`wg<++EX2gljK5JHYZu%<8`!NoZ3+7@jw2_NK{e(SbLA|stQ1PJRg3C$jf`|xG>_uEEdhnpdW#)f-BIc08eB1y3^Uph*;m&3_$C8DH zJR4#^v%Nm!s5d8^-1-(Lmr0fx=n2^oNGeC?#iQ{+FC0(cBuEcn`RW?|0ikUl$6?P%l!$E<^D_gQ%e^xG4c+0A)@_<*@Aa(oEz#o!cesL_H@mDrHEP?nFjn~UY^4vVt|)I|S~=;dmKE!&(mj z`DOuc#Dt5N(nsK+7a}o4>78x?Ka^4SMED$oktP9OH-f<@t0yjV=#2u7mze--kD&T@MZFn+rWRE7^+uMg~+ z&X)dS9zwHpt}kUxJ~`1+lrv#ApXw578_4bLq~q~;gqqgTQX6%q`n=K~89L9@ zbSR{$Gk5OnX{@aT_-eCVH+#q(r1)(aFV{8?@K}q0zgL6&YimiayfrD{)ip9shLX7! z$yNcst(7P~t%bV%Hz{X9P~wDigE`kB;HfY`={6I&8#HF$tnRy|n@jO*sw*cU^FKG8 cJ-KuQoay&WTbTH0$0+_(#!KbY!Fknx0V{)?7XSbN diff --git a/examples/zips/logging.zip b/examples/zips/logging.zip index 953862c8e19b49bd0f7ad1b662c7e53a861dde04..6f9d98d8286d715ad9032a56c62976e713483a8b 100644 GIT binary patch delta 1049 zcmccWcGZnHz?+$civa{IHdsyMRcAjPBAj|QM0nx^k%|6n%s|1(SDEY)qEcWX3+70$ z5K!^v8O(mHfBc!pZq{n z4=yDtCd$MKciH5Z97>Z7q*x~VE3k86nyJoj4cC~-?~1C?04xRe6T}6!oCwwRoEsRy zUgDFoKv$O~OlEVw#580nF%cuU zl)p$H#3|baAx;K`?mIzQCSFD+Ic7vql*^cc!gR8OybRdob7Z9_zm$=jd_h(cEG{4m z5$BeZW?IKEd83>#IOHzKicAiclSk1SFE7m$&jwb~FVBghdlyh@9YpGtJU>iI0Tj{P zEpx9iGBGglu`w`603ir40`ZbY1}?B!HxzkLtdUlbW(wwkyTo6C3uYeJ1Jyw3zv)H2@3J6hr_3 delta 963 zcmccWcGZnHz?+$civa}KxpgP zZ8TFS?`DIz3gm>(Y=X=PCrnP@F+f+ng$H5kHy&3eP7$DYIY1tsEG7j}4Km1AN|uS6 znFS%~BVh!0O{+v7#5KHJdT>D}E>UE|3dKy}QftMgAqC9jUO@|VSG^SUhO4#~TF1!C z$Rx)M56a2qGNz!=nS4-A1{?~Jiqex`%1BPm7h&TF4PgZb-DE|1h~zFsY32nC43i6Z z#DEG!*r3udz2{`4nNKi*r6<;j!DL~YZDpmIwV9!^B9mKXyc}1`= zOc%F;G?M}6WDNx!m}*5}fQExo5)6nkNI;na3~wD(xj|Nla_VEaUQte(xdb9R`2iaz z%zZG|10BG8j1Qz)7A6IAgoC^^vlKr_N_z5r9$s|mcS_Pss{|)=E2BESM@gC)mO_Dv2T0xI zZL9(8Aca6YnV0PWFHkIePjs2|37`t&$p=`CCNJj}#5O0e1T%sJCnh?>#5S(ZV&-LJl4FKDcd{|39ms~s0bDX*6Y{yFC$Hnw zo4kWd6h%CiTbj9#kzrz?_GAMNAvRX9yWqOsb4fFwVgkxaPnKpEK$2Aid29dL`8O>Y z85kUx7#NfpB!C`dU;uI%mNcGc2J5ls;)7YH0Mg)Wm_8)}7;NQy3=Fy`8d6y&Z{Rcm JE8fSg1^`WeV)Fn1 delta 378 zcmaDN{zRNNz?+$civa}KxpgP<8mQRvGp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8c? z#OllrQV7JG_poL$b0bUMVYY-z%CH18GJ{M`41kGE-0=V;GWj}_9ZYDl4D(*F*lb3) zvdNzqZ}BoR$uYxSH`$oeju~jB;Lj^|8@p=7UKo04)yJmU6ju4CobAMg|5e1_>aGfdR;5SkkzXb@B#IM-;_oN m6&fgtAG1x~z@?9(cu#bh^a-G1V+@mDuunGNf|$IITMYo7K1B`y diff --git a/examples/zips/management_dashboard.zip b/examples/zips/management_dashboard.zip index 694294d38b6b813c4d0e238e5b032f012feb20fa..5c1c736437057f2729e78d72878d07c6727d0803 100644 GIT binary patch delta 375 zcmcbleMy@)z?+$civa{IHdsyMHBmVoBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI zRXq0WAca7@`2&v|8#l5fGm|x3(v|5ABQr>c11mzXiB**yENH^w1XDS=mgN9QY+|Y{ zOladue@0$LCOKxf`zAXJJ23<8oSYyc12!N=RC@9uVWr74MFn8u3P3}`d3A+5E-^AN zoMmBPP-Tz+d5;0eWmwYqo^7(Bhz?9K*pQDR(o71RKw*W+`K+95tPCi!^+4G!0kG^I u5n-4V*p}B;H$U0}jrCw+U{FV~Wtt#JgJ6)Wql>SrUT#Wg2-MUyqG|xUqhSpI delta 369 zcmcbleMy@)z?+$civa}KxpgP^XdwBTw-Kk zILpGopvoWt@*V?_%dn*J8{^~zVTH-s?3`?@3@|-lv)+hEGpVzHWi>^GQKTAyQpT)c oseK|mFe$K2QInXTnXoZ1Oi*HA&_uCmE)Q746JY_chBcyU0Q;y#%m4rY diff --git a/examples/zips/marketplace.zip b/examples/zips/marketplace.zip index 95f85dae3086e148b157141d8331c03783728ecc..147aa97f1f29547347a623610dd030edc92ef32e 100644 GIT binary patch delta 401 zcmew+{!N@Wz?+$civa{IHdsyM)n-2(BAj|QM0ldT6f;m{@;O!`un9S7LL7!#P(#_8^iyo^k8%m@oQ zIW3ui_D-I_C8GdzOL)tKCqgMq3=D_385m?3B*3m_1d>Y{{TU`Zaw|g>i%quYVgqXc ztAG-UPz?+W0t{~*IhiLja*0poXX0aHWq?@%cI|pDX{HpIEYIZkT*5GEu#w9p_TE_p wG?EW!u`-Gq-m!s=T*o1RWF%NmN`Y6pDNwx`(Cu<4dfu`F^{9d^xWKIj0QqHKLjV8( delta 382 zcmew+{!N@Wz?+$civa}KxpgP5$r76J-yHsx?<tFa z;*)Kd`4BoGhOXt3W-@1j%JNKp%Owo6QvvA0@RkWrgi@Fo7!GkWFvviSWCR+#r12mt iP?Iu>;^h*1?<@jJ@&Q#SqbRQC0NW784Ke)!w;BMlcS0oq diff --git a/examples/zips/media_services.zip b/examples/zips/media_services.zip index dac596d0f4719571905bbcaa245cd1bafbb41e53..de7c5d199a186d4ef3552a6cf5d2c30d16c638de 100644 GIT binary patch delta 944 zcmX@&e#D(Oz?+$civa{IHdsyM)l)egBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI z7G58AkU}8de4RI$kr^a-ipd-<$icjr2`o56+ygH7TwD^OvP;AXE_hkw5JV-jWB^<+ zN>Uf1aviG;T<|07aK6#f2 zKavUskTVKT8mI|G9zibFWXfz}wHC|AwnAH91XDIdCF=4@3;V1 delta 965 zcmX@&e#D(Oz?+$civa}KxpgP<>Z#cBGp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8e& zlGm9Xq!5TV8}rFAF@pppn9SjVVN8o5f`7Pd;DYwt%OQfNMcrV6lO@D{gLS7$BXlp8 z_G08lw(pRTFHFN`G2tzYARQCqePCi6Hzk9GCX0#N!^Aenh);*u_DwPdE*L4r2~l}g z1n#cM0-`&>PDp2Sf-Bs>b_nVL77w_fH>)H>cPVE8T<{F1E<`Xy0HJcRfCv*WBa<96 zJZvZblCfb1hS%h~3Nm2Z1Qnzw7t6{_wioA{tiZ>~#>xPbmIwMS{5!{UwoWDnhLdaz z42ldApcrCc1mY!)dnbR8)r6^40I5x3Q%>#$s@(&$O$|luLe|M2Wu+#|OL0#&;ATa# z1FWxwRq^RVpqZ6GgAGvh^>IvI2y~yUk_^luu%qmzGxAyh6&nLBLv_^6$&T{Ull!E( zk?a6_^N)fwQw}%S6(FDf6cR>K0d|G0cIInOprJ2-hMJ+cqMR4#3dM>2l1N&>hDIw% zGa2wh4MjE(EPDzlDmUZ;+3Xm&!7#MU=Tv96n za>?ZBZ2aiPS<6W?b&JFO*B~c|Vr1b-!xh3n&us%5YlULuHwn0=HJoBd#)6&l*0NrS Y38+U882v^l`f8KCsCe^Q_9!N1pvuWyT>3(V zrKv@g`k^7549rLdfutuMc7$u;W^`ocggXzY(F)mGuwfZo2<02N_AqfXvxorQ%K`Gw znkkVPD6BA9ijNyA zg)mEUN)^8@Faq*`?$SmvYd=I&3!f0Wd5nRR6$BI~%L}q`godEHPafnx9+&FVtAMd2 z&4F&_dZO1v T!5~*h7hhMs+!VMwO$5~dVBMrC delta 599 zcmcbmbW4dhz?+$civa}KxpgP6WHQ7c1*|YVMjQIg<}sBFC&v2Gu-6KmAp>OKzB}_ z&nE*mVjrLM3w;QS^DRfb`5i|d6E~8lLLGGJpOd8H@cim_XW3mjnMYS;zPjSE|~=9ei@ XzX=lqgDi@1=Qx3SRKP}Y@Tma+4M1_; delta 569 zcmZ1{vrdLLz?+$civa}KxpgPo0UN*MG4V1o$uYwXnViXO!3=cuWLsVtd7yRSVXM~sGG%07Fkxa~kY$hn1q1_- z%dn);Z?Yqg_#`fFRaOR&4$J^SHFzSAG}A4{$q#wO_!Dyyi*k$gLqi}sL3SyC?7Hyx znCe~@1_oweK&qhFrOyP?IQcoV5F0`dI5=W>rJ20g!Lt3l!uEt65)SqPl#qei!oVQF v@Yd0T17yy`1}-E^zz!>K;I5AW2EZW>1_m`0hs}d(;h3Dj!w(KP4n8#iI}Bi) diff --git a/examples/zips/mysql.zip b/examples/zips/mysql.zip index f0581481d21e0a9fed824a2a005ffa64b78decbf..b8fe7875893abbb0e08931a22f2cdf427f09ba05 100644 GIT binary patch delta 561 zcmZ2tyu_F{z?+$civa{IHdsyMRaH41BAj{_h)XND85mh!GBYr+)B|Nv)J#>6bl5>U zL4sV|Gg&y{ZkYUl(HtxVbOgvyuySiAJGk-&rt=UpmI&x#DEum50#|4tIGu%?nMDNX zdJd59Ca>W)hDlC-#=n≦BJq4<@m(+l!Hxkx7mj;h-y`#vor#J})LVxlW7??4THN zX(msG$(7=AP$?O(@J^ucEQZO~#8pv*WhJDU&aq6kl8{92Nna0Z>|;bV&q0r zKY0VEIfe#qE<3n}0Iu`QAX6rW>7uKfxZDJ$Y~!PEU{#ZEv*^IYHuJI0WZ@J6x{Cwk zvdIC$#xSYLUBX*A5pE7s5J}ER%*#v7(GLybWMD@3KrtWOqRs30rnB%eGRZN+wNJhx zY7EjcSwT_;>|c9HX(msG$uW}hP+_sj3Sw-EKsSVgg9%C~GDtvK0t{~*FEcVsKESEM z#tOC`Zq{0HX=Xhpkd)Hox8gj=27>L9mXKz0Wt;3KCI@o@*dD9$wA?$)3=H4785rcC z_Aml%ThcgW+jo^L&1W$qB*=2r00S;0~BBFxf%^ i?f?alM~if4{%&PqV9@48cfbpQ$x|g%!LF^7R09ALE^6Qa diff --git a/examples/zips/network_firewall.zip b/examples/zips/network_firewall.zip index 6e4599c4a05d728f88143427dd72c84d7e04d0f6..ec846c11a25fbfc5934ea544e92965a3e80c8f37 100644 GIT binary patch delta 317 zcmcbsd{>z_z?+$civa{IHdsyMHDEs-BAj|QM0nx`5l)17q6b1;iW#KxtUp);sCu(9 z<2^Qz*kl$CM>J)VGdUnSLF#sJ#4v-^ZRE9sX`cLzcMmr+iwMwu4v-5bi}P5*HM+C(qaPsDAMf$aOHwP%fe4b wAGcoxv|5~zfk9(3ub}qiJG=sHtPCic{tHMmi}5l{ER>#XA;<@o+AgRD09cS+DgXcg delta 307 zcmcbsd{>z_z?+$civa}KxpgP<8nD~)Gp5?}Gfvzf!if-1^gxJ9F@sc|^#_XpRc}^i zyvGI-o6N%Dh^B0ECI>_(NZk&O7-q0KWnN3T=44)fMs8*n5ugJ&Ku(w}&SM9YoE*cm zhnJB_jv4Nd$@}^2n1NMU5wdh%UvUW7D4_dhXd<`iy*$#Pr@lWoK$VcHdeUJdVEZ4e^F&cHBR zf`P%40Z0G=BM>iXya?05Br)iR zpIpf8iJ{>hcRXB!3y%&v*py;nXPDsRy~2Ar5mu%Jpqnu9Ry0iQW*bH=E?!0^IcB(q z$=YJh%s|IX{wOA+0CZsZsepxTE{qHeUQ7%O8VnL(zW})mOBy2?CL2m93I@44y7;>4 z<)(y&urh$P7K+J$T{T-=n(03yP?0GITn=Vz?`ne(A$A6a*+3ILQH;%D0_q4ral?_R znxZR#c1i#()IQA(*P3?u>G{!2fT>Cq)lx>^$Q+VzqUbi@{_;RC2pX+__^Y7#}wN(?}L z)r;U8Mh%r!-&exNH|Hmd6OA}=dB^ExpR1J=HBUoP7Brq$wTPP-Y0Z&~UoX6>nai+-<8=bj);$`Q@9Ak{riiW! zE9$Qbm2v-AwUFmdc%?xB-Ll-Lb_NDcsPCP8ZpQ4+T*yDhIpR!tSw?+4WeraqZf{hG z_VLS5Zi3vVa!zlGE9TR$#to`8p?E(2>|UejumV2h4vXiUS|1^NJQtC{b^ep3h|ioJ zvw+JyU=lt)G}Ws>x4Lw~}$z|_P zeTkQOGc`}4Q_xXL;f6iil+NBA$i5>2L_BC_P)hS;eCvj){oq?++F&5awu zt2C^qs0?Z{+(HWc_vqGB$lh#1iPiB0LfBk87JRxg)bg~6Uv>&3Aui3 z0=}5_zHrlJ2Oo#Vb;?8dbqeZ9d4FrcR zlGTcn)QSvcYk69X1VS2b!nQPcg9dc5Igm6DV-hzXDG@Ast#8 z%qu1Pa}cvnu>$z8GtghQKEL!ZbQ6h35TC^8IvYlt&`5U>DGjdQ|9hWu953%YKZ;6{ zOzRo}Xwl=WAQ9#NOv{=KZT463B8b6(h@o4#=p1AvvjTHieJ(oy@w+A0*SM3RKOu1w zfyz3uOUC@(3?RIb5-BGf-pBD5RTu| zAc-kJ__ULuBMZIp_~%Y-vV`#9A^==%)sW^udftH>C0p>KCg6)VN+SIM2bk7oAOI+y z)yL4^EC#N_mE!${D0`g0UINhyb)fGEY^@A!UdlyVxpgDcac*Vk#id>#ywlpGjca5F z@(fP1tPrJ{Neyx+-Mbk&z8o^}qb)HH1m`padIqsz2A|AKiQpa{g=TLSpEAHTK507h z1dseyFh%7`aD%J8)lw(wC9xVu*$X0oeeUJ`Yqi^$|5tr;a{9(-cE&KDX09z-O lkk`QD$Z;bbdRlkgO~bQyuw6SQ3QQ_bzDMN+9U*r;J?l3wCucZy z>XvzpKoWgnuPG9vbmdawPF)sFyj_u{NUW(^Athd{IzkiEHkV3=-J36|b!N;mOyr4@ zHqvGygT{>yR61z{^l@3b0{)*e+EPrb7elL^k-%wYelLXP8nNkg%(Ck(%^{7MCJ%pQV^#Pkn7kr->Jws}+f+>>X0# zf$aS%8R^unB~oZdSFuVja~8T?VMhhM5#c(Z_B%|Hu?z<6GzLG=5|R$P9c3PkK$EE& z1&5zgi=;-0X?m)T!=9~3JZ29h-m!m3k^c?JP$X{9&|=Xb!97wvAP>>uw9TvTCu6m`v& zmNinQyk(?narB8e=K$^ag4GJS{R+TqAm?nC-|g zV2Y@!e8~-sWJo=yW->adeSKkePq#%rtqA0~S|)LhQvJzP5ie7ZCQj%L887W{y8aER z>_xpzLpYt)JA&cSQ$2OLcvH@ZS~{hz(e6bS)LgCf%JrH6@cdenM&{S?>cHzXTm6;% zRXAyMDmu>^18-E0>3)boCB&%%@6OeOF45WOo;!w+Z#fE4rrV0j%u!kmF+JMQOG95A zfvQW$;kKYBM<6ST7p+1bV*fu2fz|(8BzROuzkjQ;3nM1u266sm+TeFF*@kqZdZr-} zex?@+SE5Mo>j?%F->2d5&OP|HEgf%TgBE~H4$nNtUljL$gi|@fm(6s@AuFdX8FT+1 zlhFp;=`v>Sxq#(6eq>()pqZo@irN)P?}yjRs&TS2v6%dn~AQ$cj2oMzX2M z&}WWAp(aK`OywM$yWxi!IT9>z*_HN!>@cHR&aZpQn=$t*p=jbBYzu8VlDvN_N@tjf*-ruIOg zDis4JD#4a?ESffBu%$Wx7IR=eu_A{7DLm=$Cj%gEo+A^r3_w&fC>ft9J~0S|(=>F; zX+@6)6FGT2hez&bW1nVW$z!?ZLyL(#TTW4_nKa_2+OkNfpx4B(NULV-=vEdAM+c#i zS%wu~>w`kwGE$5`nw%5_;YB|buCh4YFL|jspOnt_(c5CX-LNU<#&NtRqxd08=VoZ4 z1(WueAST{!C~RMe1+zr#scTlgR<$_(DT$+f8beSq632)x!PQCJ{GSg%VYhgkfSwKT z%U! zg_y`TR?_DZFI-{YiY>Sxk4;6AJ0_hSYP>)@=LE0$^Q{D(Ef2enk1QSS=ke2Oz_v=@ zuVWjzzg?rRkPhr>@h3=lyN-nLr(G$~FF5`^i%WZ@SO@m3({(uYrU>ZimR@yCkLYs9 z4TZmHa3(4EX2pA2wv$lt{~>_lPiQ$k+MYei0r+wH%?LmdH{LnE@NRvu>yQtB1ml`8 zyv4Y8dsD+6&Uj>?(%iP(mH28_hXRnup|_DbWQ&l#(@Z~+^xPJaH2&*CDc?GTjX=Vv w8#&o5M2jDA<ksrj1Xb z2v7qD$iT@@*o@dgCIazhS@xAo%pk#&oF>HSR^+mV>rUo!XW~Y3>*V{4hQyg-!ejwA zrI<;B8SI96ti~|G$v0THaKfEDF-#98v9a5ek(ZH4ju{?6lehC2GXwoH*_&5J0qB)* zP{6@}D1!u)DZud7(UV~^AHO(9Xb39#}5JSUhHVe20E_MxOuqmco#xTLj`CMB#5mtt2qnj{ssS!-=#(OK7!1}wGP0*E1 ze#C4IQ@2@##hr^gc%_*-*d}Z8%D@Z*J6NRNyrUoJSaEg+1{o9w nUuT=#!mEs7&Pkv-dpIY1@hM=sOqWlZNrVe1rvui;ET9Ge>+x74 diff --git a/examples/zips/notifications.zip b/examples/zips/notifications.zip index e9cfacc3f834c5417ae0ca4acaf14120fab9debe..80800fc2e9297315a895c4c538b3bbf9bc3249c0 100644 GIT binary patch delta 832 zcmexv{N0#0z?+$civa{IHdsyM)nz{&BAj|QM0ld36f;m{@_h~~gpdfQ2v8vhNa`OgG#C&)Q)n{!z_;O3y)JaMZXOm5>ZCWyWF*sWn=lNC6& zA^Fyi%?u{9xtq;{k(ZH4jv4N%$w4C4%s`tbCyI)R!$rfv!3rf*Chrx|n7o09mm@TU zl>w?)1{^+f#ig0nGfWN;SDXAmTmV^WlB6`#FJ_Poe@S9`v0h0UhUP+`l6+RM=D9-R zYzU(jfRPkl!Wi58jgf(&fR%wkpFslb79f{lNnmKdvVs^Jrbin@rI{poVDgi7nK=>WK!V~GP(?d0 zRD}X8D8OD>!a3{i3!t+uu`n=bpg1doA8w?dC_MbYnr`YC&shZYuK-Y^DvG8}f?!Sm k#Dr07x%q@~j~P(06%zx40*Z#sLSPLu#Q4A(E=sBa08tIrqyPW_ delta 696 zcmexv{N0#0z?+$civa}KxpgP<>ayGNGp5?}Gfs4rVg`y#KF@885E9`O0V?DGDVqT8+mFF6hsq#RwLh!s`JSe9YSq5j-Gd1{eG*LVAM>^|@-i~XF~i+6IY`8s85jbSCy2;^{hA{#J^7S~^yGXAHjdB`RtB)- z15t?NMhR)A6%3OF#3e!Ulix}Rph%w=muC9J1efNP;6ahL1nN#;fl4c&NOeg{GdZ$> zr4C5)p-9OCr7p6ArJf54ut8k}bMAT(X{JjYKv^|R*Gh^?Ga5|h7gwJgBZ}(KIx%Uc zY95fT$urq`VP*n-sQ^qE;d?JU{W_nKfq|8kfx(zT0-UyhT!tl$xA=g1tWccSCo0YK fOaN?@4GSldQQ*-050s4-0?RsyNr5$9lvD!%jo6Gx diff --git a/examples/zips/object_storage.zip b/examples/zips/object_storage.zip index 9ac236a5a97a9207a56eb458df3e970c58a80b42..925f8f46e6542e7f1be0a65fd6fce1dea9012de1 100644 GIT binary patch delta 1242 zcmdn&yV;jFz?+$civa{IHdsyM)nh*$BAj|QM0j$nh!itWX!2JdDV#?BG&5va=bvk&K!wAmWB$maM2RTtlH~DKprDDv&ToO=n;b zV0h~&$Ax6N3_>5mWsBa%pUYrkU@EW}Oaw-Q zB8ny+A+V-(3b2#_iRXM(X(lUiuvESj8%JmeJRKl{U^apAMGp5?}Gfr;cl41r5O@7924;BN8Z`Kib#RwL( zwpWFkI+43zB+kS%g%jtREvcl5-|& zbNPYwA-iWTS1Q~rPVOcquzOskE#ZQ#(wiZ+_VHT41Sg;6^#m!L7!S8?EZoN%8{ zPGxb!uxd6(0J;H_&$IZ##5OClmNJ8_caTB^N3+yUBxBvhO)!j|FK!Jt;-Pp9#0OPO zc5uP{OtTqz8JXmm5zf0JXTuDPfysfYGGH4|D@#xIm6w^!FCfgu%77wOr6|qR$~5_- zoYdrWP62e;L}h8FB4)7c3}rzSjaDksO!llGDZ%`ttkmQZy^^%h5QOOpzyJ()f8*g` z!^ps3!^FU#$RGhuIY2JMlEz#vu&Fg_d{9%xCjXOX18V}Sf)W-`O$-bI3~wD-cqTV0 zS#e-kv*>O7xeTBcf$R(n{wUUzfpmnSIQ)*PG*dc1*!DbWUUVP-RFY3rAkY?t$@%gecs*l);u&TUpeD7+7dUuOJOqxgUkcJpxiEPN zbT`%lWd%gRx(_Hwz}yJdSOE0g9SN}WGo_HC6CAo=6$^p!_D~Y6qClJj$!M@2r*m0I uI{`y-A{zsPDoRLNNP&fQrdu*#6&K`1!A|N`Qv(1aJJ)Xj diff --git a/examples/zips/ocvp.zip b/examples/zips/ocvp.zip index b6b3ec5da3140eb5a0cacce633e7b5fd09604b93..a72e4a0046cafefb75dbd8e19d83022c67fdc584 100644 GIT binary patch delta 240 zcmaE&_(YL6z?+$civa{IHdsyMRZ%$|BAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI z+l<=mAca7@nU^VphZ!VT!Dj>$oV<~5BR7(UiJ`hMsg0fPjJ%9Ya?EgBC+G7UF#}DS z%qSoOHb_B0dh$Jfp~=1iJSgJT0@6%Rc_z;gP=*OB0PPJw;@y11l#zi!gNcDboIwKQ X7X~1gVM*gH-pLR6<-m&f38(=8L(M#z delta 240 zcmaE&_(YL6z?+$civa}KxpgPdk(ZH4ju~$2sNTMH zAqrpd`d}!G;tPf=+`?B4Q8!CM!y61Esho=SlG3HN0VrHIRNm^(K+$yj^3g{j)V~~I*KLLifj^Ek92HchwLUA9zj5Jd^J5-8y@_R`X ze`1(viejccCs^YJCO&j0D~d}qt%J$(O!j6*_cn&f`Y0x+a)V7iFUyVM+CRY1JO`6v zo9rbAb1fvGWP!nG%m>sdJ^4D90K!e!!^auLMk{`xJ}(s8dL^Zqwu6LS(ZdBCX){Ho unc@XO?wmMF3}G2G{fJ33U4u%BOs)_^b?6*m>Y6GHcBl+HH%xD&oEiX+syUVb delta 1153 zcmexw^WTOyz?+$civa}KxpgP<>a*MOGp5?}Gfvzf!U-3joFf>FkdR^qDxLgTFbXUL zRKM9pD3lRNwGXE^y6WAWL2%U~T+xgmBPJ$zqA8nrHUO?lg)x&+TmjpDtd$ z#EOxD!JdhML1}UztIXsx!hCSW4~2agxsg0F*_}TU&FslX_!HpjwFN8~IpKy+cHpyx zNlk9yI{^0IIhH_l6P#HiV9GWxVvPrTVloT654yS%c1UP}g6151HALMsCUZ7cT0?6jFjt6~?z#vXzW?*n(kN~>@$Yog4c#2`Nf~-A% zZenJhUP)SL2rC23cyLhlOG-~(E2ca7x}+e?K(IKMlr-}XCWgs^%vzJba*DE{X`3l3 z&AgrkEIn}+4@?&58by$6ZmeFlE);0J9ndvaD6WxVg%}wnCWd02fSfe*Q#O#C6fkjc z!wdul0@yXLq@|gvIVMk#api#f0Oobm6*E_;04=KnrY)wEY$;y=~y9%GuLo)z@&k}3zlXChS)Kvw5PNX*r}0nY5=o!+Q0w+ diff --git a/examples/zips/opa.zip b/examples/zips/opa.zip index 68d279efa9fee596b554906d4ac93569a1b8c77d..b4e95cf86720a496e72764dcc70a1653ace76c19 100644 GIT binary patch delta 248 zcmcc1bC-uVz?+$civa{IHdsyMRaQA2BAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI zn~YlQAca7@nTzQKBQr?wE3+X?aI!ATCT=7R6GL=hQXAXd8F?9*TAF|4v+VRJS$08-CAvH$=8 delta 222 zcmcc1bC-uVz?+$civa}KxpgPp|P(kQ|+f&3TD43is}mPz?+$civa{IHdsyM)lxYfBAj{_h)XND85mh!GBYr+)B|Nv)J=ZLXv+>& zIMGgu8K`x#7n2KE2q?UHDpM~DSWuPS0wy>)g?&3WGm8k&EDo?;(Z(>TjZ-}tc^R4H znBfkYtifSn53&Hm6)4KWLGFeDbp{D2Q-I;EqaVZMd`?Z5&=6JzW}F7W9TPswa>e6f z76t}=Q3eJ*s6mWCmPz?+$civa}KxpgP`ECdwZe2LAIksDcg zv@M$QiF;h&s@WNPS-?h2XSIL{PQJ#votKeGju~#{WDO1rW}xAdFL20!RiEaRX7Xd0 z+`uU|`5z}AR7y+@t|1)kSSX>+AOU3wFuZlV!wAwgu|brLl>x=f_Z-qpwoDL7VgB62 v%sjo4w9pWQDg~fd!>_4J$}R;OC&robv!igDv=;|ikN{1`+V6d96@k#Oa+gqARJBROpHOHL0A z4WV4oa1GnJ?3j_v7vy)tP+rX+4p)AY|1Be@2+-3UAa76p$Lk7{n(W254@stz$pI#_ z`2tfoBQGP995ccn-XgBdz)+aHQBp<_XizvfAfbfq^K%7DXk zmzXruC5Fi##EmDvX3=3|Wq_HXh;D`jg9Owx0fx7ZLTn6^75NP&iSnTsXCNxg+yay0 zoZK!d2Qv?B+XYE!CSwkuZ90=DNU={=kYa`DRsdP2eehiGBt`~?%ghW6&QR-sT!tl$ z^I)1#&5IV7W?Vb@y|^hyXb9BlK#zgV@_w?wLknn54L1XWD~ef?+&~BTz}y8^j2u=5 zDE>UeH~E8vIn0${Pk2g7Gwbk!yl*&p55F)h%wQoJCn3$;APACHnry%)fFunLQto}< c9bAE)@?&CP&_Z$7WFd&A-AvptO&g`u0L_-l*8l(j delta 885 zcmca^dfk*az?+$civa}KxpgPM@lbU=}a33e!H*x)VV$_xyJ$&OND;&9P$aBxBii^&H>j3(y^M^5g|l zd@vWNVRwNo)L;e%0fx7Zsw`k_cR4sG*NF;qgoYrTqyTb~dGS4i)hrAQH^mqjqEVbQ z2U({X%u=NAdo3=_bcYkkcy>;G4D-F8Eb!1`W?-n{W?*ndG2ep=S?k1^g4}u~X~_D) zUVkkq&GeBMta87g03txekR0+(LYk3fa)YEXiub@F-mOttauXQD!mJDojwsgW0X2AH s^Ocx1(;-2q(*#gV1P7S*!E?QnfF@oBddeBaL|q}ME)|$FH%h4i0G^+wCIA2c diff --git a/examples/zips/opsi.zip b/examples/zips/opsi.zip index 0973138e9416ce9c56fa317c9f74bc9351e65f53..b160fcbb91222fc5076deefb97425992b64dba11 100644 GIT binary patch delta 2338 zcmZ{lZAhC}6vuC#L}#KVMl%fFBqlaBYLnP#<4dZR=t$ayxpd8ojW5+SI_pO1)|6H4 zUW7qMp@n$5!Kf5J6gF1eB6SrvBjmM z2DV&D4vaLNRlwU#CnfM(T}%y{$uZL(M1FmET8q#{GeQ&aqpkICIR$)R ze^UY%YSSF}ckQAAzE=0DH0*ozBOEwueO&?XS=|!&p8f?6tTMc!fNvW->a~c)2RVE_ zo>lOM!$vhe83`!3yxN~e!b(hD?S|+PMIs*^mkzuA><|a;k4bjL3%(rlOJE?`Ay>m( za=lWkvyd;VLj1Pi_OMUR-FP${)l_Q)hxY$9Z%K8C3j<5XY;+;%H(B~=fD5Tc7!FlI z@pu`fG?O-$xV9@-%ExtNZS#7BT9B3U8uEK>X$2uT5ZY5-M)y#ZrR!#zz=EKIsVQeg zGEvGAF`D~*3JV#UgFV@L*$qv7HHn4h3Q{)6lsQEY%hz|l(d!U;x(1;f<6%{-c!?2O zJ%)v7H3{$6w{r%Zq|28y32#l=pr)lvWuNv^PvtbpsJ2o^?LpQtm)=otG*!2meNDjBWki02D(svJHZYkQ(zAEOrx6TN=8Gg8jz zEgZ$d^-?NhuY7E8x%a~h{+UL&6L;{_>OFyln-Q`VKDZy>rMfeE&(0aF?TsNg6;WR& zO)bq};Zh7tFZvi!I%nT^m77E4RZ5fpi2bGWNUzcZvEmu|@bn2&f6_kY@N3VDoo&l8 zi|k8&_I}P9TP>u)*W~?_2PQSJ#7i}`Fds9k>Zs|>6Igro2!e33@$uB$EEXUE=Vu+% IopG-DKMzipf&c&j delta 2351 zcmZ`(YfO_@7(V^JBJHq%m4uGdVoM7}ghC6}pj7$l(oVVT+bAs;nOMqgI;I;x6g7tZ z+F~@~o6IcBE+%F}cZmdIj4{jnF}JW}Ycl?9G1->v$Ff_(k7aSmE~n@8e0-;$YeGZL z^Ssadyw7=0SJq4`YbKl8C7T~ZxleIP(}K-c94Rx6?<+IGB};`>1K`f~y*i{yCS-6n z4AC=Ev3#~+QKpBhm0bp6yJJ=(t~f3*Vtrtzj;QYyRi4oytk-SjgeK7v^_#5~#IYsk z8Ri2|YEU*X%ha!jQw9y+uG1Rv-CZx5sbAbNU?5)UII9tH#K(y7(9;Iu-B5-TAseVz z-qU)NwJ$Tb>B#!wj@bKk2pjHO`$;adJh*j+^-I`P1Mzd)j7E%jT&nhJ@^tTl97Ou0+AX~8Xdo`1L!g-*O220N4 znq0lBgb{!6H5!P)+OS5PsXf4kjCBQdM17!dbSXN7270->Pg5A`9$~HSJhi`&2OgDe zT5f~q)Bq#ClW5Ya*Aj74iSB{GXe??_xgSew1=4TiVY#-5V_V^zV~4KXO&(B+zW)5zHsr|vSB`#DTC8wyv`+B&cLqzZ=8ipZG2^s0 z8+@J{$I`zV0WM@*a4c;RJXw!m>Ag~_aVX8~l2Hs^6v4~$_Iy*9ZFcPVOUA~oF)aP0 zk>KQ5fEza`M+N2YD)Y)-W9ljyci54~d$=IIt$8xVCKrV|(@vq3Hq82ccgJOfUfzsQ zZ@!_4gnMoNG_PtC1P`XLH01$hz`Y^%s9g35?mx*@bbvZs1lge?o-=ju@XyxG2{S_J zE#yyd&|Z@-YT^zI8SNIjZ1=;7K}AqM|Jv8SVxsOSM`%D$f71`^gNOfDxl>RMHxesx zu1u4?F@U9;x#KAOW2xio${)fj!QWy$` zz{ED_RBanUJZi&s2-z*hK$&zw%TzghHK`3o7pCcc$rt;{j;F|A5y6Zto-gtXDV>_a z(q{)L)T7$@E39UDcRI+!R0kp0}m$HuN-eRGmRx*Kb)WTQun3L)%^!f^xRJX diff --git a/examples/zips/optimizer.zip b/examples/zips/optimizer.zip index be3cb61fd00f0707d34642c7712f34219200a4cf..128a072319fb72e178c4ad239ec695362db7b65d 100644 GIT binary patch delta 225 zcmZn{Y8T=S@MdP=VgLb)4OSC*HQ7&x2&bM65uRu(#S9dg{G8DMECdwZEXNeb0v4=i zGlvOI-pjUyo0&xfXaEP;h$thN)W*r4jJ%9Ya?Eh^C)cr?GXqVUEX5%MHpr4gdh#cB z@yXd7JSgHbIi#7NvM@~UXH#KgWq?U30v!~-_t(Kjb4CURBPIq083qZk(}7%uC5?|* O875}Q!_+_IPy+y38aej> delta 243 zcmZn{Y8T=S@MdP=VgLblZrzEzn(VgxjH&kgj1z68n1Ldb-?JKlg@D4FHP}2ExtUo+ zfQmW5%A*WmavLYcv4GWoVljt_O*UZN!pq1c#|$@ravi%lGti{T^&B!_)$=%{Cx2oW zpL~IX4<@b%v^8AjglvTi3j;&0Fav`Wg9O-pj6iZp<1I#piCMC2tPC*q3Ly2D; YK7$0<6F@G*lE$ChKn-SK#i{&i0KWJ=hyVZp delta 260 zcmeB{@0RBc@MdP=VgLblZrzEzHte?ijH&kgj1vQ-n1Ldb*?3&RLO|ioK|JA%+{`Q@ zK*bzj<+;ue)C)@IA zO}6FXW@BZ5Nhty?4!7YCIVKC#*>23hpvxcub|NE?T++zL#4wqWTb(~QF*8rEBrP-q eO(*knix10zD&>L7O;B`B;sNP2hgp@%uLc0*q%E2N diff --git a/examples/zips/oracle_content_experience.zip b/examples/zips/oracle_content_experience.zip index 93af61e21b3f0989940400a99c76b0317bdec22f..5bbd2b4052bc94aa15c2f676a31635290eb28ffc 100644 GIT binary patch delta 211 zcmZ1_uu6b8z?+$civa{IHdsyMwPZgXBAj|QM0ldF6f;m{vLKTKSO_S*IfCgU6IjrP z)g2}{c^2y~Ze|t{paC3UBeI-eQX4l1Gx9Pr$uYytpPb0%&I~kZvMjp{*dQBr>B&#o w)F;=m^Pq^YVV7o}!OSpOkx6B81FHZVD+7x3DK=^5)huA?iSxK&vMd~G0DUnxApigX delta 209 zcmZ1_uu6b8z?+$civa}KxpgPB6^yH^( v>XYBFaI>*8ph%r!lV)OJnq0@GI&mH+x}+7mG?P6mNOE!wyD(TE3x^s2(zqxi diff --git a/examples/zips/oracle_digital_assistant.zip b/examples/zips/oracle_digital_assistant.zip index f49edb1875eeed9c5bece0d5590b57bb9cce386f..df8b383d75bc1b339e147573cb977e425139dc18 100644 GIT binary patch delta 262 zcmca7eove?z?+$civa{IHdsyMwO~ITBAj|QM0lc)6f;m{vI)BrSO_S*xt3j)iJO^4 z1gMw;qRSceju8%%I=KHDLX*u+dnn9#WT*i}^ar47efURiYl4d^3#4uT&Nr#P<0Y&OP jQ0f62NJ@FK0k<%U96y&dg^bVo)8h5#l82JOkRT*i}^bMwJefURicl4fL@JeSK5Mf3xgG_xoh h!(@IA<;e={0&J`dDAN2uX?1ppbO0AWSZ)Wm8US`)G0y-1 diff --git a/examples/zips/osmanagement.zip b/examples/zips/osmanagement.zip index 06b3bd2eeeb2617b31c917f089c3f822269f5ffa..1ed6dce425165bf93e464e13c1a8e6b524da0444 100644 GIT binary patch delta 1144 zcmbQ?GQ)*8z?+$civa{IHdsyM)nPv!BAj|QM0lcu$m9v^Y|KE>$vZiX!NNeP&7V1s zae@RV#(H5kSF2dw%V6U04e!Ir}u2~)cH4D)G7V9a8LSOyBqYpkA(yo^k8%m|-v zl(J$5N=;T!5Sv^l&87gfGCW}a(TFvi3=HY23=Fai65z;U1d>Y{0~jVBRFIhbfRmGr zl>w?x2J9qWX=$clF0kx=8QID4(rg&U8uokb-v%_Nm7RgX8pYUy2#x%VTu4TPoddQX zN|-|RF)#=)ymfrT1GP|KvaGxahJ}xhZ3~$QayTmkgAIy>(Y#0+`6us_K=uy-OOyD) zdO^u0L7ElA(v%B3y;lJ(<;Sq}B21$OJ|CK)`0%43)H1=z_7Z{!ec;Ff2YjERG*hAw zT-ACB34|(0)YvOXGtCqMs!-$z4M9X3*qf|QlbED{Aq2u2C_(fIq(dLWdv6XgD=h*l z765ut1w})iDA*BP3c^rLGV-9r1XK$Lutag4LGp5?}Gfv*fCBg}pn4G}ng(M@z3{*V%99JM% z45(wX8utZ8uwb=V5Qf5!Vv%r#f#Rnj3gsnD;eyeUo{Zc`?wFjRtiW?L$^4g<{M?1!<<2Oi0G? zPTnuZ&4y}_0x&MaWsD4kH!?CXG_x}>I5S9q69kaUu%t1b8BIUu z1t}E_a&>g^b=AvFL2@$0TiG(wOtS1?^XAH`Ae#YpM9PJo-m8GN^0P89*q}I~2c}7W zvaJlJ<-EXPSi=c2mp?Z#Gf%H14Xf4bg~3)YkU_Cp9_0VW$F_w`1bG<4YPrb`@{+(< zkVp46*vW4WF)J+sY7+qJRY7sGsuFC&v2Gu)ENCR~;vH%%_!k`V+N6b|+^ zlu(*HmrHH37OxOk#R6^_u;=4=r5RUG4&agi%J5E}&&vbT50>rcl4eR`njFX_4)ifE zipKri(o8#HQXG?ib7Si4WC7_ENK8p7N-Zwd4-H`jhuCDG-3lPreM;(f3T6U2kDY-* zg+T)BPDUWPr11e*=fsz*4b1d|;_{ylMb@ C^ot+> delta 581 zcmca2eMOo#z?+$civa}KxpgP0i zw=7m*F`%x^daUV8C|Zm$lpkY4C}(GGW8@S8TFe2mdh!Ae6SzsYIeZwonOP8$^Vlt6 zl9TVT??l)#F~$Pjl8HO)VQM%2OJn3^WRhb>c*KOuk{RgO$q#wN#Nndh-~fOUvXkd> zfjrB_#>xOyDkBecVfd${Zl_=-P)IQ_s4z%?l`{g#C5_7_2XILMwQx+9X5~a^6H~)s z15`5ug8;)@$8hG!fn4H~|8jG1goYrj1PAX)ZfT}O_Dv2T0vy zUM3rMkU}8d9Kh7c$P5y^!|V(boUF#OhZ{-5#56mY)W+4}jJ%9Ya?EgBC%YsWCp1>WpajzO|EC!!^_Ad#|*c1@_QC%W}r!v z7qZF-0#%3mE?cy~m63tLi;00jV{#I!fnboUql>SrUT#Wg2rC0jtpZ5xowmT&`9QTr uK!>U^NPs-T0OT?(X=GrUT*#^mQw(;-0aj_I^UOeD#mWCzg~3uyY-#|R7BR5^ diff --git a/examples/zips/osub_organization_subscription.zip b/examples/zips/osub_organization_subscription.zip index 6efafaeff9667e4f6fba5df997f451636bb83efe..415ce650de819be03464149c8165e9e1367f6c9a 100644 GIT binary patch delta 248 zcmcc1dzY6tz?+$civa{IHdsyMwNp7ABAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0vy zMJ88vkU}8doXb?q$P5yE%K)dxP*RWbn)?wp;sQ}v)#U{AyO~D{nM;BjLz1)=05U8r{Y-#}Vf<2M| delta 251 zcmcc1dzY6tz?+$civa}KxpgP<+Ns#`Gp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8eo z!|cuuQV7JGXE8@IawADj%y)&!ZQNbV$P7|%$m9bPo7}>*mzR-Aju~$2Bvv10ph1%z z*kr(pl z52FP;NFfk!wq_D#Vg?BYv)ID~C(mTrB8j9Syz1qlG#f?+1}7#429?Q)EOHb3_+W}R zF7{*OWn_|LhPz{O6stWm(Co>1Y%+pCqr*REX}4F?%1o|j5ny9wK#|?eD$Tr+86-Qgj~ga=mrV@-pDIF` delta 256 zcmZqXYv$t(@MdP=VgLblZrzEzhAOuFjH&iOTw1}+z{v8FnSp_&9w-Y^Cjz87K0?1-u05TbtG`g_>wHSaE-(^z+0M#!r&j0`b diff --git a/examples/zips/osub_usage.zip b/examples/zips/osub_usage.zip index 3f05f647afacba0cee28c087304613b8c187025c..02c895bd5f5ae90feae67670a5469ab85d6708d8 100644 GIT binary patch delta 326 zcmcc0dzF_rz?+$civa{IHdsyM)nY##BAj|QM0lc|6f;m{@;gRDunb65nNSQ(g!Fv`zRx5Ngh*97PeSrns|F$0ZK0huv*J)0T;KUPI0 delta 246 zcmcc0dzF_rz?+$civa}KxpgPHwd@ykZpsnH44LEpMm>3wovNJG9Gf05l#|R{sG(KdUtiUEVv4N9~l>tSIv2{zt XVxSUUpgJWKEmkZ*Et+7(>)F%*?z$>( diff --git a/examples/zips/pic.zip b/examples/zips/pic.zip index af59e49ea8e9e863fd9fa85157fa55dbd624012b..8011996dd1a6bbe27a2bdfd33c04d0d3c3162a43 100644 GIT binary patch delta 1035 zcmX?Ncf^i2z?+$civa{IHdsyMRc1dOBAj|QM0m0xmk1|ZV)6=BZ6p~fW}xE9o7o+~ zVn7|6f3tHjf(5^`n!yF-d21kozc>vrbo+66!xb*zvSI@3zRP0`7liAc$7hA1`ww3z zTww(NI~K5RPZ1Lgg$qTZ;R=~WJs|G!6SId4!mODXqKlz9nJEsg?gUdbSo6fC7H~0n z-ZDl`5n$MHfI@FF2d5!SYO(|8MkELZo9rOXrT|jPUc2e{2cXi0j0_Cg3=&{XKqkYI z#%Tg0Vg0w^|qkdbEc=9tVYtBve(uw7BI(#$J4 z7$&ddQ=L3lRsluZeW2VoUWUmVMdUFY3Jxo6ORnE~KySOTGBCKJxWtcda)O)>hHdBM zfIi~~n>e{vj2GcM8AtSJ5{H_{z#zcz*71NK14C*>Vs1fBYO#JnX0m=_dQoa>ZfahM zK6)&Iy`?KD%_Jx^*-O$N*$o)Mr-b6@E5ZyDx2hr>1x^%T<2->;Hc6CWvIM6bHtF3! R+gijX-;k6A+a@Qk1^_`w7wiB4 delta 961 zcmX?Ncf^i2z?+$civa}KxpgPR~2NT!KTx+`EO@0K-%c7H^p9%~32?Oknp;XS0S2Du|RZPWIeE?H^jFeZ?c#N-3AW-!CRau4OCnI%~mCNC6|glPjhLIGqC*kC9j z3bluUL4e_{<80Q+fs*1VE(7a8c9{Z-%U*$WsKaaqD`v0V^!o$Q_=P~XYojP$#tt%m z;zjAy(#>&9piemi~kPaUdJNC%{y&wiMX!36v0kD*uycz(03b;i8 diff --git a/examples/zips/queue.zip b/examples/zips/queue.zip index 596bdfcff56c49772217158cf00f4b99e57410a0..1a6ba294c428dcfefd31f0d9fd17714a9b6c204d 100644 GIT binary patch delta 327 zcmeAW?GWV+@MdP=VgLb)4OSC*RaH)h2&bL};?fFk21b^b%nS@H^*~vWIuRhv0a7>l z8ml2YNFfk!=3{eWWCjV&VA6pLo@U};1`7tW8^Z)A_p)!{MmFU>qXAq_jHw=^eqxv& zOlV`bCnGN-lN>YLd6WG(jG2K}PX5m+12%jwr}X4~9Kw@da|)t}Cvr+N9b=qa$0>^< zEXO6y#KJn+no9*mm=UP@FY9DEPDPlo0?;Ml?e4#pn=>*n=rJ)cNB|)S0J#iH8n>}c NKENRlR-DA81^}f-SUUg! delta 395 zcmeAW?GWV+@MdP=VgLblZrzEzsw%epjH&iOTw1}+z{v8FnSp_&9w-Y^Cjz87KWMI%^VqlP%ypcmeFv!)> z#n)9YHzhQLl>w$!0i*90jDC0;>_zyI^F>d zRp(@25JOSi%`{n&Qx-+Bk3=Sm2GA%6U|30`C_c$L`2dF!OflGl37pc*ZtM(`67F`Z@dMFCwD#gXfSKZgKiHJBL~tWgw)u>loJPrlEm4$}a3nu4G- zlRO7dN@TJEj|>~aZm{ederZOg$rl7fC(8;5qv-48mu6z%2I>=^yqBLBCIxnIjUzj& a1<(y9K;KEDxWSDFY*8dXA6P@Npc()z*os>K delta 512 zcmbQKJX4uBz?+$civa}KxpgPu|c;x!v&moKq3>wS~4Azsk@+nWO5t_V%Uk0WKtjSPNnrSl2WIsVA6yb9M(u@j| zC-O@Olx3!*7U`9wg@&*)z?3M0jA!-;(O&}eK0nY31qKOF@G=0I3`-i**cm3vb1Ac- zX-H%GCF%}T@tcW(K?X%b3J1gF=S=cQ8o+Mj| TP|W$j%`n-9Lmy^Nv7j0NikM!k diff --git a/examples/zips/resourcemanager.zip b/examples/zips/resourcemanager.zip index 2474aec99812d82bd0b2eaa2911bd7ce49987000..643263fa7bf9e6a9d836b0811f24649855af5955 100644 GIT binary patch delta 425 zcmZ2#ywsRCz?+$civa{IHdsyM)mJ$kBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2UuN# zCp$U5DQo^Tf`qOcu*vaksHb2$uWGk zFv-aa__l#HY-V$UiEaMFHU(nzWKIjX;3ZB6MqWlHIcB&=CaZ|qG6P*VNm2%EM6*~p zlq(2yY`DkP>9?LTF)&DTGB7Ai<`UPM%qPKvtbV10G}BYg$&O;ulbiV^*;pBnCFLch znZEOZCGWBcOiq^+MV7SzYF#G)mTlt`K-2n1Oqyx6AXKX;nq;21G*h<-SaL5XH&k+R Hy`&ldnDTb( delta 535 zcmZ2#ywsRCz?+$civa}KxpgP<>Z{oDGp5=DacKoN10%~zW(Ee9dY~*wod}TT0IN&z zWCy7O;)NU7n1MPc?+|o?32kN+n!*GYoFQTX7rZXwz{rhc#^lXxW^l<5Z2uuTb_>|T z1SkI&*d_=xI$UuDv+W8N28LBU3=9U753L|wf^MUpBO9;b^1KW=h94H!m_`w=vxFpdniPtK&a{*dl a0E|vc6g_bwlOIZGPgal+1zS=tsRjVWKxN7R diff --git a/examples/zips/serviceManagerProxy.zip b/examples/zips/serviceManagerProxy.zip index eaeea29813c936d023c1fc4b421049830405b152..1ba8a781805cc37abf7315e978118c9d08cef909 100644 GIT binary patch delta 246 zcmbQuJDZm`z?+$civa{IHdsyMHC8ztBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI zzl>JwAca7@*^X&GBQr?w0kb1aaIyx=R&FE>6H{zpQX7|hGx9Pr$uYxio&1W$kr`;x zWIa|Hut7Unr6*^wDo)mB;$&lGfJrF;?FjF_BNMV1=nM%)1_o^g2_TDs0mx)n(rCpr e*@4XnrWkCFFRL`8(`0)#g~^?)d|;VUHZ=eV%R8O` delta 266 zcmbQuJDZm`z?+$civa}KxpgP<8mrjyGp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8eo z&uqgEQV7JGCoy|7awADjOtFH=ZCpB^kr|}koyidy_gT@MdP=VgLb)4OSC*^;J%X2&bL};?fFk21b^b%nS@H^*~vWIuRhv0almb z%MMZp#2dG$Gcp6UPA+0LgNbck&uj@1wC8{;+&q~h3?lfN#TBm7oRx(Mtlf^?7A82k ziG3GX>158R0=#%gO%L$)s7#SFBSQr@086-eq!vN$mENS#&W|&wY zH93G!8AXHH^E!@KKoxoH3=H}x8osjtHRy8dm86A+AZ!6UXf>}ivllzqybN{$bT_a` z7E4+Jjm!jwzcz}I-W*Uj@K3(O#{qMPJjme=MFtx!fST->7#NgLG`*a>kxypw0vy_gT@MdP=VgLblZrzEz`YN{kjH&iOTw1}+z{v8FnSp_&9w-Y^Cjz87!0Hlw z*+J@nc;gmzMrNSa$=^6FU}Bq1xx5&;kbK+2bVk}1A`9}1A_vC1So76fLw+pjj7BG6APp! zFW}*UX#kt;%`44(j|C{D%dJeNLzpKZ?Q6`P2YONK=~t diff --git a/examples/zips/service_connector_hub.zip b/examples/zips/service_connector_hub.zip index 304de7b4ee865178c589bdb319ab89e21f41b85b..1356c28020d40ec7e4087c2c7a0ae2525a50d2fc 100644 GIT binary patch delta 247 zcmX>mdQ6lzz?+$civa{IHdsyMHB~tsBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0vy z4kjCRkU}8d?9H@+l^G=XkKGw2IN5_^2RD+2iD`B)sg0|H7nZ*q{fT(vy2Rl_$$_@t}zNa7i=yvrX>jRGh5GA;8AU0FzY!S|4ua^!c&_BLjmM c69a<=g9OM+3_vc!lExTzpdNj&;sso40O)umdQ6lzz?+$civa}KxpgPZCts5l^LWyhRqo!HhCG_4qiqkIcB)6lX*FvnSmxv z-p?rmRvpMCJ-L@td2&A&A52^UXi9kaBHQ)TSQ!{RMHv{>7$iWBW?%&3C5^usC--ye b!W4rIxyLEZ^pPDXtTt(bw~GI_p&j37{X z_*QOBT_;8chMi0d46>8Mn*N#Vqz%*3Re)MCAow9pV% z1{7s{O43ZLnI=2ROH3Bw6JkTiDuAqMxl&!M0JNfwoq<7{K>{3kKwBA>G-|Q}jaHca zK~4x}99Y99iISTqfGS?FGB9YMXjsP%)S%9d%?rVgx delta 814 zcmccPe#f0Rz?+$civa}KxpgP<>ag4LGp5?}Gfs4nVg`y#b`h}#3ju{Ew~2Uz#mrb8 zVPc!>Sgn{qf)itnVPYGn$1sA`Mar1M#5PZr@nYm=W)T5e!~wEu@;62cnB-(rrUtME z8wo48Sgph!UZA@0Ce5e`=|Ej)CNarQ=HU{AD^THT1Z&#OZU+7u-hAjsWsTUfmff$p{eV%5oEa_W<_MFiPc8DNUQX4cC~Gd*CKY#=W& zIZu&e@*a61n6v`OjIG?7x=xG?3_F<^7-ShFfF?080J#iH8dI6Unrh{EU>d;Y6(~zH z{bK=3HOO$I+qPOxnyH@+Ec-xC5Jh8;k~C8wJ6P(Vk}!%?oB~jaWAX(>>B;UIqpe S6cZ0ff%RxBL)^PfSq%U#D5;MC diff --git a/examples/zips/stack_monitoring.zip b/examples/zips/stack_monitoring.zip index 7019a2f7f4c4c7ff0be7912a93bc9e1897075ce7..f1b1bde12320d56d3896be1599918e08e15cfe34 100644 GIT binary patch delta 1258 zcmeD7>-OUf@MdP=VgLb)4OSC*4cJeI2&bM65uUtJRD=^QF?lYt3zCc!Gf?qlR+dPx z7*NONR2Fk4uwWyXJ%++3T>fx{R@|>33V%sBV<=3N42LV+FImHczmywr| zNsbv28NRZ1%)mgOyiiUC9Oeh)q$i({HRRL}4Pj+~%7{(=pu(mAbb7eL*H`kgObiSM zSs56d86?1Q%?KoyH11)T94PMvGfEz$7%U4VG@*(a7z7yJI)+USke8jTuPB0S0a(v} zmHFWpfELVSXJD{Iv0x`y4?nje8{AzG7tc|ZX8OYhv|VO0KQ}L5d`^CPF^22Ge&bh@ zW=x)(s2~ecIC-X|47yPZm8BWoCO0a|PQInggW5drGX$!h2bH18Z6149ssnTMd-I40M~DZ#=O90|zbYK;=E z{rn)SChLmvOunGPj_d)j|9`4TGqDK3l}L!GVRMpW;j#5gfp!Q3y{duYBm-e^D4$mo zhPel9>|S|kCUX&pC)pa`)2xRa-uLtU{=UEW+L~%jsnc~n zAfwJtR0?giC{`le&02(mww#b00UDutk21tl7`}xT*%@_gRMqRabJ$*(=;zvB=N;?> zS7sPYB(C*y@F~%B!1Ku;7I=fN`M@vyB?mMDzb(+z7JT4a4IJ>SzGQ(LWYjtQLnb+; z=K|o0T=u1`%VUn=Kwjk7^3NhOJ}?%&>wvB3Yus~xl6c04-x22=d`DctQi8rhu=5U3 ziC1k29>qVZ98UA@V@#&1JiT;i<_4jW5m=vF83Nm>5)`w+;MLgy)CG(Y8aH=N8Yqop zgmwgkE+dUSH%GrOn_CFD?7T1SU5enxJe5wt`{RP0#Rg^41pl?9^+$x2CVWi!CjD*(uWEDZmW^C zz%dtKSHxzswY#5scQ!&%v_C!+roksc*HiFN3%FkE_6|SXuFTNRTS0{GdpbXNePiaR zy(nw+)Fk*-jP>0kiW_-!os6eWEzW!oWXbgzEcI}N;3u{!!cVzBnNcfQf-fd%MiHi? zs^{;(^nX;}wDpoZuDblFVE+*e{W5oY}{$sAjP@rQ!r$6}^S2+^pCF>#5;Y*X~ybMC#phbl?=@jmbK zJnz@JH&=w4D}wZVw`j-)@?T)SCg#e;&|{$g@CA<@yCe&aLyJz8aZkaW8uu>z*+7T5l+~#V zPKv3wa*ndLH!Q4X#hyAX#;zx(MF2jP@O$=3>>M=V*}($+a+6jpn$wN%m3C?Jm!w02 zu5rN@%qVfpwogl6vc1IiT#eY7WKO8q%{t0Nrrg?`@QT|__fhIj^LerY6@imFl7gz zf+HLeaZAFjCeuy#jv@F%Hq|*7v2QWb2Z`f~_g}`^r9X+;-^AO=Nr@8WEF`U}9PLaD zzB>LGIRzt`Xcb3@Sn=vXkD5%q-$)?1Qb2X)61g1o;V6Q>A_}dI+Bm55Ac7Tk3N3~U zbQM$0HKJ*9Q1nJ9e>1uxj-a_*kQ3En-TG&fL23t5gKIMRr(_LrKXed?YS?5q6v6xtdNoqlhb^H6Z=PI zw5p?_&c$a!j%AYkB1vxLl3N3^JnkGQWCX=|dH}(R?F4d~o6;=~v-bN35&WEj$_J{5 zGb=lLJQX3AUQ7&|IkQwyRwSen)hy!;dlUiy@*93Rgzpb}IrZJyix;D0h+#6sAg6vu zPHw;__oM$+ujJIPgmJ}iwQjWk@l8=j%j$v85=LVt!?<$>I>?7a{_&d~ml;p09nkAR q2N1k3hpX|>0scWw4Od`JT7 zx=t`=GqPPK8b7uc{dD?C4uH!#xD;_^gH;l+HV8S5bV7KxJFL+Cq5GHw5A~!uY+%jT zp#a+b{Sxq$zk>ij>}^*7|B3WUz$1N~+9Ct`2+4tDEJd~$k)+|5krr$rJKRcD;O6j0 z1(8g2uVSRtet?4C7`HQ(Vk#%MR~`f`0C!5ElNaEb31hhiaN>r=ZCa{%7SGvkAX$sW zK%-Zsk#dD`M>AE;z3d2(g~i!~Vr??#a(B(gDV0ZqT0sI>NhQXX=U)le0YGs@{7IUsO zSty6PNGAmLJnfncQ?u#mlfH$S;Ro`5DDDQreXP!_nBZc-NR^Ode4f~pz;0j_CX|t009O^$q`|hH-ie2OGGN7); zLmZ`?I0w4>lCCVvqm7I2*8DgIeSh;@ni2%Kk*cKOVUO^gpMtL;P&q<6WTZbmFf-$( z6Y%i4DB4v68g7%>#zL3Ai`@Ph3Ef6N4Gl7(P@~9z_u8%WFz9w*PT{8n0DAL?<7f9` z&Y1}_b&Cy5#s&7KS8N&YKN#*AIOv;87Vpy`J_9{r%061lew^~F_WJ@Kl8JQ5&0MOl&qg`pk zV`j%pG6%jgw_c4&EIhsAuc5ar=o~@xw^$>aero^`s`T;s z)WUz+{=209i$4%?8$~F;XYr$WQhQ8KP2fpu7eW^%5TO&DRi63keV7n+DMNqZ>-RoE roLUtCjWTyLLzr`Ql$Q-TJh%TID;jVfxoVOTo*u>oK3;ia72JNz?+$civa{IHdsyM)nq>%BAj|QM0ldD6f;m{@-s#Qunia72JNz?+$civa}KxpgPq%Gp5?}GfuRXVg`y#)@3yU3ju{Ur?Gl4ax=4t z02On9l}8!C-HJz1Y! zd@?TwA52^UXlwYP-fs=f%nS^txEUCv7$m^%V+4{*8gDXAHe^>sQS7(BM0O!ik_V_l S5k>I^*2xpuHNcAHIMe{`2`jAt diff --git a/examples/zips/usage_proxy.zip b/examples/zips/usage_proxy.zip index 1ff946241ef1990138fdd184a6169d1fa1c9ac7f..fb104d15dfb5b76f4e198fa7cc14cb7506ad81dd 100644 GIT binary patch delta 512 zcmZ1`xlEEbz?+$civa{IHdsyM)mAwjBAj{_h)XND85mh!GBYr+)B|Nv)J;Uv&_!lTnABuJmK_M0i7_THiH*~J7U1_>xrfZ?s9KLf+$hs{Pdw-WS1iC-$;ivdB*%;}-=5Qw8R*){Z#ZSZKCtGIX7*=bn0Qfaay}0qOiBUh z{_yZgGKYE@85r7_85m?3B*5VSzgiCn<| diff --git a/examples/zips/vault_secret.zip b/examples/zips/vault_secret.zip index 51cb36cd0940ce17ec2ba985eadc171e6d3cefe8..9aeb8d80503458f308ef8f61a1711266b83f1d22 100644 GIT binary patch delta 246 zcmaFP`<$0Iz?+$civa{IHdsyM)nPv!BAj|QM0lcu6f;m{@&`s^un>E;Ze|t{paC3UBVtWqQX6ObF!C}o$uYytpB%($#SAoQazCq#Akg&i=V=q1 zIG7k1wy-iV$WGqFsy^9+jR&Se0i@!|d)AYSfrj%lGBBtxNPry50Aw;OX)A o@@h6=m4<)(y&urh!Z9b{7j0O2A*6aWAK delta 212 zcmaFP`<$0Iz?+$civa}KxpgP<>ag4LGp5?}Gfs4nVg`y#-pgzX76J-y{>kja$j!_m z0#wWaRvv2%liN65i3zNJ50e#4Z1P{Gt-Op(a?Eh^CkL@wF#}DS+|MclR$a{|J^3W7 z)Z`6pd?@1USf!aBGfvKDmEg}!%*@j(Nec~OWk69P$R^F?!~#+>*^NyYEOn4g4FJcb BDqsKr diff --git a/examples/zips/vbs_inst.zip b/examples/zips/vbs_inst.zip index cd212ec9e96228f325754887553f84b3594f1826..a082bc8560394d68f7276e3f0fbf6e074624583e 100644 GIT binary patch delta 196 zcmey(`52AunB%oy n#U>}P@t}zJu}L%CWtzO2O&vw}9IG_bZRW|ZS(U)TSJ~76+3Pn8 delta 217 zcmey(`W}r!v*R#q90!)a Ju+&vHH2~^NDwY5M diff --git a/examples/zips/visual_builder.zip b/examples/zips/visual_builder.zip index 1d93a5ddd31689ebff39b081654794ed84b41642..f945b24b62e814680923a79b58065bdb2c8c0f40 100644 GIT binary patch delta 252 zcmX@YcZ82Oz?+$civa{IHdsyM)l)egBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0xI zZ;YnwAca7@*@!8Ji5Vogki`ZjIQa?7Hf|&h6XVTcQXA*`G4e7p$uYxioxGgYh8bwm zWM4KJut7O&(vua~WG2fqak8;8ph#V0lV<+Q#4vdyizbqkBGCG9amU(98%72O8zu$@ eMFt6wml%Lth9!-REFcY%lWo}ez=p}Os{sJT<2&;J delta 257 zcmX@YcZ82Oz?+$civa}KxpgP<>Z#cBGp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8eI z$70S7QV7JGeOUY$xsfC%#+$>bg#|*c1@^V%iW}r!v zz1d_0fvUsB9cwFX7#SFBm>3uoCkwM_PUdCjgQ-visR)xgoe~6;&0=R@kY|tpIiCTj ofniDGOGbu?`ATf83^4Uz`?J`jnWwM-Wh5srWD^EU$+4>e06NAgy#N3J diff --git a/examples/zips/vn_monitoring.zip b/examples/zips/vn_monitoring.zip index b25ae59f4d240f0a5586e16d5fe88557ccfbd724..69d15934df4ba5996944b2c6016c55408c6b4c06 100644 GIT binary patch delta 448 zcmdljwOfiez?+$civa{IHdsyM)nz{&BAj|QM0ld32q#>8@;4@HgoG3`Q0e4QW+$)^ zQ2pk4%uLK+!NqJ2=<3+n-Qns&*&i^8F|&vOZQ}sh7ye_mp7jzSPk?bUBeU#eX(nNq z+R3I&J2>GAC&rn2K{3UbN1Ev$^W=CgNuV*p9HAks3|P$B3sjZF0#zl$ zhESshcRZ3W85mRayGNGp5?}Gfs3A;S>Ria)87qujViVO8_M|zu@p? zO_Dv2T0vy zMJ88vkU}8doXfPEnHeOg&E^9WoLtAYhZ{-5#C&&{)W*G$jJ%9Ya?EgBC%d!zFau4R z%*!DIHb{p)9Ma4=EDVzknKUQA;1Gt%DFPi4KKo?) lJ9kC~h7cwO215o3kjEH+T!tl$ZLAO-f7toJI{tB}0RS*hK-d5P delta 257 zcmZ1?v_yzEz?+$civa}KxpgP<+Ns#`Gp5=DacKoN10%~zW(Ee9dY~*wod}TT0I8ci znbn;gq!5TVKV*$$Sn3~#8UWh4FA)F$ diff --git a/examples/zips/web_app_acceleration.zip b/examples/zips/web_app_acceleration.zip index f3f95cec9539f4f58cd8f171d6a32690867d248d..2351092b7d3e5c4026bfed502de291efd479bda3 100644 GIT binary patch delta 268 zcmX>mbWDghz?+$civa{IHdsyMHBmVoBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0vy zb|!0fkU}8d?8#)t!VD5@VsnBCPCm`HlN(9H#8g|D)W(&;jJ%9Ya?EgBCr@N|Vg{Nt zc^!w0Akd)jMOqAfGAs-X`GO1#s*{;H^e4~f;DM4<)(y&urh$PDsZX+0HUoy A{{R30 delta 267 zcmX>mbWDghz?+$civa}KxpgPY5)KL diff --git a/examples/zips/web_app_firewall.zip b/examples/zips/web_app_firewall.zip index 5d5c670610efde48180fb1970560d37f5de3c166..3e6e59f6a38aa2534fdf0368f2f26acf59393201 100644 GIT binary patch delta 251 zcmew-`cITMz?+$civa{IHdsyMHBdPnBAj{_h)XND85mh!GBYr+)B|Nf>O_Dv2T0vy zcMdytkU}7y+{3Yl8%b^wlQm3gvl9~&8#BnO?&FeX44GWWDLeT-J2x9E158pLC>h>6Q}yu+RtAQz;tUL`3=$xhGcW@2lE%-I l?YVSeY863h>-=6ET?LdA1}e}%QESD)FtJb@X7&v(H2_=XF^~WN diff --git a/examples/zips/web_application_acceleration_and_security.zip b/examples/zips/web_application_acceleration_and_security.zip index 2b5499484b78b3363791edb3120556cc1f92c156..01adeedb9e7bfb4793022f1b5b76ce27a80bd415 100644 GIT binary patch delta 234 zcmca?blHeEz?+$civa{IHdsyM^<+OCBAj|QM0jGX6f;m{vIA2%SO_RQc^=bAuvivz zC`@egG3Fv+Ze|t{paC3UBdUU6avLuvG4e7p$uYytpX@3g&I~e1Q9=e{x`g!Po8sn^ zTbKmcSQ%haia?9QYx|==B?vPx=sGhn*fU6goyZ6zmo!diWSAVlWHNajGar&BuzCB$ SrI`yvA<_a8d|(50CDj0$Vm&PY delta 228 zcmca?blHeEz?+$civa}KxpgP