Skip to content

Commit

Permalink
feat(networksecurity): update the API
Browse files Browse the repository at this point in the history
#### networksecurity:v1beta1

The following keys were added:
- schemas.ListAddressGroupReferencesResponseAddressGroupReference.properties.securityPolicy.description
- schemas.ListAddressGroupReferencesResponseAddressGroupReference.properties.securityPolicy.type

The following keys were changed:
- schemas.GoogleIamV1Binding.properties.role.description

#### networksecurity:v1

The following keys were added:
- schemas.ListAddressGroupReferencesResponseAddressGroupReference.properties.securityPolicy.description
- schemas.ListAddressGroupReferencesResponseAddressGroupReference.properties.securityPolicy.type

The following keys were changed:
- schemas.GoogleIamV1Binding.properties.role.description
  • Loading branch information
yoshi-automation authored and sofisl committed Feb 7, 2024
1 parent 5e03b81 commit 5aa936f
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
8 changes: 6 additions & 2 deletions discovery/networksecurity-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -2474,7 +2474,7 @@
}
}
},
"revision": "20240102",
"revision": "20240130",
"rootUrl": "https://networksecurity.googleapis.com/",
"schemas": {
"AddAddressGroupItemsRequest": {
Expand Down Expand Up @@ -2941,7 +2941,7 @@
"type": "array"
},
"role": {
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.",
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).",
"type": "string"
}
},
Expand Down Expand Up @@ -3067,6 +3067,10 @@
"description": "Rule priority of the FirewallPolicy that is using the Address Group.",
"format": "int32",
"type": "integer"
},
"securityPolicy": {
"description": "Cloud Armor SecurityPolicy that is using the Address Group.",
"type": "string"
}
},
"type": "object"
Expand Down
8 changes: 6 additions & 2 deletions discovery/networksecurity-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -3162,7 +3162,7 @@
}
}
},
"revision": "20240102",
"revision": "20240130",
"rootUrl": "https://networksecurity.googleapis.com/",
"schemas": {
"AddAddressGroupItemsRequest": {
Expand Down Expand Up @@ -3791,7 +3791,7 @@
"type": "array"
},
"role": {
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.",
"description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).",
"type": "string"
}
},
Expand Down Expand Up @@ -3917,6 +3917,10 @@
"description": "Rule priority of the FirewallPolicy that is using the Address Group.",
"format": "int32",
"type": "integer"
},
"securityPolicy": {
"description": "Cloud Armor SecurityPolicy that is using the Address Group.",
"type": "string"
}
},
"type": "object"
Expand Down
6 changes: 5 additions & 1 deletion src/apis/networksecurity/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ export namespace networksecurity_v1 {
*/
members?: string[] | null;
/**
* Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
* Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).
*/
role?: string | null;
}
Expand Down Expand Up @@ -547,6 +547,10 @@ export namespace networksecurity_v1 {
* Rule priority of the FirewallPolicy that is using the Address Group.
*/
rulePriority?: number | null;
/**
* Cloud Armor SecurityPolicy that is using the Address Group.
*/
securityPolicy?: string | null;
}
/**
* Response returned by the ListAddressGroups method.
Expand Down
6 changes: 5 additions & 1 deletion src/apis/networksecurity/v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ export namespace networksecurity_v1beta1 {
*/
members?: string[] | null;
/**
* Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`.
* Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles).
*/
role?: string | null;
}
Expand Down Expand Up @@ -646,6 +646,10 @@ export namespace networksecurity_v1beta1 {
* Rule priority of the FirewallPolicy that is using the Address Group.
*/
rulePriority?: number | null;
/**
* Cloud Armor SecurityPolicy that is using the Address Group.
*/
securityPolicy?: string | null;
}
/**
* Response returned by the ListAddressGroups method.
Expand Down

0 comments on commit 5aa936f

Please sign in to comment.