-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releasing version 65.23.0
- Loading branch information
Showing
61 changed files
with
892 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// Copyright (c) 2016, 2018, 2022, 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. | ||
|
||
// Bastion API | ||
// | ||
// Use the Bastion API to provide restricted and time-limited access to target resources that don't have public endpoints. Bastions let authorized users connect from specific IP addresses to target resources using Secure Shell (SSH) sessions. For more information, see the Bastion documentation (https://docs.cloud.oracle.com/iaas/Content/Bastion/home.htm). | ||
// | ||
|
||
package bastion | ||
|
||
import ( | ||
"strings" | ||
) | ||
|
||
// BastionDnsProxyStatusEnum Enum with underlying type: string | ||
type BastionDnsProxyStatusEnum string | ||
|
||
// Set of constants representing the allowable values for BastionDnsProxyStatusEnum | ||
const ( | ||
BastionDnsProxyStatusDisabled BastionDnsProxyStatusEnum = "DISABLED" | ||
BastionDnsProxyStatusEnabled BastionDnsProxyStatusEnum = "ENABLED" | ||
) | ||
|
||
var mappingBastionDnsProxyStatusEnum = map[string]BastionDnsProxyStatusEnum{ | ||
"DISABLED": BastionDnsProxyStatusDisabled, | ||
"ENABLED": BastionDnsProxyStatusEnabled, | ||
} | ||
|
||
var mappingBastionDnsProxyStatusEnumLowerCase = map[string]BastionDnsProxyStatusEnum{ | ||
"disabled": BastionDnsProxyStatusDisabled, | ||
"enabled": BastionDnsProxyStatusEnabled, | ||
} | ||
|
||
// GetBastionDnsProxyStatusEnumValues Enumerates the set of values for BastionDnsProxyStatusEnum | ||
func GetBastionDnsProxyStatusEnumValues() []BastionDnsProxyStatusEnum { | ||
values := make([]BastionDnsProxyStatusEnum, 0) | ||
for _, v := range mappingBastionDnsProxyStatusEnum { | ||
values = append(values, v) | ||
} | ||
return values | ||
} | ||
|
||
// GetBastionDnsProxyStatusEnumStringValues Enumerates the set of values in String for BastionDnsProxyStatusEnum | ||
func GetBastionDnsProxyStatusEnumStringValues() []string { | ||
return []string{ | ||
"DISABLED", | ||
"ENABLED", | ||
} | ||
} | ||
|
||
// GetMappingBastionDnsProxyStatusEnum performs case Insensitive comparison on enum value and return the desired enum | ||
func GetMappingBastionDnsProxyStatusEnum(val string) (BastionDnsProxyStatusEnum, bool) { | ||
enum, ok := mappingBastionDnsProxyStatusEnumLowerCase[strings.ToLower(val)] | ||
return enum, ok | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
bastion/create_dynamic_port_forwarding_session_target_resource_details.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Copyright (c) 2016, 2018, 2022, 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. | ||
|
||
// Bastion API | ||
// | ||
// Use the Bastion API to provide restricted and time-limited access to target resources that don't have public endpoints. Bastions let authorized users connect from specific IP addresses to target resources using Secure Shell (SSH) sessions. For more information, see the Bastion documentation (https://docs.cloud.oracle.com/iaas/Content/Bastion/home.htm). | ||
// | ||
|
||
package bastion | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"github.com/oracle/oci-go-sdk/v65/common" | ||
"strings" | ||
) | ||
|
||
// CreateDynamicPortForwardingSessionTargetResourceDetails Details about a dynamic port forwarding session for a target subnet. | ||
type CreateDynamicPortForwardingSessionTargetResourceDetails struct { | ||
} | ||
|
||
func (m CreateDynamicPortForwardingSessionTargetResourceDetails) 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 CreateDynamicPortForwardingSessionTargetResourceDetails) ValidateEnumValue() (bool, error) { | ||
errMessage := []string{} | ||
|
||
if len(errMessage) > 0 { | ||
return true, fmt.Errorf(strings.Join(errMessage, "\n")) | ||
} | ||
return false, nil | ||
} | ||
|
||
// MarshalJSON marshals to json representation | ||
func (m CreateDynamicPortForwardingSessionTargetResourceDetails) MarshalJSON() (buff []byte, e error) { | ||
type MarshalTypeCreateDynamicPortForwardingSessionTargetResourceDetails CreateDynamicPortForwardingSessionTargetResourceDetails | ||
s := struct { | ||
DiscriminatorParam string `json:"sessionType"` | ||
MarshalTypeCreateDynamicPortForwardingSessionTargetResourceDetails | ||
}{ | ||
"DYNAMIC_PORT_FORWARDING", | ||
(MarshalTypeCreateDynamicPortForwardingSessionTargetResourceDetails)(m), | ||
} | ||
|
||
return json.Marshal(&s) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
bastion/dynamic_port_forwarding_session_target_resource_details.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Copyright (c) 2016, 2018, 2022, 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. | ||
|
||
// Bastion API | ||
// | ||
// Use the Bastion API to provide restricted and time-limited access to target resources that don't have public endpoints. Bastions let authorized users connect from specific IP addresses to target resources using Secure Shell (SSH) sessions. For more information, see the Bastion documentation (https://docs.cloud.oracle.com/iaas/Content/Bastion/home.htm). | ||
// | ||
|
||
package bastion | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"github.com/oracle/oci-go-sdk/v65/common" | ||
"strings" | ||
) | ||
|
||
// DynamicPortForwardingSessionTargetResourceDetails Details about a dynamic port forwarding session for a target subnet. | ||
type DynamicPortForwardingSessionTargetResourceDetails struct { | ||
} | ||
|
||
func (m DynamicPortForwardingSessionTargetResourceDetails) 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 DynamicPortForwardingSessionTargetResourceDetails) ValidateEnumValue() (bool, error) { | ||
errMessage := []string{} | ||
|
||
if len(errMessage) > 0 { | ||
return true, fmt.Errorf(strings.Join(errMessage, "\n")) | ||
} | ||
return false, nil | ||
} | ||
|
||
// MarshalJSON marshals to json representation | ||
func (m DynamicPortForwardingSessionTargetResourceDetails) MarshalJSON() (buff []byte, e error) { | ||
type MarshalTypeDynamicPortForwardingSessionTargetResourceDetails DynamicPortForwardingSessionTargetResourceDetails | ||
s := struct { | ||
DiscriminatorParam string `json:"sessionType"` | ||
MarshalTypeDynamicPortForwardingSessionTargetResourceDetails | ||
}{ | ||
"DYNAMIC_PORT_FORWARDING", | ||
(MarshalTypeDynamicPortForwardingSessionTargetResourceDetails)(m), | ||
} | ||
|
||
return json.Marshal(&s) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.