Skip to content

Commit 13cff8b

Browse files
Releasing version 65.99.2
Releasing version 65.99.2
2 parents ca12c92 + d7f7368 commit 13cff8b

File tree

255 files changed

+8136
-1180
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+8136
-1180
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,18 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66

7+
## 65.99.2 - 2025-09-02
8+
### Added
9+
- Support for key management integration for Google Cloud Platform (GCP) in the Database Multicloud service
10+
- Support for autoscale database storage vault in the Database service
11+
- Support for creating Data Guards and moving encrypted keys to Google Cloud Provider in the Database service
12+
- Support for validating backup for the backup in the HeatWave service
13+
- Support for additional detector types, recipes and rules in the Cloud Guard service
14+
- Support for internal DAC shapes in the the Generative AI service
15+
716
## 65.99.1 - 2025-08-26
817
### Added
18+
- Support for OCI Streaming with Apache Kafka (OCI Managed Kafka) service
919
- Support for Oracle 19C databases on exascale infrastructure in the Database Service
1020
- Support for VM.Standard.x86 shape for base databases in the Database Service
1121
- Support for disaster recovery for MySQL database systems in the Disaster Recovery Service
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
// Copyright (c) 2016, 2018, 2025, Oracle and/or its affiliates. All rights reserved.
2+
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
3+
// Code generated. DO NOT EDIT.
4+
5+
// Cloud Guard and Security Zones API
6+
//
7+
// Use the Cloud Guard and Security Zones API to automate processes that you would otherwise perform through the Cloud Guard Console or the Security Zones Console. For more information on these services, see the Cloud Guard (https://docs.oracle.com/iaas/cloud-guard/home.htm) and Security Zones (https://docs.oracle.com/iaas/security-zone/home.htm) documentation.
8+
// **Note:** For Cloud Guard, you can perform Create, Update, and Delete operations only from the reporting region of your Cloud Guard tenancy. You can perform Read operations from any region.
9+
//
10+
11+
package cloudguard
12+
13+
import (
14+
"fmt"
15+
"github.com/oracle/oci-go-sdk/v65/common"
16+
"strings"
17+
)
18+
19+
// AdditionalConfigPropertyDefinition Detector rule additional property field
20+
type AdditionalConfigPropertyDefinition struct {
21+
22+
// Property Type
23+
PropertyType AdditionalConfigPropertyDefinitionPropertyTypeEnum `mandatory:"false" json:"propertyType,omitempty"`
24+
25+
// Name for Additional Property, for example, "interpreter", "router"
26+
Key *string `mandatory:"false" json:"key"`
27+
28+
// Value for Property Name, for example, "generic", "cloudguard"
29+
Value *string `mandatory:"false" json:"value"`
30+
}
31+
32+
func (m AdditionalConfigPropertyDefinition) String() string {
33+
return common.PointerString(m)
34+
}
35+
36+
// ValidateEnumValue returns an error when providing an unsupported enum value
37+
// This function is being called during constructing API request process
38+
// Not recommended for calling this function directly
39+
func (m AdditionalConfigPropertyDefinition) ValidateEnumValue() (bool, error) {
40+
errMessage := []string{}
41+
42+
if _, ok := GetMappingAdditionalConfigPropertyDefinitionPropertyTypeEnum(string(m.PropertyType)); !ok && m.PropertyType != "" {
43+
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for PropertyType: %s. Supported values are: %s.", m.PropertyType, strings.Join(GetAdditionalConfigPropertyDefinitionPropertyTypeEnumStringValues(), ",")))
44+
}
45+
if len(errMessage) > 0 {
46+
return true, fmt.Errorf("%s", strings.Join(errMessage, "\n"))
47+
}
48+
return false, nil
49+
}
50+
51+
// AdditionalConfigPropertyDefinitionPropertyTypeEnum Enum with underlying type: string
52+
type AdditionalConfigPropertyDefinitionPropertyTypeEnum string
53+
54+
// Set of constants representing the allowable values for AdditionalConfigPropertyDefinitionPropertyTypeEnum
55+
const (
56+
AdditionalConfigPropertyDefinitionPropertyTypeHint AdditionalConfigPropertyDefinitionPropertyTypeEnum = "HINT"
57+
AdditionalConfigPropertyDefinitionPropertyTypeRange AdditionalConfigPropertyDefinitionPropertyTypeEnum = "RANGE"
58+
)
59+
60+
var mappingAdditionalConfigPropertyDefinitionPropertyTypeEnum = map[string]AdditionalConfigPropertyDefinitionPropertyTypeEnum{
61+
"HINT": AdditionalConfigPropertyDefinitionPropertyTypeHint,
62+
"RANGE": AdditionalConfigPropertyDefinitionPropertyTypeRange,
63+
}
64+
65+
var mappingAdditionalConfigPropertyDefinitionPropertyTypeEnumLowerCase = map[string]AdditionalConfigPropertyDefinitionPropertyTypeEnum{
66+
"hint": AdditionalConfigPropertyDefinitionPropertyTypeHint,
67+
"range": AdditionalConfigPropertyDefinitionPropertyTypeRange,
68+
}
69+
70+
// GetAdditionalConfigPropertyDefinitionPropertyTypeEnumValues Enumerates the set of values for AdditionalConfigPropertyDefinitionPropertyTypeEnum
71+
func GetAdditionalConfigPropertyDefinitionPropertyTypeEnumValues() []AdditionalConfigPropertyDefinitionPropertyTypeEnum {
72+
values := make([]AdditionalConfigPropertyDefinitionPropertyTypeEnum, 0)
73+
for _, v := range mappingAdditionalConfigPropertyDefinitionPropertyTypeEnum {
74+
values = append(values, v)
75+
}
76+
return values
77+
}
78+
79+
// GetAdditionalConfigPropertyDefinitionPropertyTypeEnumStringValues Enumerates the set of values in String for AdditionalConfigPropertyDefinitionPropertyTypeEnum
80+
func GetAdditionalConfigPropertyDefinitionPropertyTypeEnumStringValues() []string {
81+
return []string{
82+
"HINT",
83+
"RANGE",
84+
}
85+
}
86+
87+
// GetMappingAdditionalConfigPropertyDefinitionPropertyTypeEnum performs case Insensitive comparison on enum value and return the desired enum
88+
func GetMappingAdditionalConfigPropertyDefinitionPropertyTypeEnum(val string) (AdditionalConfigPropertyDefinitionPropertyTypeEnum, bool) {
89+
enum, ok := mappingAdditionalConfigPropertyDefinitionPropertyTypeEnumLowerCase[strings.ToLower(val)]
90+
return enum, ok
91+
}

cloudguard/condition_type_enum.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const (
2424
ConditionTypeEnumCloudGuardCondition ConditionTypeEnumEnum = "CloudGuardCondition"
2525
ConditionTypeEnumInstanceSecurityCondition ConditionTypeEnumEnum = "InstanceSecurityCondition"
2626
ConditionTypeEnumThreatCondition ConditionTypeEnumEnum = "ThreatCondition"
27+
ConditionTypeEnumContainerCondition ConditionTypeEnumEnum = "ContainerCondition"
2728
)
2829

2930
var mappingConditionTypeEnumEnum = map[string]ConditionTypeEnumEnum{
@@ -32,6 +33,7 @@ var mappingConditionTypeEnumEnum = map[string]ConditionTypeEnumEnum{
3233
"CloudGuardCondition": ConditionTypeEnumCloudGuardCondition,
3334
"InstanceSecurityCondition": ConditionTypeEnumInstanceSecurityCondition,
3435
"ThreatCondition": ConditionTypeEnumThreatCondition,
36+
"ContainerCondition": ConditionTypeEnumContainerCondition,
3537
}
3638

3739
var mappingConditionTypeEnumEnumLowerCase = map[string]ConditionTypeEnumEnum{
@@ -40,6 +42,7 @@ var mappingConditionTypeEnumEnumLowerCase = map[string]ConditionTypeEnumEnum{
4042
"cloudguardcondition": ConditionTypeEnumCloudGuardCondition,
4143
"instancesecuritycondition": ConditionTypeEnumInstanceSecurityCondition,
4244
"threatcondition": ConditionTypeEnumThreatCondition,
45+
"containercondition": ConditionTypeEnumContainerCondition,
4346
}
4447

4548
// GetConditionTypeEnumEnumValues Enumerates the set of values for ConditionTypeEnumEnum
@@ -59,6 +62,7 @@ func GetConditionTypeEnumEnumStringValues() []string {
5962
"CloudGuardCondition",
6063
"InstanceSecurityCondition",
6164
"ThreatCondition",
65+
"ContainerCondition",
6266
}
6367
}
6468

cloudguard/create_managed_list_details.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ type CreateManagedListDetails struct {
3939
// List of items in the managed list
4040
ListItems []string `mandatory:"false" json:"listItems"`
4141

42+
// Managed list type group
43+
Group *string `mandatory:"false" json:"group"`
44+
4245
// Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
4346
// Example: `{"bar-key": "value"}`
4447
// Avoid entering confidential information.

cloudguard/detector_configuration.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ type DetectorConfiguration struct {
3939

4040
// Map of possible values for configuration
4141
AllowedValues []PropertyTuple `mandatory:"false" json:"allowedValues"`
42+
43+
// Map of additional property values for configuration
44+
AdditionalProperties []AdditionalConfigPropertyDefinition `mandatory:"false" json:"additionalProperties"`
4245
}
4346

4447
func (m DetectorConfiguration) String() string {

cloudguard/detector_enum.go

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,30 @@ type DetectorEnumEnum string
1919

2020
// Set of constants representing the allowable values for DetectorEnumEnum
2121
const (
22-
DetectorEnumIaasActivityDetector DetectorEnumEnum = "IAAS_ACTIVITY_DETECTOR"
23-
DetectorEnumIaasConfigurationDetector DetectorEnumEnum = "IAAS_CONFIGURATION_DETECTOR"
24-
DetectorEnumIaasThreatDetector DetectorEnumEnum = "IAAS_THREAT_DETECTOR"
25-
DetectorEnumIaasLogInsightDetector DetectorEnumEnum = "IAAS_LOG_INSIGHT_DETECTOR"
26-
DetectorEnumIaasInstanceSecurityDetector DetectorEnumEnum = "IAAS_INSTANCE_SECURITY_DETECTOR"
22+
DetectorEnumIaasActivityDetector DetectorEnumEnum = "IAAS_ACTIVITY_DETECTOR"
23+
DetectorEnumIaasConfigurationDetector DetectorEnumEnum = "IAAS_CONFIGURATION_DETECTOR"
24+
DetectorEnumIaasThreatDetector DetectorEnumEnum = "IAAS_THREAT_DETECTOR"
25+
DetectorEnumIaasLogInsightDetector DetectorEnumEnum = "IAAS_LOG_INSIGHT_DETECTOR"
26+
DetectorEnumIaasInstanceSecurityDetector DetectorEnumEnum = "IAAS_INSTANCE_SECURITY_DETECTOR"
27+
DetectorEnumIaasContainerSecurityDetector DetectorEnumEnum = "IAAS_CONTAINER_SECURITY_DETECTOR"
2728
)
2829

2930
var mappingDetectorEnumEnum = map[string]DetectorEnumEnum{
30-
"IAAS_ACTIVITY_DETECTOR": DetectorEnumIaasActivityDetector,
31-
"IAAS_CONFIGURATION_DETECTOR": DetectorEnumIaasConfigurationDetector,
32-
"IAAS_THREAT_DETECTOR": DetectorEnumIaasThreatDetector,
33-
"IAAS_LOG_INSIGHT_DETECTOR": DetectorEnumIaasLogInsightDetector,
34-
"IAAS_INSTANCE_SECURITY_DETECTOR": DetectorEnumIaasInstanceSecurityDetector,
31+
"IAAS_ACTIVITY_DETECTOR": DetectorEnumIaasActivityDetector,
32+
"IAAS_CONFIGURATION_DETECTOR": DetectorEnumIaasConfigurationDetector,
33+
"IAAS_THREAT_DETECTOR": DetectorEnumIaasThreatDetector,
34+
"IAAS_LOG_INSIGHT_DETECTOR": DetectorEnumIaasLogInsightDetector,
35+
"IAAS_INSTANCE_SECURITY_DETECTOR": DetectorEnumIaasInstanceSecurityDetector,
36+
"IAAS_CONTAINER_SECURITY_DETECTOR": DetectorEnumIaasContainerSecurityDetector,
3537
}
3638

3739
var mappingDetectorEnumEnumLowerCase = map[string]DetectorEnumEnum{
38-
"iaas_activity_detector": DetectorEnumIaasActivityDetector,
39-
"iaas_configuration_detector": DetectorEnumIaasConfigurationDetector,
40-
"iaas_threat_detector": DetectorEnumIaasThreatDetector,
41-
"iaas_log_insight_detector": DetectorEnumIaasLogInsightDetector,
42-
"iaas_instance_security_detector": DetectorEnumIaasInstanceSecurityDetector,
40+
"iaas_activity_detector": DetectorEnumIaasActivityDetector,
41+
"iaas_configuration_detector": DetectorEnumIaasConfigurationDetector,
42+
"iaas_threat_detector": DetectorEnumIaasThreatDetector,
43+
"iaas_log_insight_detector": DetectorEnumIaasLogInsightDetector,
44+
"iaas_instance_security_detector": DetectorEnumIaasInstanceSecurityDetector,
45+
"iaas_container_security_detector": DetectorEnumIaasContainerSecurityDetector,
4346
}
4447

4548
// GetDetectorEnumEnumValues Enumerates the set of values for DetectorEnumEnum
@@ -59,6 +62,7 @@ func GetDetectorEnumEnumStringValues() []string {
5962
"IAAS_THREAT_DETECTOR",
6063
"IAAS_LOG_INSIGHT_DETECTOR",
6164
"IAAS_INSTANCE_SECURITY_DETECTOR",
65+
"IAAS_CONTAINER_SECURITY_DETECTOR",
6266
}
6367
}
6468

cloudguard/detector_recipe_detector_rule.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ type DetectorRecipeDetectorRule struct {
4040
// Recommendation for DetectorRecipeDetectorRule resource
4141
Recommendation *string `mandatory:"false" json:"recommendation"`
4242

43+
// Detector rule type
44+
RuleType []RuleType `mandatory:"false" json:"ruleType"`
45+
46+
// Is the rule cloneable?
47+
IsCloneable *bool `mandatory:"false" json:"isCloneable"`
48+
4349
Details *DetectorDetails `mandatory:"false" json:"details"`
4450

4551
// List of managed list types related to this rule
@@ -117,6 +123,8 @@ const (
117123
DetectorRecipeDetectorRuleManagedListTypesGeneric DetectorRecipeDetectorRuleManagedListTypesEnum = "GENERIC"
118124
DetectorRecipeDetectorRuleManagedListTypesFusionAppsRole DetectorRecipeDetectorRuleManagedListTypesEnum = "FUSION_APPS_ROLE"
119125
DetectorRecipeDetectorRuleManagedListTypesFusionAppsPermission DetectorRecipeDetectorRuleManagedListTypesEnum = "FUSION_APPS_PERMISSION"
126+
DetectorRecipeDetectorRuleManagedListTypesNamespaceSelector DetectorRecipeDetectorRuleManagedListTypesEnum = "NAMESPACE_SELECTOR"
127+
DetectorRecipeDetectorRuleManagedListTypesPodResourceSelector DetectorRecipeDetectorRuleManagedListTypesEnum = "POD_RESOURCE_SELECTOR"
120128
)
121129

122130
var mappingDetectorRecipeDetectorRuleManagedListTypesEnum = map[string]DetectorRecipeDetectorRuleManagedListTypesEnum{
@@ -134,6 +142,8 @@ var mappingDetectorRecipeDetectorRuleManagedListTypesEnum = map[string]DetectorR
134142
"GENERIC": DetectorRecipeDetectorRuleManagedListTypesGeneric,
135143
"FUSION_APPS_ROLE": DetectorRecipeDetectorRuleManagedListTypesFusionAppsRole,
136144
"FUSION_APPS_PERMISSION": DetectorRecipeDetectorRuleManagedListTypesFusionAppsPermission,
145+
"NAMESPACE_SELECTOR": DetectorRecipeDetectorRuleManagedListTypesNamespaceSelector,
146+
"POD_RESOURCE_SELECTOR": DetectorRecipeDetectorRuleManagedListTypesPodResourceSelector,
137147
}
138148

139149
var mappingDetectorRecipeDetectorRuleManagedListTypesEnumLowerCase = map[string]DetectorRecipeDetectorRuleManagedListTypesEnum{
@@ -151,6 +161,8 @@ var mappingDetectorRecipeDetectorRuleManagedListTypesEnumLowerCase = map[string]
151161
"generic": DetectorRecipeDetectorRuleManagedListTypesGeneric,
152162
"fusion_apps_role": DetectorRecipeDetectorRuleManagedListTypesFusionAppsRole,
153163
"fusion_apps_permission": DetectorRecipeDetectorRuleManagedListTypesFusionAppsPermission,
164+
"namespace_selector": DetectorRecipeDetectorRuleManagedListTypesNamespaceSelector,
165+
"pod_resource_selector": DetectorRecipeDetectorRuleManagedListTypesPodResourceSelector,
154166
}
155167

156168
// GetDetectorRecipeDetectorRuleManagedListTypesEnumValues Enumerates the set of values for DetectorRecipeDetectorRuleManagedListTypesEnum
@@ -179,6 +191,8 @@ func GetDetectorRecipeDetectorRuleManagedListTypesEnumStringValues() []string {
179191
"GENERIC",
180192
"FUSION_APPS_ROLE",
181193
"FUSION_APPS_PERMISSION",
194+
"NAMESPACE_SELECTOR",
195+
"POD_RESOURCE_SELECTOR",
182196
}
183197
}
184198

cloudguard/detector_recipe_detector_rule_summary.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ type DetectorRecipeDetectorRuleSummary struct {
4040
// Resource type of the configuration to which the rule is applied
4141
ResourceType *string `mandatory:"false" json:"resourceType"`
4242

43+
// Rule type
44+
RuleType []RuleType `mandatory:"false" json:"ruleType"`
45+
46+
// Is the rule cloneable?
47+
IsCloneable *bool `mandatory:"false" json:"isCloneable"`
48+
4349
// List of managed list types related to this rule
4450
ManagedListTypes []DetectorRecipeDetectorRuleSummaryManagedListTypesEnum `mandatory:"false" json:"managedListTypes,omitempty"`
4551

@@ -114,6 +120,8 @@ const (
114120
DetectorRecipeDetectorRuleSummaryManagedListTypesGeneric DetectorRecipeDetectorRuleSummaryManagedListTypesEnum = "GENERIC"
115121
DetectorRecipeDetectorRuleSummaryManagedListTypesFusionAppsRole DetectorRecipeDetectorRuleSummaryManagedListTypesEnum = "FUSION_APPS_ROLE"
116122
DetectorRecipeDetectorRuleSummaryManagedListTypesFusionAppsPermission DetectorRecipeDetectorRuleSummaryManagedListTypesEnum = "FUSION_APPS_PERMISSION"
123+
DetectorRecipeDetectorRuleSummaryManagedListTypesNamespaceSelector DetectorRecipeDetectorRuleSummaryManagedListTypesEnum = "NAMESPACE_SELECTOR"
124+
DetectorRecipeDetectorRuleSummaryManagedListTypesPodResourceSelector DetectorRecipeDetectorRuleSummaryManagedListTypesEnum = "POD_RESOURCE_SELECTOR"
117125
)
118126

119127
var mappingDetectorRecipeDetectorRuleSummaryManagedListTypesEnum = map[string]DetectorRecipeDetectorRuleSummaryManagedListTypesEnum{
@@ -131,6 +139,8 @@ var mappingDetectorRecipeDetectorRuleSummaryManagedListTypesEnum = map[string]De
131139
"GENERIC": DetectorRecipeDetectorRuleSummaryManagedListTypesGeneric,
132140
"FUSION_APPS_ROLE": DetectorRecipeDetectorRuleSummaryManagedListTypesFusionAppsRole,
133141
"FUSION_APPS_PERMISSION": DetectorRecipeDetectorRuleSummaryManagedListTypesFusionAppsPermission,
142+
"NAMESPACE_SELECTOR": DetectorRecipeDetectorRuleSummaryManagedListTypesNamespaceSelector,
143+
"POD_RESOURCE_SELECTOR": DetectorRecipeDetectorRuleSummaryManagedListTypesPodResourceSelector,
134144
}
135145

136146
var mappingDetectorRecipeDetectorRuleSummaryManagedListTypesEnumLowerCase = map[string]DetectorRecipeDetectorRuleSummaryManagedListTypesEnum{
@@ -148,6 +158,8 @@ var mappingDetectorRecipeDetectorRuleSummaryManagedListTypesEnumLowerCase = map[
148158
"generic": DetectorRecipeDetectorRuleSummaryManagedListTypesGeneric,
149159
"fusion_apps_role": DetectorRecipeDetectorRuleSummaryManagedListTypesFusionAppsRole,
150160
"fusion_apps_permission": DetectorRecipeDetectorRuleSummaryManagedListTypesFusionAppsPermission,
161+
"namespace_selector": DetectorRecipeDetectorRuleSummaryManagedListTypesNamespaceSelector,
162+
"pod_resource_selector": DetectorRecipeDetectorRuleSummaryManagedListTypesPodResourceSelector,
151163
}
152164

153165
// GetDetectorRecipeDetectorRuleSummaryManagedListTypesEnumValues Enumerates the set of values for DetectorRecipeDetectorRuleSummaryManagedListTypesEnum
@@ -176,6 +188,8 @@ func GetDetectorRecipeDetectorRuleSummaryManagedListTypesEnumStringValues() []st
176188
"GENERIC",
177189
"FUSION_APPS_ROLE",
178190
"FUSION_APPS_PERMISSION",
191+
"NAMESPACE_SELECTOR",
192+
"POD_RESOURCE_SELECTOR",
179193
}
180194
}
181195

cloudguard/detector_rule.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ const (
111111
DetectorRuleManagedListTypesGeneric DetectorRuleManagedListTypesEnum = "GENERIC"
112112
DetectorRuleManagedListTypesFusionAppsRole DetectorRuleManagedListTypesEnum = "FUSION_APPS_ROLE"
113113
DetectorRuleManagedListTypesFusionAppsPermission DetectorRuleManagedListTypesEnum = "FUSION_APPS_PERMISSION"
114+
DetectorRuleManagedListTypesNamespaceSelector DetectorRuleManagedListTypesEnum = "NAMESPACE_SELECTOR"
115+
DetectorRuleManagedListTypesPodResourceSelector DetectorRuleManagedListTypesEnum = "POD_RESOURCE_SELECTOR"
114116
)
115117

116118
var mappingDetectorRuleManagedListTypesEnum = map[string]DetectorRuleManagedListTypesEnum{
@@ -128,6 +130,8 @@ var mappingDetectorRuleManagedListTypesEnum = map[string]DetectorRuleManagedList
128130
"GENERIC": DetectorRuleManagedListTypesGeneric,
129131
"FUSION_APPS_ROLE": DetectorRuleManagedListTypesFusionAppsRole,
130132
"FUSION_APPS_PERMISSION": DetectorRuleManagedListTypesFusionAppsPermission,
133+
"NAMESPACE_SELECTOR": DetectorRuleManagedListTypesNamespaceSelector,
134+
"POD_RESOURCE_SELECTOR": DetectorRuleManagedListTypesPodResourceSelector,
131135
}
132136

133137
var mappingDetectorRuleManagedListTypesEnumLowerCase = map[string]DetectorRuleManagedListTypesEnum{
@@ -145,6 +149,8 @@ var mappingDetectorRuleManagedListTypesEnumLowerCase = map[string]DetectorRuleMa
145149
"generic": DetectorRuleManagedListTypesGeneric,
146150
"fusion_apps_role": DetectorRuleManagedListTypesFusionAppsRole,
147151
"fusion_apps_permission": DetectorRuleManagedListTypesFusionAppsPermission,
152+
"namespace_selector": DetectorRuleManagedListTypesNamespaceSelector,
153+
"pod_resource_selector": DetectorRuleManagedListTypesPodResourceSelector,
148154
}
149155

150156
// GetDetectorRuleManagedListTypesEnumValues Enumerates the set of values for DetectorRuleManagedListTypesEnum
@@ -173,6 +179,8 @@ func GetDetectorRuleManagedListTypesEnumStringValues() []string {
173179
"GENERIC",
174180
"FUSION_APPS_ROLE",
175181
"FUSION_APPS_PERMISSION",
182+
"NAMESPACE_SELECTOR",
183+
"POD_RESOURCE_SELECTOR",
176184
}
177185
}
178186

0 commit comments

Comments
 (0)