-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from mulesoft-consulting/dev
VPC updated schemas
- Loading branch information
Showing
15 changed files
with
1,004 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,29 @@ | ||
.gitignore | ||
.openapi-generator-ignore | ||
.travis.yml | ||
README.md | ||
api/openapi.yaml | ||
api_default.go | ||
client.go | ||
configuration.go | ||
docs/DefaultApi.md | ||
docs/FirewallRule.md | ||
docs/InlineResponse200.md | ||
docs/InlineResponse400.md | ||
docs/InternalDnsSchema.md | ||
docs/InternalDns.md | ||
docs/Vpc.md | ||
docs/VpcCore.md | ||
docs/VpcCoreFirewallRules.md | ||
docs/VpcIdSchema.md | ||
docs/VpcRouteSchema.md | ||
docs/VpcId.md | ||
docs/VpcRoute.md | ||
git_push.sh | ||
go.mod | ||
go.sum | ||
model_firewall_rule.go | ||
model_inline_response_200.go | ||
model_inline_response_400.go | ||
model_internal_dns_schema.go | ||
model_internal_dns.go | ||
model_vpc.go | ||
model_vpc_core.go | ||
model_vpc_core_firewall_rules.go | ||
model_vpc_id_schema.go | ||
model_vpc_route_schema.go | ||
model_vpc_id.go | ||
model_vpc_route.go | ||
response.go | ||
utils.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
# FirewallRule | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**CidrBlock** | **string** | An explanation about the purpose of this instance. | [default to ""] | ||
**FromPort** | **int32** | An explanation about the purpose of this instance. | [default to 0] | ||
**Protocol** | **string** | An explanation about the purpose of this instance. | [default to ""] | ||
**ToPort** | **int32** | An explanation about the purpose of this instance. | [default to 0] | ||
|
||
## Methods | ||
|
||
### NewFirewallRule | ||
|
||
`func NewFirewallRule(cidrBlock string, fromPort int32, protocol string, toPort int32, ) *FirewallRule` | ||
|
||
NewFirewallRule instantiates a new FirewallRule object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewFirewallRuleWithDefaults | ||
|
||
`func NewFirewallRuleWithDefaults() *FirewallRule` | ||
|
||
NewFirewallRuleWithDefaults instantiates a new FirewallRule object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetCidrBlock | ||
|
||
`func (o *FirewallRule) GetCidrBlock() string` | ||
|
||
GetCidrBlock returns the CidrBlock field if non-nil, zero value otherwise. | ||
|
||
### GetCidrBlockOk | ||
|
||
`func (o *FirewallRule) GetCidrBlockOk() (*string, bool)` | ||
|
||
GetCidrBlockOk returns a tuple with the CidrBlock field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetCidrBlock | ||
|
||
`func (o *FirewallRule) SetCidrBlock(v string)` | ||
|
||
SetCidrBlock sets CidrBlock field to given value. | ||
|
||
|
||
### GetFromPort | ||
|
||
`func (o *FirewallRule) GetFromPort() int32` | ||
|
||
GetFromPort returns the FromPort field if non-nil, zero value otherwise. | ||
|
||
### GetFromPortOk | ||
|
||
`func (o *FirewallRule) GetFromPortOk() (*int32, bool)` | ||
|
||
GetFromPortOk returns a tuple with the FromPort field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetFromPort | ||
|
||
`func (o *FirewallRule) SetFromPort(v int32)` | ||
|
||
SetFromPort sets FromPort field to given value. | ||
|
||
|
||
### GetProtocol | ||
|
||
`func (o *FirewallRule) GetProtocol() string` | ||
|
||
GetProtocol returns the Protocol field if non-nil, zero value otherwise. | ||
|
||
### GetProtocolOk | ||
|
||
`func (o *FirewallRule) GetProtocolOk() (*string, bool)` | ||
|
||
GetProtocolOk returns a tuple with the Protocol field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetProtocol | ||
|
||
`func (o *FirewallRule) SetProtocol(v string)` | ||
|
||
SetProtocol sets Protocol field to given value. | ||
|
||
|
||
### GetToPort | ||
|
||
`func (o *FirewallRule) GetToPort() int32` | ||
|
||
GetToPort returns the ToPort field if non-nil, zero value otherwise. | ||
|
||
### GetToPortOk | ||
|
||
`func (o *FirewallRule) GetToPortOk() (*int32, bool)` | ||
|
||
GetToPortOk returns a tuple with the ToPort field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetToPort | ||
|
||
`func (o *FirewallRule) SetToPort(v int32)` | ||
|
||
SetToPort sets ToPort field to given value. | ||
|
||
|
||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Oops, something went wrong.