You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Page: the page number for the returned private networks.
127
+
// Page: page number to return, from the paginated results.
128
128
Page*int32`json:"-"`
129
-
// PageSize: the maximum number of private networks per page.
129
+
// PageSize: maximum number of Private Networks to return per page.
130
130
PageSize*uint32`json:"-"`
131
-
// Name: filter private networks with names containing this string.
131
+
// Name: name to filter for. Only Private Networks with names containing this string will be returned.
132
132
Name*string`json:"-"`
133
-
// Tags: filter private networks with one or more matching tags.
133
+
// Tags: tags to filter for. Only Private Networks with one or more matching tags will be returned.
134
134
Tags []string`json:"-"`
135
-
// OrganizationID: the organization ID on which to filter the returned private networks.
135
+
// OrganizationID: organization ID to filter for. Only Private Networks belonging to this Organization will be returned.
136
136
OrganizationID*string`json:"-"`
137
-
// ProjectID: the project ID on which to filter the returned private networks.
137
+
// ProjectID: project ID to filter for. Only Private Networks belonging to this Project will be returned.
138
138
ProjectID*string`json:"-"`
139
-
// PrivateNetworkIDs: the PrivateNetwork IDs on which to filter the returned private networks.
139
+
// PrivateNetworkIDs: private Network IDs to filter for. Only Private Networks with one of these IDs will be returned.
140
140
PrivateNetworkIDs []string`json:"-"`
141
-
// IncludeRegional: include regional Private Networks.
141
+
// IncludeRegional: defines whether to include regional Private Networks in the response.
142
142
IncludeRegional*bool`json:"-"`
143
143
}
144
144
145
-
// ListPrivateNetworks: list private networks.
145
+
// ListPrivateNetworks: list Private Networks.
146
+
// List existing Private Networks in a specified Availability Zone. By default, the Private Networks returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field.
0 commit comments