Skip to content

Commit a65121c

Browse files
michaelkadpowervs-ibmismirlia
authored
Q1 2025 (#548)
* [U] SatelliteRegistration, [A] NetworkSecurityGroupMoveMember service-broker commit 55998a10580ef2d7235fd10c4d1d6ab2d3402044 (#508) Add SatelliteRegistration and NetworkSecurityGroupMoveMember * [A]NSG: Clone, Default NSG from service-broker commit fca4225bec9ae70fe3160737713c2a45968d07bb (#514) * [U] SAPCreate: StoragePoolAffinity from SB commit e5868f4e9c4b1f1a1960883441ecdc32b7ee76a2 (#515) [U] SAPCreate: StoragePoolAffinity * [A]PER & NSG: State SB commit 0acc5da65f5f28894eec914fa8a4a35e3e111334 (#518) [A]PER & NSG: State * [U] NSG_Member: NetworkInterfaceNetworkID from service-broker commit 4bda2161d91f044bcf0ad9c965b1cc752efd6bb2 (#524) [U] NSG_Member: NetworkInterfaceNetworkID * Generated Swagger client from service-broker commit 1e65fa935dd649a5252d754458d72c6cb9759a06 (#529) * [U]NSG: Add DestinationPort & SourcePort, NSG Clone Name string -> *string from SB commit 664fcee92df638bf8b99ff12db5970e04c2c2e27 (#534) [U]NSG: Add DestinationPort & SourcePort, NSG Clone Name string -> *string * [D]NetworkSecurityGroupID, [U] Add DedicatedHostID to PVMInstance, PVMInstanceReference, PvmInstanceHost & SharedProcessorPool from SB commit ed0f70abe9de6b59611a928835c828f543c54d3d (#537) [D]NetworkSecurityGroupID, [U] Add DedicatedHostID to PVMInstance, PVMInstanceReference, PvmInstanceHost & SharedProcessorPool * Add Parameters to Workspace (#519) Add Parameters to Workspace: address cmt * Revert Back Workspace Create (#539) * [U] PVMInstanceNetwork: NetworkSecurityGroupIDs from SB commit e5427434b8019f6bd214db1aa75ed42efb1473ea (#540) [U] PVMInstanceNetwork: NetworkSecurityGroupIDs * Add On-prem Check For NSG/NAG (#535) * Add On-prem Check For NSG/NAG * Update message * [U] Deprecate PcloudNetworksPorts, Add 409 to PcloudPvminstancesDelete, VolumeGroupCreate: name validation from SB commit d2085b28709a6251a8456f670e56ad17b4063858 (#543) [U] Deprecate PcloudNetworksPorts, Add 409 to PcloudPvminstancesDelete, VolumeGroupCreate: name validation * Standardize off/on prem error message (#544) * [U] AuxiliaryVolumeForOnboarding: name validation, PVMInstanceCreate: Replicants float64 to *float64 from SB commit 96aad14c803c9bdb0c57ca1ae5f67f4fbfe943c9 (#546) [U] AuxiliaryVolumeForOnboarding: name validation, PVMInstanceCreate: Replicants float64 to *float64 * Generated Swagger client from service-broker commit cc044d3b663c979d2cbb486c068bb2af06bac456 (#547) --------- Co-authored-by: powervs-ibm <[email protected]> Co-authored-by: ismirlia <[email protected]>
1 parent 99b37cb commit a65121c

File tree

113 files changed

+19382
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+19382
-102
lines changed

clients/instance/ibm-pi-clonevolumes.go

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"fmt"
66

77
"github.com/IBM-Cloud/power-go-client/errors"
8-
98
"github.com/IBM-Cloud/power-go-client/helpers"
109
"github.com/IBM-Cloud/power-go-client/ibmpisession"
1110
"github.com/IBM-Cloud/power-go-client/power/client/p_cloud_volumes"

clients/instance/ibm-pi-cloud-connection.go

+8-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66

77
"github.com/IBM-Cloud/power-go-client/errors"
88
"github.com/IBM-Cloud/power-go-client/helpers"
9-
109
"github.com/IBM-Cloud/power-go-client/ibmpisession"
1110
"github.com/IBM-Cloud/power-go-client/power/client/p_cloud_cloud_connections"
1211
"github.com/IBM-Cloud/power-go-client/power/models"
@@ -27,7 +26,7 @@ func NewIBMPICloudConnectionClient(ctx context.Context, sess *ibmpisession.IBMPI
2726
// Create a Cloud Connection
2827
func (f *IBMPICloudConnectionClient) Create(body *models.CloudConnectionCreate) (*models.CloudConnection, *models.CloudConnectionCreateResponse, error) {
2928
if f.session.IsOnPrem() {
30-
return nil, nil, fmt.Errorf("operation not supported in satellite location, check documentation")
29+
return nil, nil, fmt.Errorf(helpers.NotOnPremSupported)
3130
}
3231
params := p_cloud_cloud_connections.NewPcloudCloudconnectionsPostParams().
3332
WithContext(f.ctx).WithTimeout(helpers.PICreateTimeOut).
@@ -51,7 +50,7 @@ func (f *IBMPICloudConnectionClient) Create(body *models.CloudConnectionCreate)
5150
// Get a Cloud Connection
5251
func (f *IBMPICloudConnectionClient) Get(id string) (*models.CloudConnection, error) {
5352
if f.session.IsOnPrem() {
54-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
53+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
5554
}
5655
params := p_cloud_cloud_connections.NewPcloudCloudconnectionsGetParams().
5756
WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).
@@ -69,7 +68,7 @@ func (f *IBMPICloudConnectionClient) Get(id string) (*models.CloudConnection, er
6968
// Get All Cloud Connections
7069
func (f *IBMPICloudConnectionClient) GetAll() (*models.CloudConnections, error) {
7170
if f.session.IsOnPrem() {
72-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
71+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
7372
}
7473
params := p_cloud_cloud_connections.NewPcloudCloudconnectionsGetallParams().
7574
WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).
@@ -87,7 +86,7 @@ func (f *IBMPICloudConnectionClient) GetAll() (*models.CloudConnections, error)
8786
// Update a Cloud Connection
8887
func (f *IBMPICloudConnectionClient) Update(id string, body *models.CloudConnectionUpdate) (*models.CloudConnection, *models.JobReference, error) {
8988
if f.session.IsOnPrem() {
90-
return nil, nil, fmt.Errorf("operation not supported in satellite location, check documentation")
89+
return nil, nil, fmt.Errorf(helpers.NotOnPremSupported)
9190
}
9291
params := p_cloud_cloud_connections.NewPcloudCloudconnectionsPutParams().
9392
WithContext(f.ctx).WithTimeout(helpers.PIUpdateTimeOut).
@@ -109,7 +108,7 @@ func (f *IBMPICloudConnectionClient) Update(id string, body *models.CloudConnect
109108
// Delete a Cloud Connection
110109
func (f *IBMPICloudConnectionClient) Delete(id string) (*models.JobReference, error) {
111110
if f.session.IsOnPrem() {
112-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
111+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
113112
}
114113
params := p_cloud_cloud_connections.NewPcloudCloudconnectionsDeleteParams().
115114
WithContext(f.ctx).WithTimeout(helpers.PIDeleteTimeOut).
@@ -127,7 +126,7 @@ func (f *IBMPICloudConnectionClient) Delete(id string) (*models.JobReference, er
127126
// Add a Network to a Cloud Connection
128127
func (f *IBMPICloudConnectionClient) AddNetwork(id, networkID string) (models.Object, *models.JobReference, error) {
129128
if f.session.IsOnPrem() {
130-
return nil, nil, fmt.Errorf("operation not supported in satellite location, check documentation")
129+
return nil, nil, fmt.Errorf(helpers.NotOnPremSupported)
131130
}
132131
params := p_cloud_cloud_connections.NewPcloudCloudconnectionsNetworksPutParams().
133132
WithContext(f.ctx).WithTimeout(helpers.PIUpdateTimeOut).
@@ -149,7 +148,7 @@ func (f *IBMPICloudConnectionClient) AddNetwork(id, networkID string) (models.Ob
149148
// Delete a Network from a Cloud Connection
150149
func (f *IBMPICloudConnectionClient) DeleteNetwork(id, networkID string) (models.Object, *models.JobReference, error) {
151150
if f.session.IsOnPrem() {
152-
return nil, nil, fmt.Errorf("operation not supported in satellite location, check documentation")
151+
return nil, nil, fmt.Errorf(helpers.NotOnPremSupported)
153152
}
154153
params := p_cloud_cloud_connections.NewPcloudCloudconnectionsNetworksDeleteParams().
155154
WithContext(f.ctx).WithTimeout(helpers.PIDeleteTimeOut).
@@ -171,7 +170,7 @@ func (f *IBMPICloudConnectionClient) DeleteNetwork(id, networkID string) (models
171170
// Get all VPCs for a Cloud Instance
172171
func (f *IBMPICloudConnectionClient) GetVPC() (*models.CloudConnectionVirtualPrivateClouds, error) {
173172
if f.session.IsOnPrem() {
174-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
173+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
175174
}
176175
params := p_cloud_cloud_connections.NewPcloudCloudconnectionsVirtualprivatecloudsGetallParams().
177176
WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).

clients/instance/ibm-pi-cloud-instance.go

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66

77
"github.com/IBM-Cloud/power-go-client/errors"
88
"github.com/IBM-Cloud/power-go-client/helpers"
9-
109
"github.com/IBM-Cloud/power-go-client/ibmpisession"
1110
"github.com/IBM-Cloud/power-go-client/power/client/p_cloud_instances"
1211
"github.com/IBM-Cloud/power-go-client/power/models"

clients/instance/ibm-pi-dhcp.go

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66

77
"github.com/IBM-Cloud/power-go-client/errors"
88
"github.com/IBM-Cloud/power-go-client/helpers"
9-
109
"github.com/IBM-Cloud/power-go-client/ibmpisession"
1110
"github.com/IBM-Cloud/power-go-client/power/client/p_cloud_service_d_h_c_p"
1211
"github.com/IBM-Cloud/power-go-client/power/models"

clients/instance/ibm-pi-host-groups.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func NewIBMPIHostGroupsClient(ctx context.Context, sess *ibmpisession.IBMPISessi
2525
// Get All available hosts
2626
func (f *IBMPIHostGroupsClient) GetAvailableHosts() (models.AvailableHostList, error) {
2727
if f.session.IsOnPrem() {
28-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
28+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
2929
}
3030
params := host_groups.NewV1AvailableHostsParams().WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut)
3131
resp, err := f.session.Power.HostGroups.V1AvailableHosts(params, f.session.AuthInfo(f.cloudInstanceID))
@@ -42,7 +42,7 @@ func (f *IBMPIHostGroupsClient) GetAvailableHosts() (models.AvailableHostList, e
4242
// Get all host groups
4343
func (f *IBMPIHostGroupsClient) GetHostGroups() (models.HostGroupList, error) {
4444
if f.session.IsOnPrem() {
45-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
45+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
4646
}
4747
params := host_groups.NewV1HostGroupsGetParams().WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut)
4848
resp, err := f.session.Power.HostGroups.V1HostGroupsGet(params, f.session.AuthInfo(f.cloudInstanceID))
@@ -59,7 +59,7 @@ func (f *IBMPIHostGroupsClient) GetHostGroups() (models.HostGroupList, error) {
5959
// Create a host group
6060
func (f *IBMPIHostGroupsClient) CreateHostGroup(body *models.HostGroupCreate) (*models.HostGroup, error) {
6161
if f.session.IsOnPrem() {
62-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
62+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
6363
}
6464
params := host_groups.NewV1HostGroupsPostParams().WithContext(f.ctx).WithTimeout(helpers.PICreateTimeOut).WithBody(body)
6565
resp, err := f.session.Power.HostGroups.V1HostGroupsPost(params, f.session.AuthInfo(f.cloudInstanceID))
@@ -76,7 +76,7 @@ func (f *IBMPIHostGroupsClient) CreateHostGroup(body *models.HostGroupCreate) (*
7676
// Update a host group
7777
func (f *IBMPIHostGroupsClient) UpdateHostGroup(body *models.HostGroupShareOp, id string) (*models.HostGroup, error) {
7878
if f.session.IsOnPrem() {
79-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
79+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
8080
}
8181
params := host_groups.NewV1HostGroupsIDPutParams().WithContext(f.ctx).WithTimeout(helpers.PICreateTimeOut).WithBody(body).WithHostGroupID(id)
8282
resp, err := f.session.Power.HostGroups.V1HostGroupsIDPut(params, f.session.AuthInfo(f.cloudInstanceID))
@@ -93,7 +93,7 @@ func (f *IBMPIHostGroupsClient) UpdateHostGroup(body *models.HostGroupShareOp, i
9393
// Get a host group
9494
func (f *IBMPIHostGroupsClient) GetHostGroup(id string) (*models.HostGroup, error) {
9595
if f.session.IsOnPrem() {
96-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
96+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
9797
}
9898
params := host_groups.NewV1HostGroupsIDGetParams().WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).WithHostGroupID(id)
9999
resp, err := f.session.Power.HostGroups.V1HostGroupsIDGet(params, f.session.AuthInfo(f.cloudInstanceID))
@@ -110,7 +110,7 @@ func (f *IBMPIHostGroupsClient) GetHostGroup(id string) (*models.HostGroup, erro
110110
// Get all hosts
111111
func (f *IBMPIHostGroupsClient) GetHosts() (models.HostList, error) {
112112
if f.session.IsOnPrem() {
113-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
113+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
114114
}
115115
hostReference := true
116116
params := host_groups.NewV1HostsGetParams().WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut)
@@ -129,7 +129,7 @@ func (f *IBMPIHostGroupsClient) GetHosts() (models.HostList, error) {
129129
// Create a host
130130
func (f *IBMPIHostGroupsClient) CreateHost(body *models.HostCreate) (models.HostList, error) {
131131
if f.session.IsOnPrem() {
132-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
132+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
133133
}
134134
params := host_groups.NewV1HostsPostParams().WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).WithBody(body)
135135
resp, err := f.session.Power.HostGroups.V1HostsPost(params, f.session.AuthInfo(f.cloudInstanceID))
@@ -146,7 +146,7 @@ func (f *IBMPIHostGroupsClient) CreateHost(body *models.HostCreate) (models.Host
146146
// Get a host
147147
func (f *IBMPIHostGroupsClient) GetHost(id string) (*models.Host, error) {
148148
if f.session.IsOnPrem() {
149-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
149+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
150150
}
151151
hostReference := true
152152
params := host_groups.NewV1HostsIDGetParams().WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).WithHostID(id)
@@ -165,7 +165,7 @@ func (f *IBMPIHostGroupsClient) GetHost(id string) (*models.Host, error) {
165165
// Update a host
166166
func (f *IBMPIHostGroupsClient) UpdateHost(body *models.HostPut, id string) (*models.Host, error) {
167167
if f.session.IsOnPrem() {
168-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
168+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
169169
}
170170
params := host_groups.NewV1HostsIDPutParams().WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).WithHostID(id).WithBody(body)
171171
resp, err := f.session.Power.HostGroups.V1HostsIDPut(params, f.session.AuthInfo(f.cloudInstanceID))
@@ -182,7 +182,7 @@ func (f *IBMPIHostGroupsClient) UpdateHost(body *models.HostPut, id string) (*mo
182182
// Delete a host
183183
func (f *IBMPIHostGroupsClient) DeleteHost(id string) error {
184184
if f.session.IsOnPrem() {
185-
return fmt.Errorf("operation not supported in satellite location, check documentation")
185+
return fmt.Errorf(helpers.NotOnPremSupported)
186186
}
187187
params := host_groups.NewV1HostsIDDeleteParams().WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).WithHostID(id)
188188
resp, err := f.session.Power.HostGroups.V1HostsIDDelete(params, f.session.AuthInfo(f.cloudInstanceID))

clients/instance/ibm-pi-image.go

+3-5
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/IBM/go-sdk-core/v5/core"
8-
97
"github.com/IBM-Cloud/power-go-client/errors"
10-
118
"github.com/IBM-Cloud/power-go-client/helpers"
129
"github.com/IBM-Cloud/power-go-client/ibmpisession"
1310
"github.com/IBM-Cloud/power-go-client/power/client/p_cloud_images"
1411
"github.com/IBM-Cloud/power-go-client/power/models"
12+
"github.com/IBM/go-sdk-core/v5/core"
1513
)
1614

1715
// IBMPIImageClient
@@ -81,7 +79,7 @@ func (f *IBMPIImageClient) Create(body *models.CreateImage) (*models.Image, erro
8179
func (f *IBMPIImageClient) CreateCosImage(body *models.CreateCosImageImportJob) (imageJob *models.JobReference, err error) {
8280
// Check for satellite differences in this endpoint
8381
if !f.session.IsOnPrem() && body.Checksum {
84-
return nil, fmt.Errorf("checksum parameter is not supported off-premise")
82+
return nil, fmt.Errorf("checksum parameter is not supported in off-prem location")
8583
}
8684
params := p_cloud_images.NewPcloudV1CloudinstancesCosimagesPostParams().
8785
WithContext(f.ctx).WithTimeout(helpers.PICreateTimeOut).
@@ -100,7 +98,7 @@ func (f *IBMPIImageClient) CreateCosImage(body *models.CreateCosImageImportJob)
10098
func (f *IBMPIImageClient) ExportImage(id string, body *models.ExportImage) (*models.JobReference, error) {
10199
// Check for satellite differences in this endpoint
102100
if !f.session.IsOnPrem() && body.Checksum {
103-
return nil, fmt.Errorf("checksum parameter is not supported off-premise")
101+
return nil, fmt.Errorf("checksum parameter is not supported in off-prem location")
104102
}
105103
params := p_cloud_images.NewPcloudV2ImagesExportPostParams().
106104
WithContext(f.ctx).WithTimeout(helpers.PICreateTimeOut).

clients/instance/ibm-pi-instance.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func (f *IBMPIInstanceClient) GetAll() (*models.PVMInstances, error) {
5656
func (f *IBMPIInstanceClient) Create(body *models.PVMInstanceCreate) (*models.PVMInstanceList, error) {
5757
// Check for satellite differences in this endpoint
5858
if f.session.IsOnPrem() && (body.DeploymentTarget != nil || body.DeploymentType != "") {
59-
return nil, fmt.Errorf("deployment target and deployment type parameters are not supported in satellite location, check documentation")
59+
return nil, fmt.Errorf("deployment target and deployment type parameters are not supported in satellite location")
6060
}
6161
params := p_cloud_p_vm_instances.NewPcloudPvminstancesPostParams().
6262
WithContext(f.ctx).WithTimeout(helpers.PICreateTimeOut).
@@ -105,7 +105,7 @@ func (f *IBMPIInstanceClient) DeleteWithBody(id string, body *models.PVMInstance
105105
func (f *IBMPIInstanceClient) Update(id string, body *models.PVMInstanceUpdate) (*models.PVMInstanceUpdateResponse, error) {
106106
// Check for satellite differences in this endpoint
107107
if f.session.IsOnPrem() && body.SapProfileID != "" {
108-
return nil, fmt.Errorf("sap profile id parameter is not supported in satellite location, check documentation")
108+
return nil, fmt.Errorf("sap profile id parameter is not supported in satellite location")
109109
}
110110
params := p_cloud_p_vm_instances.NewPcloudPvminstancesPutParams().
111111
WithContext(f.ctx).WithTimeout(helpers.PICreateTimeOut).
@@ -152,7 +152,7 @@ func (f *IBMPIInstanceClient) PostConsoleURL(id string) (*models.PVMInstanceCons
152152
// List the available Console Languages for an Instance
153153
func (f *IBMPIInstanceClient) GetConsoleLanguages(id string) (*models.ConsoleLanguages, error) {
154154
if f.session.IsOnPrem() {
155-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
155+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
156156
}
157157
params := p_cloud_p_vm_instances.NewPcloudPvminstancesConsoleGetParams().
158158
WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).
@@ -170,7 +170,7 @@ func (f *IBMPIInstanceClient) GetConsoleLanguages(id string) (*models.ConsoleLan
170170
// Update the available Console Languages for an Instance
171171
func (f *IBMPIInstanceClient) UpdateConsoleLanguage(id string, body *models.ConsoleLanguage) (*models.ConsoleLanguage, error) {
172172
if f.session.IsOnPrem() {
173-
return nil, fmt.Errorf("operation not supported in satellite location, check documentation")
173+
return nil, fmt.Errorf(helpers.NotOnPremSupported)
174174
}
175175
params := p_cloud_p_vm_instances.NewPcloudPvminstancesConsolePutParams().
176176
WithContext(f.ctx).WithTimeout(helpers.PIUpdateTimeOut).
@@ -190,7 +190,7 @@ func (f *IBMPIInstanceClient) UpdateConsoleLanguage(id string, body *models.Cons
190190
func (f *IBMPIInstanceClient) CaptureInstanceToImageCatalog(id string, body *models.PVMInstanceCapture) error {
191191
// Check for satellite differences in this endpoint
192192
if !f.session.IsOnPrem() && body.Checksum {
193-
return fmt.Errorf("checksum parameter is not supported off-premise")
193+
return fmt.Errorf("checksum parameter is not supported in off-prem location")
194194
}
195195
params := p_cloud_p_vm_instances.NewPcloudPvminstancesCapturePostParams().
196196
WithContext(f.ctx).WithTimeout(helpers.PIGetTimeOut).

clients/instance/ibm-pi-job.go

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66

77
"github.com/IBM-Cloud/power-go-client/errors"
88
"github.com/IBM-Cloud/power-go-client/helpers"
9-
109
"github.com/IBM-Cloud/power-go-client/ibmpisession"
1110
"github.com/IBM-Cloud/power-go-client/power/client/p_cloud_jobs"
1211
"github.com/IBM-Cloud/power-go-client/power/models"

clients/instance/ibm-pi-key.go

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66

77
"github.com/IBM-Cloud/power-go-client/errors"
88
"github.com/IBM-Cloud/power-go-client/helpers"
9-
109
"github.com/IBM-Cloud/power-go-client/ibmpisession"
1110
"github.com/IBM-Cloud/power-go-client/power/client/p_cloud_tenants_ssh_keys"
1211
"github.com/IBM-Cloud/power-go-client/power/models"

0 commit comments

Comments
 (0)