cadenya 0.33.0 → 0.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/cadenya/models/account_resource_metadata.rb +6 -3
- data/lib/cadenya/models/api_key_create_params.rb +6 -3
- data/lib/cadenya/models/api_key_update_params.rb +6 -3
- data/lib/cadenya/models/create_operation_metadata.rb +6 -3
- data/lib/cadenya/models/create_resource_metadata.rb +6 -3
- data/lib/cadenya/models/operation_metadata.rb +6 -3
- data/lib/cadenya/models/resource_metadata.rb +6 -3
- data/lib/cadenya/models/update_resource_metadata.rb +6 -3
- data/lib/cadenya/models/workspace_admin_create_params.rb +6 -3
- data/lib/cadenya/models/workspace_admin_update_params.rb +6 -3
- data/lib/cadenya/version.rb +1 -1
- data/rbi/cadenya/models/account_resource_metadata.rbi +10 -4
- data/rbi/cadenya/models/api_key_create_params.rbi +10 -4
- data/rbi/cadenya/models/api_key_update_params.rbi +10 -4
- data/rbi/cadenya/models/create_operation_metadata.rbi +10 -4
- data/rbi/cadenya/models/create_resource_metadata.rbi +10 -4
- data/rbi/cadenya/models/operation_metadata.rbi +10 -4
- data/rbi/cadenya/models/resource_metadata.rbi +10 -4
- data/rbi/cadenya/models/update_resource_metadata.rbi +10 -4
- data/rbi/cadenya/models/workspace_admin_create_params.rbi +10 -4
- data/rbi/cadenya/models/workspace_admin_update_params.rbi +10 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ec5cf59c2185635477815751d8c6990db7bd709ef5e6b4a2e22a3bcfd1fd5f7
|
|
4
|
+
data.tar.gz: 4598fcf0d0be5964a1d4773319594bd4e6d2a74467ee80197005bfcadbcc2fc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1ee767a54044a986a689cda6c59050db13e67d9697a434673bd6d493510332ee6a3dea4e15fd7de5d6af97c88700158feccd5b4ef64bb4dd51ecad67172b294
|
|
7
|
+
data.tar.gz: 9944c31e4da2d71f9d67ac0775c1b69947690b607b53fb0c8fd04a3292ae8da9dadccee70755b729e60c1d5d5761353eb146c8de4994bb7353d53729efd1aeba
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.34.0 (2026-07-08)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.33.0...v0.34.0](https://github.com/cadenya/cadenya-ruby/compare/v0.33.0...v0.34.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([604dd1e](https://github.com/cadenya/cadenya-ruby/commit/604dd1eedc43ec756bdfcbc55573f2d75307d96f))
|
|
10
|
+
|
|
3
11
|
## 0.33.0 (2026-07-08)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.32.0...v0.33.0](https://github.com/cadenya/cadenya-ruby/compare/v0.32.0...v0.33.0)
|
data/README.md
CHANGED
|
@@ -17,8 +17,11 @@ module Cadenya
|
|
|
17
17
|
optional :external_id, String, api_name: :externalId
|
|
18
18
|
|
|
19
19
|
# @!attribute labels
|
|
20
|
-
#
|
|
21
|
-
#
|
|
20
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
21
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
22
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
23
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
24
|
+
# "platform", "version": "v2"}
|
|
22
25
|
#
|
|
23
26
|
# @return [Hash{Symbol=>String}, nil]
|
|
24
27
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -66,7 +69,7 @@ module Cadenya
|
|
|
66
69
|
#
|
|
67
70
|
# @param external_id [String] External ID for the resource (e.g., a workflow ID from an external system)
|
|
68
71
|
#
|
|
69
|
-
# @param labels [Hash{Symbol=>String}]
|
|
72
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
70
73
|
end
|
|
71
74
|
end
|
|
72
75
|
end
|
|
@@ -57,8 +57,11 @@ module Cadenya
|
|
|
57
57
|
optional :external_id, String, api_name: :externalId
|
|
58
58
|
|
|
59
59
|
# @!attribute labels
|
|
60
|
-
#
|
|
61
|
-
#
|
|
60
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
61
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
62
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
63
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
64
|
+
# "platform", "version": "v2"}
|
|
62
65
|
#
|
|
63
66
|
# @return [Hash{Symbol=>String}, nil]
|
|
64
67
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -75,7 +78,7 @@ module Cadenya
|
|
|
75
78
|
#
|
|
76
79
|
# @param external_id [String] External ID for the resource (e.g., a workflow ID from an external system)
|
|
77
80
|
#
|
|
78
|
-
# @param labels [Hash{Symbol=>String}]
|
|
81
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
79
82
|
end
|
|
80
83
|
end
|
|
81
84
|
end
|
|
@@ -61,8 +61,11 @@ module Cadenya
|
|
|
61
61
|
optional :external_id, String, api_name: :externalId
|
|
62
62
|
|
|
63
63
|
# @!attribute labels
|
|
64
|
-
#
|
|
65
|
-
#
|
|
64
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
65
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
66
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
67
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
68
|
+
# "platform", "version": "v2"}
|
|
66
69
|
#
|
|
67
70
|
# @return [Hash{Symbol=>String}, nil]
|
|
68
71
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -79,7 +82,7 @@ module Cadenya
|
|
|
79
82
|
#
|
|
80
83
|
# @param external_id [String] External ID for the resource (e.g., a workflow ID from an external system)
|
|
81
84
|
#
|
|
82
|
-
# @param labels [Hash{Symbol=>String}]
|
|
85
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
83
86
|
end
|
|
84
87
|
end
|
|
85
88
|
end
|
|
@@ -10,8 +10,11 @@ module Cadenya
|
|
|
10
10
|
optional :external_id, String, api_name: :externalId
|
|
11
11
|
|
|
12
12
|
# @!attribute labels
|
|
13
|
-
#
|
|
14
|
-
#
|
|
13
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
14
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
15
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
16
|
+
# of at most 253 characters. Examples: {"priority": "high", "source": "api",
|
|
17
|
+
# "workflow": "onboarding"}
|
|
15
18
|
#
|
|
16
19
|
# @return [Hash{Symbol=>String}, nil]
|
|
17
20
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -26,7 +29,7 @@ module Cadenya
|
|
|
26
29
|
#
|
|
27
30
|
# @param external_id [String] External ID for the operation (e.g., a workflow ID from an external system)
|
|
28
31
|
#
|
|
29
|
-
# @param labels [Hash{Symbol=>String}]
|
|
32
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
30
33
|
end
|
|
31
34
|
end
|
|
32
35
|
end
|
|
@@ -17,8 +17,11 @@ module Cadenya
|
|
|
17
17
|
optional :external_id, String, api_name: :externalId
|
|
18
18
|
|
|
19
19
|
# @!attribute labels
|
|
20
|
-
#
|
|
21
|
-
#
|
|
20
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
21
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
22
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
23
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
24
|
+
# "platform", "version": "v2"}
|
|
22
25
|
#
|
|
23
26
|
# @return [Hash{Symbol=>String}, nil]
|
|
24
27
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -35,7 +38,7 @@ module Cadenya
|
|
|
35
38
|
#
|
|
36
39
|
# @param external_id [String] External ID for the resource (e.g., a workflow ID from an external system)
|
|
37
40
|
#
|
|
38
|
-
# @param labels [Hash{Symbol=>String}]
|
|
41
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
39
42
|
end
|
|
40
43
|
end
|
|
41
44
|
end
|
|
@@ -10,8 +10,11 @@ module Cadenya
|
|
|
10
10
|
optional :external_id, String, api_name: :externalId
|
|
11
11
|
|
|
12
12
|
# @!attribute labels
|
|
13
|
-
#
|
|
14
|
-
#
|
|
13
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
14
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
15
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
16
|
+
# of at most 253 characters. Examples: {"priority": "high", "source": "api",
|
|
17
|
+
# "workflow": "onboarding"}
|
|
15
18
|
#
|
|
16
19
|
# @return [Hash{Symbol=>String}, nil]
|
|
17
20
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -68,7 +71,7 @@ module Cadenya
|
|
|
68
71
|
#
|
|
69
72
|
# @param external_id [String] External ID for the operation (e.g., a workflow ID from an external system)
|
|
70
73
|
#
|
|
71
|
-
# @param labels [Hash{Symbol=>String}]
|
|
74
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
72
75
|
end
|
|
73
76
|
end
|
|
74
77
|
end
|
|
@@ -17,8 +17,11 @@ module Cadenya
|
|
|
17
17
|
optional :external_id, String, api_name: :externalId
|
|
18
18
|
|
|
19
19
|
# @!attribute labels
|
|
20
|
-
#
|
|
21
|
-
#
|
|
20
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
21
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
22
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
23
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
24
|
+
# "platform", "version": "v2"}
|
|
22
25
|
#
|
|
23
26
|
# @return [Hash{Symbol=>String}, nil]
|
|
24
27
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -81,7 +84,7 @@ module Cadenya
|
|
|
81
84
|
#
|
|
82
85
|
# @param external_id [String] External ID for the resource (e.g., a workflow ID from an external system)
|
|
83
86
|
#
|
|
84
|
-
# @param labels [Hash{Symbol=>String}]
|
|
87
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
85
88
|
#
|
|
86
89
|
# @param updated_at [Time] Timestamp when this resource was last updated
|
|
87
90
|
end
|
|
@@ -17,8 +17,11 @@ module Cadenya
|
|
|
17
17
|
optional :external_id, String, api_name: :externalId
|
|
18
18
|
|
|
19
19
|
# @!attribute labels
|
|
20
|
-
#
|
|
21
|
-
#
|
|
20
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
21
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
22
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
23
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
24
|
+
# "platform", "version": "v2"}
|
|
22
25
|
#
|
|
23
26
|
# @return [Hash{Symbol=>String}, nil]
|
|
24
27
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -35,7 +38,7 @@ module Cadenya
|
|
|
35
38
|
#
|
|
36
39
|
# @param external_id [String] External ID for the resource (e.g., a workflow ID from an external system)
|
|
37
40
|
#
|
|
38
|
-
# @param labels [Hash{Symbol=>String}]
|
|
41
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
39
42
|
end
|
|
40
43
|
end
|
|
41
44
|
end
|
|
@@ -45,8 +45,11 @@ module Cadenya
|
|
|
45
45
|
optional :external_id, String, api_name: :externalId
|
|
46
46
|
|
|
47
47
|
# @!attribute labels
|
|
48
|
-
#
|
|
49
|
-
#
|
|
48
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
49
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
50
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
51
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
52
|
+
# "platform", "version": "v2"}
|
|
50
53
|
#
|
|
51
54
|
# @return [Hash{Symbol=>String}, nil]
|
|
52
55
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -63,7 +66,7 @@ module Cadenya
|
|
|
63
66
|
#
|
|
64
67
|
# @param external_id [String] External ID for the resource (e.g., a workflow ID from an external system)
|
|
65
68
|
#
|
|
66
|
-
# @param labels [Hash{Symbol=>String}]
|
|
69
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
67
70
|
end
|
|
68
71
|
end
|
|
69
72
|
end
|
|
@@ -60,8 +60,11 @@ module Cadenya
|
|
|
60
60
|
optional :external_id, String, api_name: :externalId
|
|
61
61
|
|
|
62
62
|
# @!attribute labels
|
|
63
|
-
#
|
|
64
|
-
#
|
|
63
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
64
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
65
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
66
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
67
|
+
# "platform", "version": "v2"}
|
|
65
68
|
#
|
|
66
69
|
# @return [Hash{Symbol=>String}, nil]
|
|
67
70
|
optional :labels, Cadenya::Internal::Type::HashOf[String]
|
|
@@ -78,7 +81,7 @@ module Cadenya
|
|
|
78
81
|
#
|
|
79
82
|
# @param external_id [String] External ID for the resource (e.g., a workflow ID from an external system)
|
|
80
83
|
#
|
|
81
|
-
# @param labels [Hash{Symbol=>String}]
|
|
84
|
+
# @param labels [Hash{Symbol=>String}] Key-value pairs for categorization and filtering. Values are 0-63
|
|
82
85
|
end
|
|
83
86
|
end
|
|
84
87
|
end
|
data/lib/cadenya/version.rb
CHANGED
|
@@ -20,8 +20,11 @@ module Cadenya
|
|
|
20
20
|
sig { params(external_id: String).void }
|
|
21
21
|
attr_writer :external_id
|
|
22
22
|
|
|
23
|
-
#
|
|
24
|
-
#
|
|
23
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
24
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
25
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
26
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
27
|
+
# "platform", "version": "v2"}
|
|
25
28
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
26
29
|
attr_reader :labels
|
|
27
30
|
|
|
@@ -70,8 +73,11 @@ module Cadenya
|
|
|
70
73
|
created_at: nil,
|
|
71
74
|
# External ID for the resource (e.g., a workflow ID from an external system)
|
|
72
75
|
external_id: nil,
|
|
73
|
-
#
|
|
74
|
-
#
|
|
76
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
77
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
78
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
79
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
80
|
+
# "platform", "version": "v2"}
|
|
75
81
|
labels: nil
|
|
76
82
|
)
|
|
77
83
|
end
|
|
@@ -93,8 +93,11 @@ module Cadenya
|
|
|
93
93
|
sig { params(external_id: String).void }
|
|
94
94
|
attr_writer :external_id
|
|
95
95
|
|
|
96
|
-
#
|
|
97
|
-
#
|
|
96
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
97
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
98
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
99
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
100
|
+
# "platform", "version": "v2"}
|
|
98
101
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
99
102
|
attr_reader :labels
|
|
100
103
|
|
|
@@ -117,8 +120,11 @@ module Cadenya
|
|
|
117
120
|
name:,
|
|
118
121
|
# External ID for the resource (e.g., a workflow ID from an external system)
|
|
119
122
|
external_id: nil,
|
|
120
|
-
#
|
|
121
|
-
#
|
|
123
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
124
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
125
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
126
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
127
|
+
# "platform", "version": "v2"}
|
|
122
128
|
labels: nil
|
|
123
129
|
)
|
|
124
130
|
end
|
|
@@ -97,8 +97,11 @@ module Cadenya
|
|
|
97
97
|
sig { params(external_id: String).void }
|
|
98
98
|
attr_writer :external_id
|
|
99
99
|
|
|
100
|
-
#
|
|
101
|
-
#
|
|
100
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
101
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
102
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
103
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
104
|
+
# "platform", "version": "v2"}
|
|
102
105
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
103
106
|
attr_reader :labels
|
|
104
107
|
|
|
@@ -121,8 +124,11 @@ module Cadenya
|
|
|
121
124
|
name:,
|
|
122
125
|
# External ID for the resource (e.g., a workflow ID from an external system)
|
|
123
126
|
external_id: nil,
|
|
124
|
-
#
|
|
125
|
-
#
|
|
127
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
128
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
129
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
130
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
131
|
+
# "platform", "version": "v2"}
|
|
126
132
|
labels: nil
|
|
127
133
|
)
|
|
128
134
|
end
|
|
@@ -15,8 +15,11 @@ module Cadenya
|
|
|
15
15
|
sig { params(external_id: String).void }
|
|
16
16
|
attr_writer :external_id
|
|
17
17
|
|
|
18
|
-
#
|
|
19
|
-
#
|
|
18
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
19
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
20
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
21
|
+
# of at most 253 characters. Examples: {"priority": "high", "source": "api",
|
|
22
|
+
# "workflow": "onboarding"}
|
|
20
23
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
21
24
|
attr_reader :labels
|
|
22
25
|
|
|
@@ -34,8 +37,11 @@ module Cadenya
|
|
|
34
37
|
def self.new(
|
|
35
38
|
# External ID for the operation (e.g., a workflow ID from an external system)
|
|
36
39
|
external_id: nil,
|
|
37
|
-
#
|
|
38
|
-
#
|
|
40
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
41
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
42
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
43
|
+
# of at most 253 characters. Examples: {"priority": "high", "source": "api",
|
|
44
|
+
# "workflow": "onboarding"}
|
|
39
45
|
labels: nil
|
|
40
46
|
)
|
|
41
47
|
end
|
|
@@ -20,8 +20,11 @@ module Cadenya
|
|
|
20
20
|
sig { params(external_id: String).void }
|
|
21
21
|
attr_writer :external_id
|
|
22
22
|
|
|
23
|
-
#
|
|
24
|
-
#
|
|
23
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
24
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
25
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
26
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
27
|
+
# "platform", "version": "v2"}
|
|
25
28
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
26
29
|
attr_reader :labels
|
|
27
30
|
|
|
@@ -44,8 +47,11 @@ module Cadenya
|
|
|
44
47
|
name:,
|
|
45
48
|
# External ID for the resource (e.g., a workflow ID from an external system)
|
|
46
49
|
external_id: nil,
|
|
47
|
-
#
|
|
48
|
-
#
|
|
50
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
51
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
52
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
53
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
54
|
+
# "platform", "version": "v2"}
|
|
49
55
|
labels: nil
|
|
50
56
|
)
|
|
51
57
|
end
|
|
@@ -15,8 +15,11 @@ module Cadenya
|
|
|
15
15
|
sig { params(external_id: String).void }
|
|
16
16
|
attr_writer :external_id
|
|
17
17
|
|
|
18
|
-
#
|
|
19
|
-
#
|
|
18
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
19
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
20
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
21
|
+
# of at most 253 characters. Examples: {"priority": "high", "source": "api",
|
|
22
|
+
# "workflow": "onboarding"}
|
|
20
23
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
21
24
|
attr_reader :labels
|
|
22
25
|
|
|
@@ -71,8 +74,11 @@ module Cadenya
|
|
|
71
74
|
workspace_id:,
|
|
72
75
|
# External ID for the operation (e.g., a workflow ID from an external system)
|
|
73
76
|
external_id: nil,
|
|
74
|
-
#
|
|
75
|
-
#
|
|
77
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
78
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
79
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
80
|
+
# of at most 253 characters. Examples: {"priority": "high", "source": "api",
|
|
81
|
+
# "workflow": "onboarding"}
|
|
76
82
|
labels: nil
|
|
77
83
|
)
|
|
78
84
|
end
|
|
@@ -20,8 +20,11 @@ module Cadenya
|
|
|
20
20
|
sig { params(external_id: String).void }
|
|
21
21
|
attr_writer :external_id
|
|
22
22
|
|
|
23
|
-
#
|
|
24
|
-
#
|
|
23
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
24
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
25
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
26
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
27
|
+
# "platform", "version": "v2"}
|
|
25
28
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
26
29
|
attr_reader :labels
|
|
27
30
|
|
|
@@ -85,8 +88,11 @@ module Cadenya
|
|
|
85
88
|
workspace_id:,
|
|
86
89
|
# External ID for the resource (e.g., a workflow ID from an external system)
|
|
87
90
|
external_id: nil,
|
|
88
|
-
#
|
|
89
|
-
#
|
|
91
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
92
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
93
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
94
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
95
|
+
# "platform", "version": "v2"}
|
|
90
96
|
labels: nil,
|
|
91
97
|
# Timestamp when this resource was last updated
|
|
92
98
|
updated_at: nil
|
|
@@ -20,8 +20,11 @@ module Cadenya
|
|
|
20
20
|
sig { params(external_id: String).void }
|
|
21
21
|
attr_writer :external_id
|
|
22
22
|
|
|
23
|
-
#
|
|
24
|
-
#
|
|
23
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
24
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
25
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
26
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
27
|
+
# "platform", "version": "v2"}
|
|
25
28
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
26
29
|
attr_reader :labels
|
|
27
30
|
|
|
@@ -44,8 +47,11 @@ module Cadenya
|
|
|
44
47
|
name:,
|
|
45
48
|
# External ID for the resource (e.g., a workflow ID from an external system)
|
|
46
49
|
external_id: nil,
|
|
47
|
-
#
|
|
48
|
-
#
|
|
50
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
51
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
52
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
53
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
54
|
+
# "platform", "version": "v2"}
|
|
49
55
|
labels: nil
|
|
50
56
|
)
|
|
51
57
|
end
|
|
@@ -80,8 +80,11 @@ module Cadenya
|
|
|
80
80
|
sig { params(external_id: String).void }
|
|
81
81
|
attr_writer :external_id
|
|
82
82
|
|
|
83
|
-
#
|
|
84
|
-
#
|
|
83
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
84
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
85
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
86
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
87
|
+
# "platform", "version": "v2"}
|
|
85
88
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
86
89
|
attr_reader :labels
|
|
87
90
|
|
|
@@ -104,8 +107,11 @@ module Cadenya
|
|
|
104
107
|
name:,
|
|
105
108
|
# External ID for the resource (e.g., a workflow ID from an external system)
|
|
106
109
|
external_id: nil,
|
|
107
|
-
#
|
|
108
|
-
#
|
|
110
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
111
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
112
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
113
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
114
|
+
# "platform", "version": "v2"}
|
|
109
115
|
labels: nil
|
|
110
116
|
)
|
|
111
117
|
end
|
|
@@ -97,8 +97,11 @@ module Cadenya
|
|
|
97
97
|
sig { params(external_id: String).void }
|
|
98
98
|
attr_writer :external_id
|
|
99
99
|
|
|
100
|
-
#
|
|
101
|
-
#
|
|
100
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
101
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
102
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
103
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
104
|
+
# "platform", "version": "v2"}
|
|
102
105
|
sig { returns(T.nilable(T::Hash[Symbol, String])) }
|
|
103
106
|
attr_reader :labels
|
|
104
107
|
|
|
@@ -121,8 +124,11 @@ module Cadenya
|
|
|
121
124
|
name:,
|
|
122
125
|
# External ID for the resource (e.g., a workflow ID from an external system)
|
|
123
126
|
external_id: nil,
|
|
124
|
-
#
|
|
125
|
-
#
|
|
127
|
+
# Key-value pairs for categorization and filtering. Values are 0-63 alphanumeric
|
|
128
|
+
# characters with "-", "\_", or "." allowed between; keys follow the same shape
|
|
129
|
+
# and additionally accept an optional DNS-subdomain prefix (e.g. "cadenya.com/")
|
|
130
|
+
# of at most 253 characters. Examples: {"environment": "production", "team":
|
|
131
|
+
# "platform", "version": "v2"}
|
|
126
132
|
labels: nil
|
|
127
133
|
)
|
|
128
134
|
end
|