File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed
src/K8sOperator.NET/Metadata Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace K8sOperator . NET . Metadata ;
4
4
5
- internal interface IDescriptionMetadata
5
+ /// <summary>
6
+ /// Represents metadata that includes a description.
7
+ /// </summary>
8
+ public interface IDescriptionMetadata
6
9
{
10
+ /// <summary>
11
+ /// Gets the description associated with the metadata.
12
+ /// </summary>
7
13
string Description { get ; }
8
14
}
9
15
Original file line number Diff line number Diff line change 2
2
using K8sOperator . NET . Helpers ;
3
3
4
4
namespace K8sOperator . NET . Metadata ;
5
- internal interface IEntityScopeMetadata
5
+
6
+ /// <summary>
7
+ /// Represents metadata that includes the scope of an entity in Kubernetes.
8
+ /// </summary>
9
+ public interface IEntityScopeMetadata
6
10
{
11
+ /// <summary>
12
+ /// Gets the scope of the entity, indicating whether it is namespaced or cluster-wide.
13
+ /// </summary>
7
14
EntityScope Scope { get ; }
8
15
}
9
16
Original file line number Diff line number Diff line change 1
1
using K8sOperator . NET . Helpers ;
2
2
3
3
namespace K8sOperator . NET . Metadata ;
4
- internal interface IFinalizerMetadata
4
+
5
+ /// <summary>
6
+ /// Represents metadata for a Kubernetes finalizer.
7
+ /// </summary>
8
+ public interface IFinalizerMetadata
5
9
{
10
+ /// <summary>
11
+ /// Gets the name of the finalizer.
12
+ /// </summary>
6
13
string Name { get ; }
7
14
}
8
15
You can’t perform that action at this time.
0 commit comments