From 5bdb70d7c9846f7e0f2d41a4d4432f85bb003216 Mon Sep 17 00:00:00 2001 From: Joshuram Date: Tue, 29 Oct 2024 12:19:53 -0700 Subject: [PATCH] Remove files --- Cloudbridge/models/UpdatePluginDetails.cs | 32 ---------- Cloudbridge/requests/UpdatePluginRequest.cs | 69 --------------------- 2 files changed, 101 deletions(-) delete mode 100644 Cloudbridge/models/UpdatePluginDetails.cs delete mode 100644 Cloudbridge/requests/UpdatePluginRequest.cs diff --git a/Cloudbridge/models/UpdatePluginDetails.cs b/Cloudbridge/models/UpdatePluginDetails.cs deleted file mode 100644 index f08fa470f..000000000 --- a/Cloudbridge/models/UpdatePluginDetails.cs +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) 2020, 2024, 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. - */ - -// NOTE: Code generated by OracleSDKGenerator. -// DO NOT EDIT this file manually. - - -using System.ComponentModel.DataAnnotations; -using System.Runtime.Serialization; -using Newtonsoft.Json; -using Newtonsoft.Json.Converters; - - -namespace Oci.CloudbridgeService.Models -{ - /// - /// The information to be updated. - /// - public class UpdatePluginDetails - { - - /// - /// State to which the customer wants the plugin to move to. - /// - [JsonProperty(PropertyName = "desiredState")] - [JsonConverter(typeof(StringEnumConverter))] - public System.Nullable DesiredState { get; set; } - - } -} diff --git a/Cloudbridge/requests/UpdatePluginRequest.cs b/Cloudbridge/requests/UpdatePluginRequest.cs deleted file mode 100644 index 468c93d33..000000000 --- a/Cloudbridge/requests/UpdatePluginRequest.cs +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Copyright (c) 2020, 2024, 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. - */ - -// NOTE: Code generated by OracleSDKGenerator. -// DO NOT EDIT this file manually. - - -using System.ComponentModel.DataAnnotations; -using System.Runtime.Serialization; -using Oci.CloudbridgeService.Models; - -namespace Oci.CloudbridgeService.Requests -{ - /// - /// Click here to see an example of how to use UpdatePlugin request. - /// - public class UpdatePluginRequest : Oci.Common.IOciRequest - { - - /// - /// Unique Agent identifier path parameter. - /// - /// - /// Required - /// - [Required(ErrorMessage = "AgentId is required.")] - [Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Path, "agentId")] - public string AgentId { get; set; } - - /// - /// Unique plugin identifier path parameter. - /// - /// - /// Required - /// - [Required(ErrorMessage = "PluginName is required.")] - [Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Path, "pluginName")] - public string PluginName { get; set; } - - /// - /// The information to be updated. - /// - /// - /// Required - /// - [Required(ErrorMessage = "UpdatePluginDetails is required.")] - [Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Body)] - public UpdatePluginDetails UpdatePluginDetails { get; set; } - - /// - /// 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. - /// - /// - [Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Header, "if-match")] - public string IfMatch { get; set; } - - /// - /// The client request ID for tracing. - /// - [Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Header, "opc-request-id")] - public string OpcRequestId { get; set; } - } -}