Class: Google::Apis::GkebackupV1::SubstitutionRule
- Inherits:
-
Object
- Object
- Google::Apis::GkebackupV1::SubstitutionRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkebackup_v1/classes.rb,
lib/google/apis/gkebackup_v1/representations.rb,
lib/google/apis/gkebackup_v1/representations.rb
Overview
A transformation rule to be applied against Kubernetes resources as they are selected for restoration from a Backup. A rule contains both filtering logic ( which resources are subject to substitution) and substitution logic.
Instance Attribute Summary collapse
-
#new_value ⇒ String
This is the new value to set for any fields that pass the filtering and selection criteria.
-
#original_value_pattern ⇒ String
(Filtering parameter) This is a regular expression that is compared against the fields matched by the target_json_path expression (and must also have passed the previous filters).
-
#target_group_kinds ⇒ Array<Google::Apis::GkebackupV1::GroupKind>
(Filtering parameter) Any resource subject to substitution must belong to one of the listed "types".
-
#target_json_path ⇒ String
Required.
-
#target_namespaces ⇒ Array<String>
(Filtering parameter) Any resource subject to substitution must be contained within one of the listed Kubernetes Namespace in the Backup.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SubstitutionRule
constructor
A new instance of SubstitutionRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SubstitutionRule
Returns a new instance of SubstitutionRule.
1814 1815 1816 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1814 def initialize(**args) update!(**args) end |
Instance Attribute Details
#new_value ⇒ String
This is the new value to set for any fields that pass the filtering and
selection criteria. To remove a value from a Kubernetes resource, either leave
this field unspecified, or set it to the empty string ("").
Corresponds to the JSON property newValue
1772 1773 1774 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1772 def new_value @new_value end |
#original_value_pattern ⇒ String
(Filtering parameter) This is a regular expression that is compared against the fields matched by the
target_json_path expression (and must also have passed the previous filters).
Substitution will not be performed against fields whose value does not match
this expression. If this field is NOT specified, then ALL fields matched by
the target_json_path expression will undergo substitution. Note that an empty (
e.g., "", rather than unspecified) value for for this field will only match
empty fields.
Corresponds to the JSON property originalValuePattern
1784 1785 1786 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1784 def original_value_pattern @original_value_pattern end |
#target_group_kinds ⇒ Array<Google::Apis::GkebackupV1::GroupKind>
(Filtering parameter) Any resource subject to substitution must belong to one
of the listed "types". If this field is not provided, no type filtering will
be performed (all resources of all types matching previous filtering
parameters will be candidates for substitution).
Corresponds to the JSON property targetGroupKinds
1792 1793 1794 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1792 def target_group_kinds @target_group_kinds end |
#target_json_path ⇒ String
Required. This is a JSONPath expression that matches specific fields of candidate resources and
it operates as both a filtering parameter (resources that are not matched with
this expression will not be candidates for substitution) as well as a field
identifier (identifies exactly which fields out of the candidate resources
will be modified).
Corresponds to the JSON property targetJsonPath
1802 1803 1804 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1802 def target_json_path @target_json_path end |
#target_namespaces ⇒ Array<String>
(Filtering parameter) Any resource subject to substitution must be contained
within one of the listed Kubernetes Namespace in the Backup. If this field is
not provided, no namespace filtering will be performed (all resources in all
Namespaces, including all cluster-scoped resources, will be candidates for
substitution). To mix cluster-scoped and namespaced resources in the same rule,
use an empty string ("") as one of the target namespaces.
Corresponds to the JSON property targetNamespaces
1812 1813 1814 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1812 def target_namespaces @target_namespaces end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1819 1820 1821 1822 1823 1824 1825 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1819 def update!(**args) @new_value = args[:new_value] if args.key?(:new_value) @original_value_pattern = args[:original_value_pattern] if args.key?(:original_value_pattern) @target_group_kinds = args[:target_group_kinds] if args.key?(:target_group_kinds) @target_json_path = args[:target_json_path] if args.key?(:target_json_path) @target_namespaces = args[:target_namespaces] if args.key?(:target_namespaces) end |