Skip to content

Commit

Permalink
fix: update casing for some mounts and properties (#816)
Browse files Browse the repository at this point in the history
  • Loading branch information
childish-sambino authored Nov 3, 2022
1 parent 4cce57c commit 65eddb6
Show file tree
Hide file tree
Showing 8 changed files with 151 additions and 151 deletions.
8 changes: 4 additions & 4 deletions lib/rest/accounts/v1/credential.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ import { inspect, InspectOptions } from "util";
import V1 from "../V1";
const deserialize = require("../../../base/deserialize");
const serialize = require("../../../base/serialize");
import { AWSListInstance } from "./credential/aws";
import { AwsListInstance } from "./credential/aws";
import { PublicKeyListInstance } from "./credential/publicKey";



export interface CredentialListInstance {

aws: AWSListInstance;
aws: AwsListInstance;
publicKey: PublicKeyListInstance;

/**
Expand All @@ -43,7 +43,7 @@ class CredentialListInstanceImpl implements CredentialListInstance {
_solution?: CredentialSolution;
_uri?: string;

_aws?: AWSListInstance;
_aws?: AwsListInstance;
_publicKey?: PublicKeyListInstance;
}

Expand All @@ -57,7 +57,7 @@ export function CredentialListInstance(version: V1): CredentialListInstance {
Object.defineProperty(instance, "aws", {
get: function aws() {
if (!this._aws) {
this._aws = AWSListInstance(this._version);
this._aws = AwsListInstance(this._version);
}
return this._aws;
}
Expand Down
Loading

0 comments on commit 65eddb6

Please sign in to comment.