The OCI Modules for PowerShell support the use of environment variables in a PowerShell
session to specify values some optional common parameters. These environment variables can be configured
directly in the PowerShell session or by using the Set-OCIClientSession
cmdlet. Values assigned to these environment variables are used for making API calls
only in the PowerShell session in which they are set.
Set Environment Variables Directly from
PowerShell
The following environment variables can be used to specify values
for some parameters used by the OCI Modules for PowerShell:
To remove a session preference environment variable, run the
Clear-OCIClientSession cmdlet with the appropriate
parameters.
Get-OCIClientSession
The Get-OCIClientSession cmdlet in the common module is used to
retrieve the session preference values set for the common parameters from the current PowerShell session.
The value specified in the user-selected profile of the OCI configuration file
located at ~/.oci/config.
Note
The OCI Modules for PowerShell use the DEFAULT profile as a fall
back profile. Any value that isn't explicitly defined for a given profile is
inherited from the DEFAULT profile.
History Store 🔗
By default, OCI Cmdlets output the response body of the underlying REST API operation.
The history store provides users with a PowerShell variable that can be used to look
into OCI Cmdlet invocations and their complete API responses from OCI services.
Note
Each PowerShell session gets its own history store.
You can use the history store to:
Use the previous Cmdlet's response object values in the next Cmdlet
Inspect the complete API response, including the response headers - for
example, the use of e-tags for optimistic concurrency, or the
OpcNextPage header for pagination
Examine cmdlet invocation sequences for diagnostic purposes
The history store is encapsulated as an
Oci.PSModules.Common.Cmdlets.CmdletHistory.OCICmdletHistoryStore
object in a PowerShell variable named
$OCICmdletHistory.
Indicates the maximum number of commands that can be saved in the history store. The
default value is 20. Valid values are from 1 and 100000 (inclusive). To modify the
size of history store, use Set-OCICmdletHistory.
Note
We recommend keeping the history size to a minimum to limit memory
usage.
Entries
Collection of
Oci.PSModules.Common.Cmdlets.CmdletHistory.OCICmdletHistory
objects that allows indexed access to the stored history.
The Oci.PSModules.Common.Cmdlets.CmdletHistory.OCICmdletHistory
object has the following properties:
A System.Management.Automation.PSObject object encapsulating the
last OCI Cmdlet response in a PowerShell session.
History Store Cmdlets 🔗
Oci.PSModules.Common module provides the
following cmdlets for working with the History Store. See the GitHub example.
Get-OCICmdletHistory
Gets the cmdlet history stored in the current PowerShell session.
Set-OCICmdletHistory
Sets properties of the history store.
Clear-OCICmdletHistory
Deletes the cmdlet history stored in the current PowerShell session.
Pagination 🔗
OCI Cmdlets that invokes list API operations have the ability to paginate results,
allowing you to retrieve the available results in batches (automatically following
pagination tokens) until no more records are available.
Note
Examples in this topic call the ListImages operation in the Compute service. Be sure to import OCI.PSModules.Core before trying out the examples in this section.
Get First Page Results
The default behavior of a cmdlet that supports pagination is to get only the first
page of results when invoked without the -Page parameter specified.
For example, to get the first page of compute images available invoke the Get-OCIComputeImagesList with your compartment ID:
The -Page parameter is used to get the next page of results by
passing the pagination token from the `opc-next-page` response header contained in
the previous cmdlet response.
Note
You can use the history
store to get the previous cmdlet response.
This example shows how to retrieve the results remaining from a previous
paginated call by passing the
$OCICmdletHistory.LastResponse.OpcNextPage property from
the history store as the argument to the -Page parameter:.
OCI Cmdlets that support pagination can auto paginate and fetch results from all
available pages. Let the cmdlet do the pagination by passing -All
switch parameter when running the cmdlet.
Most Oracle Cloud Infrastructure resources, such as compute instances, have
lifecycles. In many cases, you want your command to wait until a resource or
work request reaches a specific
state, or a timeout is exceeded, before taking further action. You can poll a resource
to determine its state.
OCI Modules for PowerShell offer waiter parameters that allow your cmdlet to wait until a
resource reaches a desired state. A cmdlet with waiter parameters can be invoked in a
blocking manner to wait until either one of the desired states is reached or a timeout
is exceeded. Waiters abstract the polling logic that you would otherwise have to add
before taking further actions on a resource or a workrequest.
For example, when you call LaunchInstance in the Compute service, the response header contains a work-request-id. The OCI Modules for PowerShell uses this ID when you specify the -WaitForStatus parameter, which causes your script to wait until the work request succeeds before proceeding.
For
example:
#Create a new compute instance and wait for the instance work request to succeed or fail,
#polling every 60 seconds and attempting 20 times max
$ComputeInstance = New-OCIComputeInstance -LaunchInstanceDetails $LaunchDetails -WaitForStatus Succeeded,Failed -MaxWaitAttempts 20 -WaitIntervalSeconds 60
Waiter parameters 🔗
This section describes the parameters used for asynchronous calls.
WaitForStatus
Specify this parameter to perform the action and then wait until the resource reaches
the desired lifecycle state. Multiple states can be specified, returning when the
resource reaches one of the desired states.
WaitIntervalSeconds
Check every WaitIntervalSeconds to see whether the resource has reached one of the
desired states. Default value for this parameter is 30 seconds.
MaxWaitAttempts
Maximum number of attempts to be made until the resource reaches one of the desired
states. Default value for this parameter is 3 attempts.
Note
Currently, OCI Cmdlets do not accept maximum wait time for cmdlets that support
waiters. You can work around this limitation by controlling the values of
MaxWaitAttempts and/or WaitIntervalSeconds.
On successful completion, the cmdlet returns the original response object received.
In case of an error like the resource failing to reach the desired state within the
given limits, an exception containing the error message would be thrown.
Stream Inputs and Outputs 🔗
Some OCI Cmdlets interact with APIs that accept or return stream type objects (for
example, the InvokeFunctions operation in the Functions service). These
OCI cmdlets accept parameters that can take a file path and implicitly convert files to
streams and back.
Note
You can either pass a stream parameter or the equivalent file
parameter, but not both.
The file input parameter is named after the
corresponding stream input parameter and file output parameter is named as
OutputFile.
Note
For an example, see the help text for the
Invoke-OCIFunctionsInvokeFunction cmdlet in
OCI.PSModules.Functions.
To facilitate troubleshooting, OCI Modules for PowerShell supports logging
debug- and verbose-level messages on the console
in addition to error messages. This feature has been integrated with the standard
PowerShell Debug and Verbose parameters.
Pass the -Debug or -Verbose parameters in the cmdlet
invocation to see log messages on the console.
Instance principals is an IAM service feature that enables instances to be
authorized actors (or principals) that can perform actions on service resources. Each
compute instance has its own identity, and it authenticates using the certificates that
are added to it. These certificates are automatically created, assigned to instances and
rotated, preventing the need for you to distribute credentials to your hosts and rotate
them.
Dedicated endpoints are the endpoint templates defined by the service for a specific
realm at the client level. The OCI Modules for PowerShell allow you to enable the use of
this realm-specific endpoint templates feature at both the application level and at the
client level. This feature is disabled by default.
Note
The value
set at client level takes precedence over the value set at the application
level.
Enabling realm-specific endpoint templates at the application level:
To enable the realm-specific endpoint templates feature at the application level, set the
environment variable
OCI_REALM_SPECIFIC_SERVICE_ENDPOINT_TEMPLATE_ENABLED to
true.
Note
The boolean value is
case-insensitive.
Enabling realm-specific endpoint templates at the client level:
To enable the realm-specific endpoint templates feature at the client level, set the flag
in code as shown
below: