| 60 | } |
| 61 | |
| 62 | type SecurityGroupServiceIface interface { |
| 63 | AuthorizeSecurityGroupEgress(p *AuthorizeSecurityGroupEgressParams) (*AuthorizeSecurityGroupEgressResponse, error) |
| 64 | NewAuthorizeSecurityGroupEgressParams() *AuthorizeSecurityGroupEgressParams |
| 65 | AuthorizeSecurityGroupIngress(p *AuthorizeSecurityGroupIngressParams) (*AuthorizeSecurityGroupIngressResponse, error) |
| 66 | NewAuthorizeSecurityGroupIngressParams() *AuthorizeSecurityGroupIngressParams |
| 67 | CreateSecurityGroup(p *CreateSecurityGroupParams) (*CreateSecurityGroupResponse, error) |
| 68 | NewCreateSecurityGroupParams(name string) *CreateSecurityGroupParams |
| 69 | DeleteSecurityGroup(p *DeleteSecurityGroupParams) (*DeleteSecurityGroupResponse, error) |
| 70 | NewDeleteSecurityGroupParams() *DeleteSecurityGroupParams |
| 71 | ListSecurityGroups(p *ListSecurityGroupsParams) (*ListSecurityGroupsResponse, error) |
| 72 | NewListSecurityGroupsParams() *ListSecurityGroupsParams |
| 73 | GetSecurityGroupID(keyword string, opts ...OptionFunc) (string, int, error) |
| 74 | GetSecurityGroupByName(name string, opts ...OptionFunc) (*SecurityGroup, int, error) |
| 75 | GetSecurityGroupByID(id string, opts ...OptionFunc) (*SecurityGroup, int, error) |
| 76 | RevokeSecurityGroupEgress(p *RevokeSecurityGroupEgressParams) (*RevokeSecurityGroupEgressResponse, error) |
| 77 | NewRevokeSecurityGroupEgressParams(id string) *RevokeSecurityGroupEgressParams |
| 78 | RevokeSecurityGroupIngress(p *RevokeSecurityGroupIngressParams) (*RevokeSecurityGroupIngressResponse, error) |
| 79 | NewRevokeSecurityGroupIngressParams(id string) *RevokeSecurityGroupIngressParams |
| 80 | UpdateSecurityGroup(p *UpdateSecurityGroupParams) (*UpdateSecurityGroupResponse, error) |
| 81 | NewUpdateSecurityGroupParams(id string) *UpdateSecurityGroupParams |
| 82 | } |
| 83 | |
| 84 | type AuthorizeSecurityGroupEgressParams struct { |
| 85 | p map[string]interface{} |
no outgoing calls
no test coverage detected