func GetGenericArtifactLifecycleStateEnumStringValues() []string
GetGenericArtifactLifecycleStateEnumStringValues Enumerates the set of values in String for GenericArtifactLifecycleStateEnum
GenericArtifact The metadata of the artifact.
type GenericArtifact struct { // The OCID (https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the artifact. // Example: `ocid1.genericartifact.oc1..exampleuniqueID` Id *string `mandatory:"true" json:"id"` // The artifact name with the format of `<artifact-path>:<artifact-version>`. The artifact name is truncated to a maximum length of 255. // Example: `project01/my-web-app/artifact-abc:1.0.0` DisplayName *string `mandatory:"true" json:"displayName"` // The OCID (https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the repository's compartment. CompartmentId *string `mandatory:"true" json:"compartmentId"` // The OCID (https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the repository. RepositoryId *string `mandatory:"true" json:"repositoryId"` // A user-defined path to describe the location of an artifact. Slashes do not create a directory structure, but you can use slashes to organize the repository. An artifact path does not include an artifact version. // Example: `project01/my-web-app/artifact-abc` ArtifactPath *string `mandatory:"true" json:"artifactPath"` // A user-defined string to describe the artifact version. // Example: `1.1.0` or `1.2-beta-2` Version *string `mandatory:"true" json:"version"` // The SHA256 digest for the artifact. When you upload an artifact to the repository, a SHA256 digest is calculated and added to the artifact properties. Sha256 *string `mandatory:"true" json:"sha256"` // The size of the artifact in bytes. SizeInBytes *int64 `mandatory:"true" json:"sizeInBytes"` // The current state of the artifact. LifecycleState GenericArtifactLifecycleStateEnum `mandatory:"true" json:"lifecycleState"` // Free-form tags for this resource. Each tag is a simple key-value pair with no // predefined name, type, or namespace. For more information, see Resource Tags (https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Department": "Finance"}` FreeformTags map[string]string `mandatory:"true" json:"freeformTags"` // Defined tags for this resource. Each key is predefined and scoped to a // namespace. For more information, see Resource Tags (https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). // Example: `{"Operations": {"CostCenter": "42"}}` DefinedTags map[string]map[string]interface{} `mandatory:"true" json:"definedTags"` // An RFC 3339 timestamp indicating when the repository was created. TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"` }
func (m GenericArtifact) String() string
func (m GenericArtifact) ValidateEnumValue() (bool, error)
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
GenericArtifactLifecycleStateEnum Enum with underlying type: string
type GenericArtifactLifecycleStateEnum string
Set of constants representing the allowable values for GenericArtifactLifecycleStateEnum
const ( GenericArtifactLifecycleStateAvailable GenericArtifactLifecycleStateEnum = "AVAILABLE" GenericArtifactLifecycleStateDeleting GenericArtifactLifecycleStateEnum = "DELETING" GenericArtifactLifecycleStateDeleted GenericArtifactLifecycleStateEnum = "DELETED" )
func GetGenericArtifactLifecycleStateEnumValues() []GenericArtifactLifecycleStateEnum
GetGenericArtifactLifecycleStateEnumValues Enumerates the set of values for GenericArtifactLifecycleStateEnum
func GetMappingGenericArtifactLifecycleStateEnum(val string) (GenericArtifactLifecycleStateEnum, bool)
GetMappingGenericArtifactLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
GenericArtifactsContentClient a client for GenericArtifactsContent
type GenericArtifactsContentClient struct { common.BaseClient // contains filtered or unexported fields }
func NewGenericArtifactsContentClientWithConfigurationProvider(configProvider common.ConfigurationProvider) (client GenericArtifactsContentClient, err error)
NewGenericArtifactsContentClientWithConfigurationProvider Creates a new default GenericArtifactsContent client with the given configuration provider. the configuration provider will be used for the default signer as well as reading the region
func NewGenericArtifactsContentClientWithOboToken(configProvider common.ConfigurationProvider, oboToken string) (client GenericArtifactsContentClient, err error)
NewGenericArtifactsContentClientWithOboToken Creates a new default GenericArtifactsContent 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 (client *GenericArtifactsContentClient) ConfigurationProvider() *common.ConfigurationProvider
ConfigurationProvider the ConfigurationProvider used in this client, or null if none set
func (client GenericArtifactsContentClient) GetGenericArtifactContent(ctx context.Context, request GetGenericArtifactContentRequest) (response GetGenericArtifactContentResponse, err error)
GetGenericArtifactContent Gets the specified artifact's content.
Click https://docs.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) GetGenericArtifactContentByPath(ctx context.Context, request GetGenericArtifactContentByPathRequest) (response GetGenericArtifactContentByPathResponse, err error)
GetGenericArtifactContentByPath Gets the content of an artifact with a specified `artifactPath` and `version`.
Click https://docs.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) PutGenericArtifactContentByPath(ctx context.Context, request PutGenericArtifactContentByPathRequest) (response PutGenericArtifactContentByPathResponse, err error)
PutGenericArtifactContentByPath Uploads an artifact. Provide `artifactPath`, `version` and content. Avoid entering confidential information when you define the path and version.
Click https://docs.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) SetRegion(region string)
SetRegion overrides the region of this client.
GetGenericArtifactContentByPathRequest wrapper for the GetGenericArtifactContentByPath operation
Click https://docs.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/genericartifactscontent/GetGenericArtifactContentByPath.go.html to see an example of how to use GetGenericArtifactContentByPathRequest.
type GetGenericArtifactContentByPathRequest struct { // The OCID (https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the repository. // Example: `ocid1.repository.oc1..exampleuniqueID` RepositoryId *string `mandatory:"true" contributesTo:"path" name:"repositoryId"` // A user-defined path to describe the location of an artifact. You can use slashes to organize the repository, but slashes do not create a directory structure. An artifact path does not include an artifact version. // Example: `project01/my-web-app/artifact-abc` ArtifactPath *string `mandatory:"true" contributesTo:"path" name:"artifactPath"` // A user-defined string to describe the artifact version. // Example: `1.1.2` or `1.2-beta-2` Version *string `mandatory:"true" contributesTo:"path" name:"version"` // Unique Oracle-assigned request ID (https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm) // Example: `bxxxxxxx-fxxx-4xxx-9xxx-bxxxxxxxxxxx` // If you contact Oracle about a request, provide this request ID. 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 GetGenericArtifactContentByPathRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool)
BinaryRequestBody implements the OCIRequest interface
func (request GetGenericArtifactContentByPathRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (request GetGenericArtifactContentByPathRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (request GetGenericArtifactContentByPathRequest) String() string
func (request GetGenericArtifactContentByPathRequest) ValidateEnumValue() (bool, error)
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
GetGenericArtifactContentByPathResponse wrapper for the GetGenericArtifactContentByPath operation
type GetGenericArtifactContentByPathResponse struct { // The underlying http response RawResponse *http.Response // The io.ReadCloser instance Content io.ReadCloser `presentIn:"body" encoding:"binary"` // 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 GetGenericArtifactContentByPathResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (response GetGenericArtifactContentByPathResponse) String() string
GetGenericArtifactContentRequest wrapper for the GetGenericArtifactContent operation
Click https://docs.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/genericartifactscontent/GetGenericArtifactContent.go.html to see an example of how to use GetGenericArtifactContentRequest.
type GetGenericArtifactContentRequest struct { // The OCID (https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the artifact. // Example: `ocid1.genericartifact.oc1..exampleuniqueID` ArtifactId *string `mandatory:"true" contributesTo:"path" name:"artifactId"` // Unique Oracle-assigned request ID (https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm) // Example: `bxxxxxxx-fxxx-4xxx-9xxx-bxxxxxxxxxxx` // If you contact Oracle about a request, provide this request ID. 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 GetGenericArtifactContentRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool)
BinaryRequestBody implements the OCIRequest interface
func (request GetGenericArtifactContentRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (request GetGenericArtifactContentRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (request GetGenericArtifactContentRequest) String() string
func (request GetGenericArtifactContentRequest) ValidateEnumValue() (bool, error)
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
GetGenericArtifactContentResponse wrapper for the GetGenericArtifactContent operation
type GetGenericArtifactContentResponse struct { // The underlying http response RawResponse *http.Response // The io.ReadCloser instance Content io.ReadCloser `presentIn:"body" encoding:"binary"` // 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 GetGenericArtifactContentResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (response GetGenericArtifactContentResponse) String() string
PutGenericArtifactContentByPathRequest wrapper for the PutGenericArtifactContentByPath operation
Click https://docs.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/genericartifactscontent/PutGenericArtifactContentByPath.go.html to see an example of how to use PutGenericArtifactContentByPathRequest.
type PutGenericArtifactContentByPathRequest struct { // The OCID (https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the repository. // Example: `ocid1.repository.oc1..exampleuniqueID` RepositoryId *string `mandatory:"true" contributesTo:"path" name:"repositoryId"` // A user-defined path to describe the location of an artifact. You can use slashes to organize the repository, but slashes do not create a directory structure. An artifact path does not include an artifact version. // Example: `project01/my-web-app/artifact-abc` ArtifactPath *string `mandatory:"true" contributesTo:"path" name:"artifactPath"` // A user-defined string to describe the artifact version. // Example: `1.1.2` or `1.2-beta-2` Version *string `mandatory:"true" contributesTo:"path" name:"version"` // Uploads an artifact. Provide artifact path, version and content. Avoid entering confidential information when you define the path and version. GenericArtifactContentBody io.ReadCloser `mandatory:"true" contributesTo:"body" encoding:"binary"` // 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. When 'if-match' is provided and its value does not exactly match the 'etag' of the resource on the server, the request fails with the 412 response code. IfMatch *string `mandatory:"false" contributesTo:"header" name:"if-match"` // Unique Oracle-assigned request ID (https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm) // Example: `bxxxxxxx-fxxx-4xxx-9xxx-bxxxxxxxxxxx` // If you contact Oracle about a request, provide this request ID. 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 PutGenericArtifactContentByPathRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool)
BinaryRequestBody implements the OCIRequest interface
func (request PutGenericArtifactContentByPathRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error)
HTTPRequest implements the OCIRequest interface
func (request PutGenericArtifactContentByPathRequest) RetryPolicy() *common.RetryPolicy
RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
func (request PutGenericArtifactContentByPathRequest) String() string
func (request PutGenericArtifactContentByPathRequest) ValidateEnumValue() (bool, error)
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
PutGenericArtifactContentByPathResponse wrapper for the PutGenericArtifactContentByPath operation
type PutGenericArtifactContentByPathResponse struct { // The underlying http response RawResponse *http.Response // The GenericArtifact instance GenericArtifact `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 PutGenericArtifactContentByPathResponse) HTTPResponse() *http.Response
HTTPResponse implements the OCIResponse interface
func (response PutGenericArtifactContentByPathResponse) String() string