Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

[AutoPR hanaonazure/resource-manager] Add new field 'proximityPlacementGroup' to properties of HanaInstance #4597

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions lib/services/hanaonazureManagement/lib/models/hanaInstance.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ class HanaInstance extends models['Resource'] {
* @property {string} [powerState] Resource power state. Possible values
* include: 'starting', 'started', 'stopping', 'stopped', 'restarting',
* 'unknown'
* @property {string} [proximityPlacementGroup] Resource proximity placement
* group
*/
constructor() {
super();
Expand Down Expand Up @@ -166,6 +168,14 @@ class HanaInstance extends models['Resource'] {
type: {
name: 'String'
}
},
proximityPlacementGroup: {
required: false,
readOnly: true,
serializedName: 'properties.proximityPlacementGroup',
type: {
name: 'String'
}
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions lib/services/hanaonazureManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@ export interface HanaInstance extends Resource {
* 'restarting', 'unknown'
*/
readonly powerState?: string;
/**
* Resource proximity placement group
*/
readonly proximityPlacementGroup?: string;
}

/**
Expand Down