Chapter 50. ReportConfigurationService
50.1. CountReportConfigurations Copy linkLink copied to clipboard!
GET /v1/report-configurations-count
CountReportConfigurations returns the number of report configurations.
50.1.1. Description Copy linkLink copied to clipboard!
50.1.2. Parameters Copy linkLink copied to clipboard!
50.1.2.1. Query Parameters Copy linkLink copied to clipboard!
| Name | Description | Required | Default | Pattern |
|---|---|---|---|---|
| query | - | null | ||
| pagination.limit | - | null | ||
| pagination.offset | - | null | ||
| pagination.sortOption.field | - | null | ||
| pagination.sortOption.reversed | - | null | ||
| pagination.sortOption.aggregateBy.aggrFunc | - | UNSET | ||
| pagination.sortOption.aggregateBy.distinct | - | null |
50.1.3. Return Type Copy linkLink copied to clipboard!
50.1.4. Content Type Copy linkLink copied to clipboard!
- application/json
50.1.5. Responses Copy linkLink copied to clipboard!
| Code | Message | Datatype |
|---|---|---|
| 200 | A successful response. | |
| 0 | An unexpected error response. |
50.1.6. Samples Copy linkLink copied to clipboard!
50.1.7. Common object reference Copy linkLink copied to clipboard!
50.1.7.1. ProtobufAny Copy linkLink copied to clipboard!
Any contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.
Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type.
Example 1: Pack and unpack a message in C++.
Foo foo = ...;
Any any;
any.PackFrom(foo);
...
if (any.UnpackTo(&foo)) {
...
}
Example 2: Pack and unpack a message in Java.
Foo foo = ...;
Any any = Any.pack(foo);
...
if (any.is(Foo.class)) {
foo = any.unpack(Foo.class);
}
// or ...
if (any.isSameTypeAs(Foo.getDefaultInstance())) {
foo = any.unpack(Foo.getDefaultInstance());
}
Example 3: Pack and unpack a message in Python.
foo = Foo(...)
any = Any()
any.Pack(foo)
...
if any.Is(Foo.DESCRIPTOR):
any.Unpack(foo)
...
Example 4: Pack and unpack a message in Go
foo := &pb.Foo{...}
any, err := anypb.New(foo)
if err != nil {
...
}
...
foo := &pb.Foo{}
if err := any.UnmarshalTo(foo); err != nil {
...
}
The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example "foo.bar.com/x/y.z" will yield type name "y.z".
50.1.7.1.1. JSON representation Copy linkLink copied to clipboard!
The JSON representation of an Any value uses the regular representation of the deserialized, embedded message, with an additional field @type which contains the type URL. Example:
package google.profile;
message Person {
string first_name = 1;
string last_name = 2;
}
{
"@type": "type.googleapis.com/google.profile.Person",
"firstName": <string>,
"lastName": <string>
}
If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field value which holds the custom JSON in addition to the @type field. Example (for message [google.protobuf.Duration][]):
{
"@type": "type.googleapis.com/google.protobuf.Duration",
"value": "1.212s"
}
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| typeUrl | String |
A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL’s path must represent the fully qualified name of the type (as in | |||
| value | byte[] | Must be a valid serialized protocol buffer of the above specified type. | byte |
50.1.7.2. RuntimeError Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| error | String | ||||
| code | Integer | int32 | |||
| message | String | ||||
| details | List of ProtobufAny |
50.1.7.3. V1CountReportConfigurationsResponse Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| count | Integer | int32 |
50.2. GetReportConfigurations Copy linkLink copied to clipboard!
GET /v1/report/configurations
50.2.1. Description Copy linkLink copied to clipboard!
50.2.2. Parameters Copy linkLink copied to clipboard!
50.2.2.1. Query Parameters Copy linkLink copied to clipboard!
| Name | Description | Required | Default | Pattern |
|---|---|---|---|---|
| query | - | null | ||
| pagination.limit | - | null | ||
| pagination.offset | - | null | ||
| pagination.sortOption.field | - | null | ||
| pagination.sortOption.reversed | - | null | ||
| pagination.sortOption.aggregateBy.aggrFunc | - | UNSET | ||
| pagination.sortOption.aggregateBy.distinct | - | null |
50.2.3. Return Type Copy linkLink copied to clipboard!
50.2.4. Content Type Copy linkLink copied to clipboard!
- application/json
50.2.5. Responses Copy linkLink copied to clipboard!
| Code | Message | Datatype |
|---|---|---|
| 200 | A successful response. | |
| 0 | An unexpected error response. |
50.2.6. Samples Copy linkLink copied to clipboard!
50.2.7. Common object reference Copy linkLink copied to clipboard!
50.2.7.1. ProtobufAny Copy linkLink copied to clipboard!
Any contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.
Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type.
Example 1: Pack and unpack a message in C++.
Foo foo = ...;
Any any;
any.PackFrom(foo);
...
if (any.UnpackTo(&foo)) {
...
}
Example 2: Pack and unpack a message in Java.
Foo foo = ...;
Any any = Any.pack(foo);
...
if (any.is(Foo.class)) {
foo = any.unpack(Foo.class);
}
// or ...
if (any.isSameTypeAs(Foo.getDefaultInstance())) {
foo = any.unpack(Foo.getDefaultInstance());
}
Example 3: Pack and unpack a message in Python.
foo = Foo(...)
any = Any()
any.Pack(foo)
...
if any.Is(Foo.DESCRIPTOR):
any.Unpack(foo)
...
Example 4: Pack and unpack a message in Go
foo := &pb.Foo{...}
any, err := anypb.New(foo)
if err != nil {
...
}
...
foo := &pb.Foo{}
if err := any.UnmarshalTo(foo); err != nil {
...
}
The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example "foo.bar.com/x/y.z" will yield type name "y.z".
50.2.7.1.1. JSON representation Copy linkLink copied to clipboard!
The JSON representation of an Any value uses the regular representation of the deserialized, embedded message, with an additional field @type which contains the type URL. Example:
package google.profile;
message Person {
string first_name = 1;
string last_name = 2;
}
{
"@type": "type.googleapis.com/google.profile.Person",
"firstName": <string>,
"lastName": <string>
}
If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field value which holds the custom JSON in addition to the @type field. Example (for message [google.protobuf.Duration][]):
{
"@type": "type.googleapis.com/google.protobuf.Duration",
"value": "1.212s"
}
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| typeUrl | String |
A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL’s path must represent the fully qualified name of the type (as in | |||
| value | byte[] | Must be a valid serialized protocol buffer of the above specified type. | byte |
50.2.7.2. ReportConfigurationReportType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| VULNERABILITY |
50.2.7.3. ReportLastRunStatusRunStatus Copy linkLink copied to clipboard!
| Enum Values |
|---|
| SUCCESS |
| FAILURE |
50.2.7.4. RuntimeError Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| error | String | ||||
| code | Integer | int32 | |||
| message | String | ||||
| details | List of ProtobufAny |
50.2.7.5. ScheduleDaysOfMonth Copy linkLink copied to clipboard!
1 for 1st, 2 for 2nd .... 31 for 31st
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| days |
List of | int32 |
50.2.7.6. ScheduleDaysOfWeek Copy linkLink copied to clipboard!
Sunday = 0, Monday = 1, .... Saturday = 6
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| days |
List of | int32 |
50.2.7.7. ScheduleIntervalType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNSET |
| DAILY |
| WEEKLY |
| MONTHLY |
50.2.7.8. ScheduleWeeklyInterval Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| day | Integer | int32 |
50.2.7.9. SimpleAccessScopeRules Copy linkLink copied to clipboard!
Each element of any repeated field is an individual rule. Rules are joined by logical OR: if there exists a rule allowing resource x, x is in the access scope.
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| includedClusters |
List of | ||||
| includedNamespaces | List of SimpleAccessScopeRulesNamespace | ||||
| clusterLabelSelectors | List of StorageSetBasedLabelSelector | ||||
| namespaceLabelSelectors | List of StorageSetBasedLabelSelector |
50.2.7.10. SimpleAccessScopeRulesNamespace Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| clusterName | String | Both fields must be set. | |||
| namespaceName | String |
50.2.7.11. StorageEmailNotifierConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| notifierId | String | ||||
| mailingLists |
List of | ||||
| customSubject | String | ||||
| customBody | String |
50.2.7.12. StorageNotifierConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| emailConfig | |||||
| id | String |
50.2.7.13. StorageReportConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| id | String | ||||
| name | String | ||||
| description | String | ||||
| type | VULNERABILITY, | ||||
| vulnReportFilters | |||||
| scopeId | String | ||||
| emailConfig | |||||
| schedule | |||||
| lastRunStatus | |||||
| lastSuccessfulRunTime | Date | date-time | |||
| resourceScope | |||||
| notifiers | List of StorageNotifierConfiguration | ||||
| creator | |||||
| version | Integer | int32 |
50.2.7.14. StorageReportLastRunStatus Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| reportStatus | SUCCESS, FAILURE, | ||||
| lastRunTime | Date | date-time | |||
| errorMsg | String |
50.2.7.15. StorageResourceScope Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| collectionId | String |
50.2.7.16. StorageSchedule Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| intervalType | UNSET, DAILY, WEEKLY, MONTHLY, | ||||
| hour | Integer | int32 | |||
| minute | Integer | int32 | |||
| weekly | |||||
| daysOfWeek | |||||
| daysOfMonth |
50.2.7.17. StorageSetBasedLabelSelector Copy linkLink copied to clipboard!
SetBasedLabelSelector only allows set-based label requirements.
Next available tag: 3
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| requirements |
50.2.7.18. StorageSetBasedLabelSelectorOperator Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNKNOWN |
| IN |
| NOT_IN |
| EXISTS |
| NOT_EXISTS |
50.2.7.19. StorageSetBasedLabelSelectorRequirement Copy linkLink copied to clipboard!
Next available tag: 4
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| key | String | ||||
| op | UNKNOWN, IN, NOT_IN, EXISTS, NOT_EXISTS, | ||||
| values |
List of |
50.2.7.20. StorageSlimUser Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| id | String | ||||
| name | String |
50.2.7.21. StorageVulnerabilityReportFilters Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| fixability | BOTH, FIXABLE, NOT_FIXABLE, | ||||
| sinceLastReport | Boolean | ||||
| severities | List of StorageVulnerabilitySeverity | ||||
| imageTypes | |||||
| allVuln | Boolean | ||||
| sinceLastSentScheduledReport | Boolean | ||||
| sinceStartDate | Date | date-time | |||
| accessScopeRules | List of SimpleAccessScopeRules |
50.2.7.22. StorageVulnerabilitySeverity Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNKNOWN_VULNERABILITY_SEVERITY |
| LOW_VULNERABILITY_SEVERITY |
| MODERATE_VULNERABILITY_SEVERITY |
| IMPORTANT_VULNERABILITY_SEVERITY |
| CRITICAL_VULNERABILITY_SEVERITY |
50.2.7.23. V1GetReportConfigurationsResponse Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| reportConfigs | List of StorageReportConfiguration |
50.2.7.24. VulnerabilityReportFiltersFixability Copy linkLink copied to clipboard!
| Enum Values |
|---|
| BOTH |
| FIXABLE |
| NOT_FIXABLE |
50.2.7.25. VulnerabilityReportFiltersImageType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| DEPLOYED |
| WATCHED |
50.3. DeleteReportConfiguration Copy linkLink copied to clipboard!
DELETE /v1/report/configurations/{id}
DeleteReportConfiguration removes a report configuration given its id
50.3.1. Description Copy linkLink copied to clipboard!
50.3.2. Parameters Copy linkLink copied to clipboard!
50.3.2.1. Path Parameters Copy linkLink copied to clipboard!
| Name | Description | Required | Default | Pattern |
|---|---|---|---|---|
| id | X | null |
50.3.3. Return Type Copy linkLink copied to clipboard!
Object
50.3.4. Content Type Copy linkLink copied to clipboard!
- application/json
50.3.5. Responses Copy linkLink copied to clipboard!
| Code | Message | Datatype |
|---|---|---|
| 200 | A successful response. |
|
| 0 | An unexpected error response. |
50.3.6. Samples Copy linkLink copied to clipboard!
50.3.7. Common object reference Copy linkLink copied to clipboard!
50.3.7.1. ProtobufAny Copy linkLink copied to clipboard!
Any contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.
Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type.
Example 1: Pack and unpack a message in C++.
Foo foo = ...;
Any any;
any.PackFrom(foo);
...
if (any.UnpackTo(&foo)) {
...
}
Example 2: Pack and unpack a message in Java.
Foo foo = ...;
Any any = Any.pack(foo);
...
if (any.is(Foo.class)) {
foo = any.unpack(Foo.class);
}
// or ...
if (any.isSameTypeAs(Foo.getDefaultInstance())) {
foo = any.unpack(Foo.getDefaultInstance());
}
Example 3: Pack and unpack a message in Python.
foo = Foo(...)
any = Any()
any.Pack(foo)
...
if any.Is(Foo.DESCRIPTOR):
any.Unpack(foo)
...
Example 4: Pack and unpack a message in Go
foo := &pb.Foo{...}
any, err := anypb.New(foo)
if err != nil {
...
}
...
foo := &pb.Foo{}
if err := any.UnmarshalTo(foo); err != nil {
...
}
The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example "foo.bar.com/x/y.z" will yield type name "y.z".
50.3.7.1.1. JSON representation Copy linkLink copied to clipboard!
The JSON representation of an Any value uses the regular representation of the deserialized, embedded message, with an additional field @type which contains the type URL. Example:
package google.profile;
message Person {
string first_name = 1;
string last_name = 2;
}
{
"@type": "type.googleapis.com/google.profile.Person",
"firstName": <string>,
"lastName": <string>
}
If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field value which holds the custom JSON in addition to the @type field. Example (for message [google.protobuf.Duration][]):
{
"@type": "type.googleapis.com/google.protobuf.Duration",
"value": "1.212s"
}
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| typeUrl | String |
A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL’s path must represent the fully qualified name of the type (as in | |||
| value | byte[] | Must be a valid serialized protocol buffer of the above specified type. | byte |
50.3.7.2. RuntimeError Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| error | String | ||||
| code | Integer | int32 | |||
| message | String | ||||
| details | List of ProtobufAny |
50.4. GetReportConfiguration Copy linkLink copied to clipboard!
GET /v1/report/configurations/{id}
50.4.1. Description Copy linkLink copied to clipboard!
50.4.2. Parameters Copy linkLink copied to clipboard!
50.4.2.1. Path Parameters Copy linkLink copied to clipboard!
| Name | Description | Required | Default | Pattern |
|---|---|---|---|---|
| id | X | null |
50.4.3. Return Type Copy linkLink copied to clipboard!
50.4.4. Content Type Copy linkLink copied to clipboard!
- application/json
50.4.5. Responses Copy linkLink copied to clipboard!
| Code | Message | Datatype |
|---|---|---|
| 200 | A successful response. | |
| 0 | An unexpected error response. |
50.4.6. Samples Copy linkLink copied to clipboard!
50.4.7. Common object reference Copy linkLink copied to clipboard!
50.4.7.1. ProtobufAny Copy linkLink copied to clipboard!
Any contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.
Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type.
Example 1: Pack and unpack a message in C++.
Foo foo = ...;
Any any;
any.PackFrom(foo);
...
if (any.UnpackTo(&foo)) {
...
}
Example 2: Pack and unpack a message in Java.
Foo foo = ...;
Any any = Any.pack(foo);
...
if (any.is(Foo.class)) {
foo = any.unpack(Foo.class);
}
// or ...
if (any.isSameTypeAs(Foo.getDefaultInstance())) {
foo = any.unpack(Foo.getDefaultInstance());
}
Example 3: Pack and unpack a message in Python.
foo = Foo(...)
any = Any()
any.Pack(foo)
...
if any.Is(Foo.DESCRIPTOR):
any.Unpack(foo)
...
Example 4: Pack and unpack a message in Go
foo := &pb.Foo{...}
any, err := anypb.New(foo)
if err != nil {
...
}
...
foo := &pb.Foo{}
if err := any.UnmarshalTo(foo); err != nil {
...
}
The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example "foo.bar.com/x/y.z" will yield type name "y.z".
50.4.7.1.1. JSON representation Copy linkLink copied to clipboard!
The JSON representation of an Any value uses the regular representation of the deserialized, embedded message, with an additional field @type which contains the type URL. Example:
package google.profile;
message Person {
string first_name = 1;
string last_name = 2;
}
{
"@type": "type.googleapis.com/google.profile.Person",
"firstName": <string>,
"lastName": <string>
}
If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field value which holds the custom JSON in addition to the @type field. Example (for message [google.protobuf.Duration][]):
{
"@type": "type.googleapis.com/google.protobuf.Duration",
"value": "1.212s"
}
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| typeUrl | String |
A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL’s path must represent the fully qualified name of the type (as in | |||
| value | byte[] | Must be a valid serialized protocol buffer of the above specified type. | byte |
50.4.7.2. ReportConfigurationReportType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| VULNERABILITY |
50.4.7.3. ReportLastRunStatusRunStatus Copy linkLink copied to clipboard!
| Enum Values |
|---|
| SUCCESS |
| FAILURE |
50.4.7.4. RuntimeError Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| error | String | ||||
| code | Integer | int32 | |||
| message | String | ||||
| details | List of ProtobufAny |
50.4.7.5. ScheduleDaysOfMonth Copy linkLink copied to clipboard!
1 for 1st, 2 for 2nd .... 31 for 31st
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| days |
List of | int32 |
50.4.7.6. ScheduleDaysOfWeek Copy linkLink copied to clipboard!
Sunday = 0, Monday = 1, .... Saturday = 6
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| days |
List of | int32 |
50.4.7.7. ScheduleIntervalType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNSET |
| DAILY |
| WEEKLY |
| MONTHLY |
50.4.7.8. ScheduleWeeklyInterval Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| day | Integer | int32 |
50.4.7.9. SimpleAccessScopeRules Copy linkLink copied to clipboard!
Each element of any repeated field is an individual rule. Rules are joined by logical OR: if there exists a rule allowing resource x, x is in the access scope.
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| includedClusters |
List of | ||||
| includedNamespaces | List of SimpleAccessScopeRulesNamespace | ||||
| clusterLabelSelectors | List of StorageSetBasedLabelSelector | ||||
| namespaceLabelSelectors | List of StorageSetBasedLabelSelector |
50.4.7.10. SimpleAccessScopeRulesNamespace Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| clusterName | String | Both fields must be set. | |||
| namespaceName | String |
50.4.7.11. StorageEmailNotifierConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| notifierId | String | ||||
| mailingLists |
List of | ||||
| customSubject | String | ||||
| customBody | String |
50.4.7.12. StorageNotifierConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| emailConfig | |||||
| id | String |
50.4.7.13. StorageReportConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| id | String | ||||
| name | String | ||||
| description | String | ||||
| type | VULNERABILITY, | ||||
| vulnReportFilters | |||||
| scopeId | String | ||||
| emailConfig | |||||
| schedule | |||||
| lastRunStatus | |||||
| lastSuccessfulRunTime | Date | date-time | |||
| resourceScope | |||||
| notifiers | List of StorageNotifierConfiguration | ||||
| creator | |||||
| version | Integer | int32 |
50.4.7.14. StorageReportLastRunStatus Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| reportStatus | SUCCESS, FAILURE, | ||||
| lastRunTime | Date | date-time | |||
| errorMsg | String |
50.4.7.15. StorageResourceScope Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| collectionId | String |
50.4.7.16. StorageSchedule Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| intervalType | UNSET, DAILY, WEEKLY, MONTHLY, | ||||
| hour | Integer | int32 | |||
| minute | Integer | int32 | |||
| weekly | |||||
| daysOfWeek | |||||
| daysOfMonth |
50.4.7.17. StorageSetBasedLabelSelector Copy linkLink copied to clipboard!
SetBasedLabelSelector only allows set-based label requirements.
Next available tag: 3
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| requirements |
50.4.7.18. StorageSetBasedLabelSelectorOperator Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNKNOWN |
| IN |
| NOT_IN |
| EXISTS |
| NOT_EXISTS |
50.4.7.19. StorageSetBasedLabelSelectorRequirement Copy linkLink copied to clipboard!
Next available tag: 4
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| key | String | ||||
| op | UNKNOWN, IN, NOT_IN, EXISTS, NOT_EXISTS, | ||||
| values |
List of |
50.4.7.20. StorageSlimUser Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| id | String | ||||
| name | String |
50.4.7.21. StorageVulnerabilityReportFilters Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| fixability | BOTH, FIXABLE, NOT_FIXABLE, | ||||
| sinceLastReport | Boolean | ||||
| severities | List of StorageVulnerabilitySeverity | ||||
| imageTypes | |||||
| allVuln | Boolean | ||||
| sinceLastSentScheduledReport | Boolean | ||||
| sinceStartDate | Date | date-time | |||
| accessScopeRules | List of SimpleAccessScopeRules |
50.4.7.22. StorageVulnerabilitySeverity Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNKNOWN_VULNERABILITY_SEVERITY |
| LOW_VULNERABILITY_SEVERITY |
| MODERATE_VULNERABILITY_SEVERITY |
| IMPORTANT_VULNERABILITY_SEVERITY |
| CRITICAL_VULNERABILITY_SEVERITY |
50.4.7.23. V1GetReportConfigurationResponse Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| reportConfig |
50.4.7.24. VulnerabilityReportFiltersFixability Copy linkLink copied to clipboard!
| Enum Values |
|---|
| BOTH |
| FIXABLE |
| NOT_FIXABLE |
50.4.7.25. VulnerabilityReportFiltersImageType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| DEPLOYED |
| WATCHED |
50.5. UpdateReportConfiguration Copy linkLink copied to clipboard!
PUT /v1/report/configurations/{id}
UpdateReportConfiguration updates a report configuration
50.5.1. Description Copy linkLink copied to clipboard!
50.5.2. Parameters Copy linkLink copied to clipboard!
50.5.2.1. Path Parameters Copy linkLink copied to clipboard!
| Name | Description | Required | Default | Pattern |
|---|---|---|---|---|
| id | X | null |
50.5.2.2. Body Parameter Copy linkLink copied to clipboard!
| Name | Description | Required | Default | Pattern |
|---|---|---|---|---|
| body | X |
50.5.3. Return Type Copy linkLink copied to clipboard!
Object
50.5.4. Content Type Copy linkLink copied to clipboard!
- application/json
50.5.5. Responses Copy linkLink copied to clipboard!
| Code | Message | Datatype |
|---|---|---|
| 200 | A successful response. |
|
| 0 | An unexpected error response. |
50.5.6. Samples Copy linkLink copied to clipboard!
50.5.7. Common object reference Copy linkLink copied to clipboard!
50.5.7.1. ProtobufAny Copy linkLink copied to clipboard!
Any contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.
Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type.
Example 1: Pack and unpack a message in C++.
Foo foo = ...;
Any any;
any.PackFrom(foo);
...
if (any.UnpackTo(&foo)) {
...
}
Example 2: Pack and unpack a message in Java.
Foo foo = ...;
Any any = Any.pack(foo);
...
if (any.is(Foo.class)) {
foo = any.unpack(Foo.class);
}
// or ...
if (any.isSameTypeAs(Foo.getDefaultInstance())) {
foo = any.unpack(Foo.getDefaultInstance());
}
Example 3: Pack and unpack a message in Python.
foo = Foo(...)
any = Any()
any.Pack(foo)
...
if any.Is(Foo.DESCRIPTOR):
any.Unpack(foo)
...
Example 4: Pack and unpack a message in Go
foo := &pb.Foo{...}
any, err := anypb.New(foo)
if err != nil {
...
}
...
foo := &pb.Foo{}
if err := any.UnmarshalTo(foo); err != nil {
...
}
The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example "foo.bar.com/x/y.z" will yield type name "y.z".
50.5.7.1.1. JSON representation Copy linkLink copied to clipboard!
The JSON representation of an Any value uses the regular representation of the deserialized, embedded message, with an additional field @type which contains the type URL. Example:
package google.profile;
message Person {
string first_name = 1;
string last_name = 2;
}
{
"@type": "type.googleapis.com/google.profile.Person",
"firstName": <string>,
"lastName": <string>
}
If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field value which holds the custom JSON in addition to the @type field. Example (for message [google.protobuf.Duration][]):
{
"@type": "type.googleapis.com/google.protobuf.Duration",
"value": "1.212s"
}
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| typeUrl | String |
A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL’s path must represent the fully qualified name of the type (as in | |||
| value | byte[] | Must be a valid serialized protocol buffer of the above specified type. | byte |
50.5.7.2. ReportConfigurationReportType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| VULNERABILITY |
50.5.7.3. ReportLastRunStatusRunStatus Copy linkLink copied to clipboard!
| Enum Values |
|---|
| SUCCESS |
| FAILURE |
50.5.7.4. RuntimeError Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| error | String | ||||
| code | Integer | int32 | |||
| message | String | ||||
| details | List of ProtobufAny |
50.5.7.5. ScheduleDaysOfMonth Copy linkLink copied to clipboard!
1 for 1st, 2 for 2nd .... 31 for 31st
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| days |
List of | int32 |
50.5.7.6. ScheduleDaysOfWeek Copy linkLink copied to clipboard!
Sunday = 0, Monday = 1, .... Saturday = 6
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| days |
List of | int32 |
50.5.7.7. ScheduleIntervalType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNSET |
| DAILY |
| WEEKLY |
| MONTHLY |
50.5.7.8. ScheduleWeeklyInterval Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| day | Integer | int32 |
50.5.7.9. SimpleAccessScopeRules Copy linkLink copied to clipboard!
Each element of any repeated field is an individual rule. Rules are joined by logical OR: if there exists a rule allowing resource x, x is in the access scope.
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| includedClusters |
List of | ||||
| includedNamespaces | List of SimpleAccessScopeRulesNamespace | ||||
| clusterLabelSelectors | List of StorageSetBasedLabelSelector | ||||
| namespaceLabelSelectors | List of StorageSetBasedLabelSelector |
50.5.7.10. SimpleAccessScopeRulesNamespace Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| clusterName | String | Both fields must be set. | |||
| namespaceName | String |
50.5.7.11. StorageEmailNotifierConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| notifierId | String | ||||
| mailingLists |
List of | ||||
| customSubject | String | ||||
| customBody | String |
50.5.7.12. StorageNotifierConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| emailConfig | |||||
| id | String |
50.5.7.13. StorageReportConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| id | String | ||||
| name | String | ||||
| description | String | ||||
| type | VULNERABILITY, | ||||
| vulnReportFilters | |||||
| scopeId | String | ||||
| emailConfig | |||||
| schedule | |||||
| lastRunStatus | |||||
| lastSuccessfulRunTime | Date | date-time | |||
| resourceScope | |||||
| notifiers | List of StorageNotifierConfiguration | ||||
| creator | |||||
| version | Integer | int32 |
50.5.7.14. StorageReportLastRunStatus Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| reportStatus | SUCCESS, FAILURE, | ||||
| lastRunTime | Date | date-time | |||
| errorMsg | String |
50.5.7.15. StorageResourceScope Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| collectionId | String |
50.5.7.16. StorageSchedule Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| intervalType | UNSET, DAILY, WEEKLY, MONTHLY, | ||||
| hour | Integer | int32 | |||
| minute | Integer | int32 | |||
| weekly | |||||
| daysOfWeek | |||||
| daysOfMonth |
50.5.7.17. StorageSetBasedLabelSelector Copy linkLink copied to clipboard!
SetBasedLabelSelector only allows set-based label requirements.
Next available tag: 3
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| requirements |
50.5.7.18. StorageSetBasedLabelSelectorOperator Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNKNOWN |
| IN |
| NOT_IN |
| EXISTS |
| NOT_EXISTS |
50.5.7.19. StorageSetBasedLabelSelectorRequirement Copy linkLink copied to clipboard!
Next available tag: 4
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| key | String | ||||
| op | UNKNOWN, IN, NOT_IN, EXISTS, NOT_EXISTS, | ||||
| values |
List of |
50.5.7.20. StorageSlimUser Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| id | String | ||||
| name | String |
50.5.7.21. StorageVulnerabilityReportFilters Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| fixability | BOTH, FIXABLE, NOT_FIXABLE, | ||||
| sinceLastReport | Boolean | ||||
| severities | List of StorageVulnerabilitySeverity | ||||
| imageTypes | |||||
| allVuln | Boolean | ||||
| sinceLastSentScheduledReport | Boolean | ||||
| sinceStartDate | Date | date-time | |||
| accessScopeRules | List of SimpleAccessScopeRules |
50.5.7.22. StorageVulnerabilitySeverity Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNKNOWN_VULNERABILITY_SEVERITY |
| LOW_VULNERABILITY_SEVERITY |
| MODERATE_VULNERABILITY_SEVERITY |
| IMPORTANT_VULNERABILITY_SEVERITY |
| CRITICAL_VULNERABILITY_SEVERITY |
50.5.7.23. V1UpdateReportConfigurationRequest Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| id | String | ||||
| reportConfig |
50.5.7.24. VulnerabilityReportFiltersFixability Copy linkLink copied to clipboard!
| Enum Values |
|---|
| BOTH |
| FIXABLE |
| NOT_FIXABLE |
50.5.7.25. VulnerabilityReportFiltersImageType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| DEPLOYED |
| WATCHED |
50.6. PostReportConfiguration Copy linkLink copied to clipboard!
POST /v1/report/configurations
PostReportConfiguration creates a report configuration
50.6.1. Description Copy linkLink copied to clipboard!
50.6.2. Parameters Copy linkLink copied to clipboard!
50.6.2.1. Body Parameter Copy linkLink copied to clipboard!
| Name | Description | Required | Default | Pattern |
|---|---|---|---|---|
| body | X |
50.6.3. Return Type Copy linkLink copied to clipboard!
50.6.4. Content Type Copy linkLink copied to clipboard!
- application/json
50.6.5. Responses Copy linkLink copied to clipboard!
| Code | Message | Datatype |
|---|---|---|
| 200 | A successful response. | |
| 0 | An unexpected error response. |
50.6.6. Samples Copy linkLink copied to clipboard!
50.6.7. Common object reference Copy linkLink copied to clipboard!
50.6.7.1. ProtobufAny Copy linkLink copied to clipboard!
Any contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.
Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type.
Example 1: Pack and unpack a message in C++.
Foo foo = ...;
Any any;
any.PackFrom(foo);
...
if (any.UnpackTo(&foo)) {
...
}
Example 2: Pack and unpack a message in Java.
Foo foo = ...;
Any any = Any.pack(foo);
...
if (any.is(Foo.class)) {
foo = any.unpack(Foo.class);
}
// or ...
if (any.isSameTypeAs(Foo.getDefaultInstance())) {
foo = any.unpack(Foo.getDefaultInstance());
}
Example 3: Pack and unpack a message in Python.
foo = Foo(...)
any = Any()
any.Pack(foo)
...
if any.Is(Foo.DESCRIPTOR):
any.Unpack(foo)
...
Example 4: Pack and unpack a message in Go
foo := &pb.Foo{...}
any, err := anypb.New(foo)
if err != nil {
...
}
...
foo := &pb.Foo{}
if err := any.UnmarshalTo(foo); err != nil {
...
}
The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example "foo.bar.com/x/y.z" will yield type name "y.z".
50.6.7.1.1. JSON representation Copy linkLink copied to clipboard!
The JSON representation of an Any value uses the regular representation of the deserialized, embedded message, with an additional field @type which contains the type URL. Example:
package google.profile;
message Person {
string first_name = 1;
string last_name = 2;
}
{
"@type": "type.googleapis.com/google.profile.Person",
"firstName": <string>,
"lastName": <string>
}
If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field value which holds the custom JSON in addition to the @type field. Example (for message [google.protobuf.Duration][]):
{
"@type": "type.googleapis.com/google.protobuf.Duration",
"value": "1.212s"
}
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| typeUrl | String |
A URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL’s path must represent the fully qualified name of the type (as in | |||
| value | byte[] | Must be a valid serialized protocol buffer of the above specified type. | byte |
50.6.7.2. ReportConfigurationReportType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| VULNERABILITY |
50.6.7.3. ReportLastRunStatusRunStatus Copy linkLink copied to clipboard!
| Enum Values |
|---|
| SUCCESS |
| FAILURE |
50.6.7.4. RuntimeError Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| error | String | ||||
| code | Integer | int32 | |||
| message | String | ||||
| details | List of ProtobufAny |
50.6.7.5. ScheduleDaysOfMonth Copy linkLink copied to clipboard!
1 for 1st, 2 for 2nd .... 31 for 31st
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| days |
List of | int32 |
50.6.7.6. ScheduleDaysOfWeek Copy linkLink copied to clipboard!
Sunday = 0, Monday = 1, .... Saturday = 6
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| days |
List of | int32 |
50.6.7.7. ScheduleIntervalType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNSET |
| DAILY |
| WEEKLY |
| MONTHLY |
50.6.7.8. ScheduleWeeklyInterval Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| day | Integer | int32 |
50.6.7.9. SimpleAccessScopeRules Copy linkLink copied to clipboard!
Each element of any repeated field is an individual rule. Rules are joined by logical OR: if there exists a rule allowing resource x, x is in the access scope.
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| includedClusters |
List of | ||||
| includedNamespaces | List of SimpleAccessScopeRulesNamespace | ||||
| clusterLabelSelectors | List of StorageSetBasedLabelSelector | ||||
| namespaceLabelSelectors | List of StorageSetBasedLabelSelector |
50.6.7.10. SimpleAccessScopeRulesNamespace Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| clusterName | String | Both fields must be set. | |||
| namespaceName | String |
50.6.7.11. StorageEmailNotifierConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| notifierId | String | ||||
| mailingLists |
List of | ||||
| customSubject | String | ||||
| customBody | String |
50.6.7.12. StorageNotifierConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| emailConfig | |||||
| id | String |
50.6.7.13. StorageReportConfiguration Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| id | String | ||||
| name | String | ||||
| description | String | ||||
| type | VULNERABILITY, | ||||
| vulnReportFilters | |||||
| scopeId | String | ||||
| emailConfig | |||||
| schedule | |||||
| lastRunStatus | |||||
| lastSuccessfulRunTime | Date | date-time | |||
| resourceScope | |||||
| notifiers | List of StorageNotifierConfiguration | ||||
| creator | |||||
| version | Integer | int32 |
50.6.7.14. StorageReportLastRunStatus Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| reportStatus | SUCCESS, FAILURE, | ||||
| lastRunTime | Date | date-time | |||
| errorMsg | String |
50.6.7.15. StorageResourceScope Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| collectionId | String |
50.6.7.16. StorageSchedule Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| intervalType | UNSET, DAILY, WEEKLY, MONTHLY, | ||||
| hour | Integer | int32 | |||
| minute | Integer | int32 | |||
| weekly | |||||
| daysOfWeek | |||||
| daysOfMonth |
50.6.7.17. StorageSetBasedLabelSelector Copy linkLink copied to clipboard!
SetBasedLabelSelector only allows set-based label requirements.
Next available tag: 3
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| requirements |
50.6.7.18. StorageSetBasedLabelSelectorOperator Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNKNOWN |
| IN |
| NOT_IN |
| EXISTS |
| NOT_EXISTS |
50.6.7.19. StorageSetBasedLabelSelectorRequirement Copy linkLink copied to clipboard!
Next available tag: 4
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| key | String | ||||
| op | UNKNOWN, IN, NOT_IN, EXISTS, NOT_EXISTS, | ||||
| values |
List of |
50.6.7.20. StorageSlimUser Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| id | String | ||||
| name | String |
50.6.7.21. StorageVulnerabilityReportFilters Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| fixability | BOTH, FIXABLE, NOT_FIXABLE, | ||||
| sinceLastReport | Boolean | ||||
| severities | List of StorageVulnerabilitySeverity | ||||
| imageTypes | |||||
| allVuln | Boolean | ||||
| sinceLastSentScheduledReport | Boolean | ||||
| sinceStartDate | Date | date-time | |||
| accessScopeRules | List of SimpleAccessScopeRules |
50.6.7.22. StorageVulnerabilitySeverity Copy linkLink copied to clipboard!
| Enum Values |
|---|
| UNKNOWN_VULNERABILITY_SEVERITY |
| LOW_VULNERABILITY_SEVERITY |
| MODERATE_VULNERABILITY_SEVERITY |
| IMPORTANT_VULNERABILITY_SEVERITY |
| CRITICAL_VULNERABILITY_SEVERITY |
50.6.7.23. V1PostReportConfigurationRequest Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| reportConfig |
50.6.7.24. V1PostReportConfigurationResponse Copy linkLink copied to clipboard!
| Field Name | Required | Nullable | Type | Description | Format |
|---|---|---|---|---|---|
| reportConfig |
50.6.7.25. VulnerabilityReportFiltersFixability Copy linkLink copied to clipboard!
| Enum Values |
|---|
| BOTH |
| FIXABLE |
| NOT_FIXABLE |
50.6.7.26. VulnerabilityReportFiltersImageType Copy linkLink copied to clipboard!
| Enum Values |
|---|
| DEPLOYED |
| WATCHED |