Virtual Private Cloud API, gRPC: SecurityGroupService.Move
Moves security groups to another folder.
gRPC request
rpc Move (MoveSecurityGroupRequest) returns (operation.Operation)
MoveSecurityGroupRequest
{
"securityGroupId": "string",
"destinationFolderId": "string"
}
Field |
Description |
securityGroupId |
string Required field. ID of the security group to move. |
destinationFolderId |
string Required field. ID of the folder to move security group to. |
operation.Operation
{
"id": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string",
"modifiedAt": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"securityGroupId": "string"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": {
"id": "string",
"folderId": "string",
"createdAt": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "string",
"networkId": "string",
"status": "Status",
"rules": [
{
"id": "string",
"description": "string",
"labels": "string",
"direction": "Direction",
"ports": {
"fromPort": "int64",
"toPort": "int64"
},
"protocolName": "string",
"protocolNumber": "int64",
// Includes only one of the fields `cidrBlocks`, `securityGroupId`, `predefinedTarget`
"cidrBlocks": {
"v4CidrBlocks": [
"string"
],
"v6CidrBlocks": [
"string"
]
},
"securityGroupId": "string",
"predefinedTarget": "string"
// end of the list of possible fields
}
],
"defaultForNetwork": "bool"
}
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field |
Description |
id |
string ID of the operation. |
description |
string Description of the operation. 0-256 characters long. |
createdAt |
Creation timestamp. |
createdBy |
string ID of the user or service account who initiated the operation. |
modifiedAt |
The time when the Operation resource was last modified. |
done |
bool If the value is |
metadata |
Service-specific metadata associated with the operation. |
error |
The error result of the operation in case of failure or cancellation. Includes only one of the fields The operation result. |
response |
The normal response of the operation in case of success. Includes only one of the fields The operation result. |
MoveSecurityGroupMetadata
Field |
Description |
securityGroupId |
string ID of the security group that is being moved. |
SecurityGroup
Field |
Description |
id |
string ID of the security group. |
folderId |
string ID of the folder that the security group belongs to. |
createdAt |
Creation timestamp in RFC3339 |
name |
string Name of the security group. |
description |
string Description of the security group. 0-256 characters long. |
labels |
string Resource labels as |
networkId |
string ID of the network that the security group belongs to. |
status |
enum Status Security group status.
|
rules[] |
List of the security group rules. |
defaultForNetwork |
bool Flag that indicates that the security group is the default for the network. |
SecurityGroupRule
Field |
Description |
id |
string ID of the rule. |
description |
string Description of the rule. 0-256 characters long. |
labels |
string Resource labels as |
direction |
enum Direction Required field. The direction of network traffic allowed by this rule.
|
ports |
The range of ports that allow traffic to pass through. Null value means any. |
protocolName |
string Protocol name. Null value means any protocol. |
protocolNumber |
int64 Protocol number from IANA protocol numbers |
cidrBlocks |
CIDR blocks to allow to recieve or send traffic. Includes only one of the fields |
securityGroupId |
string ID of the security group to add rule to. Includes only one of the fields |
predefinedTarget |
string Predefined target. See security groups rules for more information. Includes only one of the fields |
PortRange
Field |
Description |
fromPort |
int64 The lowest port in the range. |
toPort |
int64 The highest port in the range. |
CidrBlocks
Field |
Description |
v4CidrBlocks[] |
string IPv4 CIDR blocks to allow traffic to. |
v6CidrBlocks[] |
string IPv6 CIDR blocks to allow traffic to. |