Skip to content

Commit

Permalink
regenerate Metal client with patched spec
Browse files Browse the repository at this point in the history
  • Loading branch information
ctreatma committed Jan 16, 2024
1 parent c37d1f7 commit e751999
Show file tree
Hide file tree
Showing 11 changed files with 54 additions and 54 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Name | Type | Description | Notes
**Name** | **string** | |
**Project** | Pointer to **string** | | [optional]
**Redundancy** | **string** | Either 'primary' or 'redundant'. |
**Speed** | Pointer to **int32** | A interconnection speed, in bps, mbps, or gbps. For Fabric VCs, this represents the maximum speed of the interconnection. For Fabric VCs (Metal Billed), this can only be one of the following: ''50mbps'', ''200mbps'', ''500mbps'', ''1gbps'', ''2gbps'', ''5gbps'' or ''10gbps'', and is required for creation. For Fabric VCs (Fabric Billed), this field will always default to ''10gbps'' even if it is not provided. For example, ''500000000'', ''50m'', or' ''500mbps'' will all work as valid inputs. | [optional]
**Speed** | Pointer to **int64** | A interconnection speed, in bps, mbps, or gbps. For Fabric VCs, this represents the maximum speed of the interconnection. For Fabric VCs (Metal Billed), this can only be one of the following: ''50mbps'', ''200mbps'', ''500mbps'', ''1gbps'', ''2gbps'', ''5gbps'' or ''10gbps'', and is required for creation. For Fabric VCs (Fabric Billed), this field will always default to ''10gbps'' even if it is not provided. For example, ''500000000'', ''50m'', or' ''500mbps'' will all work as valid inputs. | [optional]
**Tags** | Pointer to **[]string** | | [optional]
**Type** | [**VlanFabricVcCreateInputType**](VlanFabricVcCreateInputType.md) | |
**UseCase** | Pointer to **string** | The intended use case of the dedicated port. | [optional]
Expand Down Expand Up @@ -226,20 +226,20 @@ SetRedundancy sets Redundancy field to given value.

### GetSpeed

`func (o *CreateOrganizationInterconnectionRequest) GetSpeed() int32`
`func (o *CreateOrganizationInterconnectionRequest) GetSpeed() int64`

GetSpeed returns the Speed field if non-nil, zero value otherwise.

### GetSpeedOk

`func (o *CreateOrganizationInterconnectionRequest) GetSpeedOk() (*int32, bool)`
`func (o *CreateOrganizationInterconnectionRequest) GetSpeedOk() (*int64, bool)`

GetSpeedOk returns a tuple with the Speed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetSpeed

`func (o *CreateOrganizationInterconnectionRequest) SetSpeed(v int32)`
`func (o *CreateOrganizationInterconnectionRequest) SetSpeed(v int64)`

SetSpeed sets Speed field to given value.

Expand Down
8 changes: 4 additions & 4 deletions services/metalv1/docs/DedicatedPortCreateInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Name | Type | Description | Notes
**Name** | **string** | |
**Project** | Pointer to **string** | | [optional]
**Redundancy** | **string** | Either 'primary' or 'redundant'. |
**Speed** | Pointer to **int32** | A interconnection speed, in bps, mbps, or gbps. For Dedicated Ports, this can be 10Gbps or 100Gbps. | [optional]
**Speed** | Pointer to **int64** | A interconnection speed, in bps, mbps, or gbps. For Dedicated Ports, this can be 10Gbps or 100Gbps. | [optional]
**Tags** | Pointer to **[]string** | | [optional]
**Type** | [**DedicatedPortCreateInputType**](DedicatedPortCreateInputType.md) | |
**UseCase** | Pointer to **string** | The intended use case of the dedicated port. | [optional]
Expand Down Expand Up @@ -223,20 +223,20 @@ SetRedundancy sets Redundancy field to given value.

### GetSpeed

`func (o *DedicatedPortCreateInput) GetSpeed() int32`
`func (o *DedicatedPortCreateInput) GetSpeed() int64`

GetSpeed returns the Speed field if non-nil, zero value otherwise.

### GetSpeedOk

`func (o *DedicatedPortCreateInput) GetSpeedOk() (*int32, bool)`
`func (o *DedicatedPortCreateInput) GetSpeedOk() (*int64, bool)`

GetSpeedOk returns a tuple with the Speed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetSpeed

`func (o *DedicatedPortCreateInput) SetSpeed(v int32)`
`func (o *DedicatedPortCreateInput) SetSpeed(v int64)`

SetSpeed sets Speed field to given value.

Expand Down
8 changes: 4 additions & 4 deletions services/metalv1/docs/Interconnection.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Name | Type | Description | Notes
**Ports** | Pointer to [**[]InterconnectionPort**](InterconnectionPort.md) | For Fabric VCs, these represent Virtual Port(s) created for the interconnection. For dedicated interconnections, these represent the Dedicated Port(s). | [optional]
**Redundancy** | Pointer to [**InterconnectionRedundancy**](InterconnectionRedundancy.md) | | [optional]
**ServiceTokens** | Pointer to [**[]FabricServiceToken**](FabricServiceToken.md) | For Fabric VCs (Metal Billed), this will show details of the A-Side service tokens issued for the interconnection. For Fabric VCs (Fabric Billed), this will show the details of the Z-Side service tokens issued for the interconnection. Dedicated interconnections will not have any service tokens issued. There will be one per interconnection, so for redundant interconnections, there should be two service tokens issued. | [optional]
**Speed** | Pointer to **int32** | For interconnections on Dedicated Ports and shared connections, this represents the interconnection's speed in bps. For Fabric VCs, this field refers to the maximum speed of the interconnection in bps. This value will default to 10Gbps for Fabric VCs (Fabric Billed). | [optional]
**Speed** | Pointer to **int64** | For interconnections on Dedicated Ports and shared connections, this represents the interconnection's speed in bps. For Fabric VCs, this field refers to the maximum speed of the interconnection in bps. This value will default to 10Gbps for Fabric VCs (Fabric Billed). | [optional]
**Status** | Pointer to **string** | | [optional]
**Tags** | Pointer to **[]string** | | [optional]
**Token** | Pointer to **string** | This token is used for shared interconnections to be used as the Fabric Token. This field is entirely deprecated. | [optional]
Expand Down Expand Up @@ -320,20 +320,20 @@ HasServiceTokens returns a boolean if a field has been set.

### GetSpeed

`func (o *Interconnection) GetSpeed() int32`
`func (o *Interconnection) GetSpeed() int64`

GetSpeed returns the Speed field if non-nil, zero value otherwise.

### GetSpeedOk

`func (o *Interconnection) GetSpeedOk() (*int32, bool)`
`func (o *Interconnection) GetSpeedOk() (*int64, bool)`

GetSpeedOk returns a tuple with the Speed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetSpeed

`func (o *Interconnection) SetSpeed(v int32)`
`func (o *Interconnection) SetSpeed(v int64)`

SetSpeed sets Speed field to given value.

Expand Down
8 changes: 4 additions & 4 deletions services/metalv1/docs/InterconnectionPort.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Name | Type | Description | Notes
**SwitchId** | Pointer to **string** | A switch 'short ID' | [optional]
**VirtualCircuits** | Pointer to [**[]VirtualCircuit**](VirtualCircuit.md) | | [optional]
**Name** | Pointer to **string** | | [optional]
**Speed** | Pointer to **int32** | | [optional]
**Speed** | Pointer to **int64** | | [optional]
**LinkStatus** | Pointer to **string** | | [optional]
**Href** | Pointer to **string** | | [optional]

Expand Down Expand Up @@ -211,20 +211,20 @@ HasName returns a boolean if a field has been set.

### GetSpeed

`func (o *InterconnectionPort) GetSpeed() int32`
`func (o *InterconnectionPort) GetSpeed() int64`

GetSpeed returns the Speed field if non-nil, zero value otherwise.

### GetSpeedOk

`func (o *InterconnectionPort) GetSpeedOk() (*int32, bool)`
`func (o *InterconnectionPort) GetSpeedOk() (*int64, bool)`

GetSpeedOk returns a tuple with the Speed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetSpeed

`func (o *InterconnectionPort) SetSpeed(v int32)`
`func (o *InterconnectionPort) SetSpeed(v int64)`

SetSpeed sets Speed field to given value.

Expand Down
8 changes: 4 additions & 4 deletions services/metalv1/docs/VlanVirtualCircuitCreateInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Name | Type | Description | Notes
**Name** | Pointer to **string** | | [optional]
**NniVlan** | Pointer to **int32** | | [optional]
**ProjectId** | **string** | |
**Speed** | Pointer to **int32** | speed can be passed as integer number representing bps speed or string (e.g. '52m' or '100g' or '4 gbps') | [optional]
**Speed** | Pointer to **int64** | speed can be passed as integer number representing bps speed or string (e.g. '52m' or '100g' or '4 gbps') | [optional]
**Tags** | Pointer to **[]string** | | [optional]
**Vnid** | Pointer to **string** | A Virtual Network record UUID or the VNID of a Metro Virtual Network in your project (sent as integer). | [optional]

Expand Down Expand Up @@ -128,20 +128,20 @@ SetProjectId sets ProjectId field to given value.

### GetSpeed

`func (o *VlanVirtualCircuitCreateInput) GetSpeed() int32`
`func (o *VlanVirtualCircuitCreateInput) GetSpeed() int64`

GetSpeed returns the Speed field if non-nil, zero value otherwise.

### GetSpeedOk

`func (o *VlanVirtualCircuitCreateInput) GetSpeedOk() (*int32, bool)`
`func (o *VlanVirtualCircuitCreateInput) GetSpeedOk() (*int64, bool)`

GetSpeedOk returns a tuple with the Speed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetSpeed

`func (o *VlanVirtualCircuitCreateInput) SetSpeed(v int32)`
`func (o *VlanVirtualCircuitCreateInput) SetSpeed(v int64)`

SetSpeed sets Speed field to given value.

Expand Down
8 changes: 4 additions & 4 deletions services/metalv1/docs/VrfFabricVcCreateInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Name | Type | Description | Notes
**Project** | Pointer to **string** | | [optional]
**Redundancy** | **string** | Either 'primary' or 'redundant'. |
**ServiceTokenType** | [**VlanFabricVcCreateInputServiceTokenType**](VlanFabricVcCreateInputServiceTokenType.md) | |
**Speed** | Pointer to **int32** | A interconnection speed, in bps, mbps, or gbps. For Fabric VCs, this represents the maximum speed of the interconnection. For Fabric VCs (Metal Billed), this can only be one of the following: ''50mbps'', ''200mbps'', ''500mbps'', ''1gbps'', ''2gbps'', ''5gbps'' or ''10gbps'', and is required for creation. For Fabric VCs (Fabric Billed), this field will always default to ''10gbps'' even if it is not provided. For example, ''500000000'', ''50m'', or' ''500mbps'' will all work as valid inputs. | [optional]
**Speed** | Pointer to **int64** | A interconnection speed, in bps, mbps, or gbps. For Fabric VCs, this represents the maximum speed of the interconnection. For Fabric VCs (Metal Billed), this can only be one of the following: ''50mbps'', ''200mbps'', ''500mbps'', ''1gbps'', ''2gbps'', ''5gbps'' or ''10gbps'', and is required for creation. For Fabric VCs (Fabric Billed), this field will always default to ''10gbps'' even if it is not provided. For example, ''500000000'', ''50m'', or' ''500mbps'' will all work as valid inputs. | [optional]
**Tags** | Pointer to **[]string** | | [optional]
**Type** | [**VlanFabricVcCreateInputType**](VlanFabricVcCreateInputType.md) | |
**Vrfs** | **[]string** | This field holds a list of VRF UUIDs that will be set automatically on the virtual circuits of Fabric VCs on creation, and can hold up to two UUIDs. Two UUIDs are required when requesting redundant Fabric VCs. The first UUID will be set on the primary virtual circuit, while the second UUID will be set on the secondary. The two UUIDs can be the same if both the primary and secondary virtual circuits will be in the same VRF. This parameter is included in the specification as a developer preview and is generally unavailable. Please contact our Support team for more details. |
Expand Down Expand Up @@ -192,20 +192,20 @@ SetServiceTokenType sets ServiceTokenType field to given value.

### GetSpeed

`func (o *VrfFabricVcCreateInput) GetSpeed() int32`
`func (o *VrfFabricVcCreateInput) GetSpeed() int64`

GetSpeed returns the Speed field if non-nil, zero value otherwise.

### GetSpeedOk

`func (o *VrfFabricVcCreateInput) GetSpeedOk() (*int32, bool)`
`func (o *VrfFabricVcCreateInput) GetSpeedOk() (*int64, bool)`

GetSpeedOk returns a tuple with the Speed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetSpeed

`func (o *VrfFabricVcCreateInput) SetSpeed(v int32)`
`func (o *VrfFabricVcCreateInput) SetSpeed(v int64)`

SetSpeed sets Speed field to given value.

Expand Down
12 changes: 6 additions & 6 deletions services/metalv1/model_dedicated_port_create_input.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions services/metalv1/model_interconnection.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions services/metalv1/model_interconnection_port.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions services/metalv1/model_vlan_virtual_circuit_create_input.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e751999

Please sign in to comment.