File tree 2 files changed +8
-12
lines changed
2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -89,20 +89,18 @@ func (in *ConfiguredResource) GetOCIArtifact() *OCIArtifactInfo {
89
89
return in .Status .OCIArtifact
90
90
}
91
91
92
- // GetOCIRepository returns the name of the OCI repository of the OCI artifact in which the component
93
- // descriptors are stored.
92
+ // GetOCIRepository returns the name of the OCI repository of the OCI artifact in which the configured resource is
93
+ // stored.
94
94
func (in * ConfiguredResource ) GetOCIRepository () string {
95
95
return in .Status .OCIArtifact .Repository
96
96
}
97
97
98
- // GetManifestDigest returns the manifest digest of the OCI artifact, in which the component descriptors
99
- // are stored.
98
+ // GetManifestDigest returns the manifest digest of the OCI artifact, in which the configured resource is stored.
100
99
func (in * ConfiguredResource ) GetManifestDigest () string {
101
100
return in .Status .OCIArtifact .Digest
102
101
}
103
102
104
- // GetBlobDigest returns the blob digest of the OCI artifact, in which the component descriptors
105
- // are stored.
103
+ // GetBlobDigest returns the blob digest of the OCI artifact, in which the configured resource is stored.
106
104
func (in * ConfiguredResource ) GetBlobDigest () string {
107
105
return in .Status .OCIArtifact .Blob .Digest
108
106
}
Original file line number Diff line number Diff line change @@ -77,20 +77,18 @@ func (in *LocalizedResource) GetOCIArtifact() *OCIArtifactInfo {
77
77
return in .Status .OCIArtifact
78
78
}
79
79
80
- // GetOCIRepository returns the name of the OCI repository of the OCI artifact in which the component
81
- // descriptors are stored.
80
+ // GetOCIRepository returns the name of the OCI repository of the OCI artifact, in which the localized resource is
81
+ // stored.
82
82
func (in * LocalizedResource ) GetOCIRepository () string {
83
83
return in .Status .OCIArtifact .Repository
84
84
}
85
85
86
- // GetManifestDigest returns the manifest digest of the OCI artifact, in which the component descriptors
87
- // are stored.
86
+ // GetManifestDigest returns the manifest digest of the OCI artifact, in which the localized resource is stored.
88
87
func (in * LocalizedResource ) GetManifestDigest () string {
89
88
return in .Status .OCIArtifact .Digest
90
89
}
91
90
92
- // GetBlobDigest returns the blob digest of the OCI artifact, in which the component descriptors
93
- // are stored.
91
+ // GetBlobDigest returns the blob digest of the OCI artifact, in which the localized resource is stored.
94
92
func (in * LocalizedResource ) GetBlobDigest () string {
95
93
return in .Status .OCIArtifact .Blob .Digest
96
94
}
You can’t perform that action at this time.
0 commit comments