strongdm 3.6.1 → 3.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.git/ORIG_HEAD +1 -1
- data/.git/index +0 -0
- data/.git/logs/HEAD +3 -3
- data/.git/logs/refs/heads/master +2 -2
- data/.git/logs/refs/remotes/origin/HEAD +1 -1
- data/.git/objects/pack/{pack-c0eff6575c38c9865988c2b59ce4060fff518355.idx → pack-2d53a487ade528ef84cbb5c91cde76bf875d9e95.idx} +0 -0
- data/.git/objects/pack/{pack-c0eff6575c38c9865988c2b59ce4060fff518355.pack → pack-2d53a487ade528ef84cbb5c91cde76bf875d9e95.pack} +0 -0
- data/.git/packed-refs +4 -2
- data/.git/refs/heads/master +1 -1
- data/lib/constants.rb +311 -0
- data/lib/errors/errors.rb +1 -1
- data/lib/grpc/account_attachments_history_pb.rb +48 -0
- data/lib/grpc/account_attachments_history_services_pb.rb +37 -0
- data/lib/grpc/account_grants_history_pb.rb +48 -0
- data/lib/grpc/account_grants_history_services_pb.rb +37 -0
- data/lib/grpc/account_permissions_pb.rb +48 -0
- data/lib/grpc/account_permissions_services_pb.rb +38 -0
- data/lib/grpc/account_resources_pb.rb +49 -0
- data/lib/grpc/account_resources_services_pb.rb +38 -0
- data/lib/grpc/accounts_history_pb.rb +48 -0
- data/lib/grpc/accounts_history_services_pb.rb +37 -0
- data/lib/grpc/activities_pb.rb +77 -0
- data/lib/grpc/activities_services_pb.rb +41 -0
- data/lib/grpc/drivers_pb.rb +66 -0
- data/lib/grpc/nodes_history_pb.rb +48 -0
- data/lib/grpc/nodes_history_services_pb.rb +37 -0
- data/lib/grpc/organization_history_pb.rb +74 -0
- data/lib/grpc/organization_history_services_pb.rb +37 -0
- data/lib/grpc/plumbing.rb +1106 -1
- data/lib/grpc/queries_pb.rb +67 -0
- data/lib/grpc/queries_services_pb.rb +39 -0
- data/lib/grpc/remote_identities_history_pb.rb +48 -0
- data/lib/grpc/remote_identities_history_services_pb.rb +37 -0
- data/lib/grpc/remote_identity_groups_history_pb.rb +48 -0
- data/lib/grpc/remote_identity_groups_history_services_pb.rb +37 -0
- data/lib/grpc/replays_pb.rb +50 -0
- data/lib/grpc/replays_services_pb.rb +38 -0
- data/lib/grpc/resources_history_pb.rb +48 -0
- data/lib/grpc/resources_history_services_pb.rb +37 -0
- data/lib/grpc/role_resources_history_pb.rb +48 -0
- data/lib/grpc/role_resources_history_services_pb.rb +37 -0
- data/lib/grpc/role_resources_pb.rb +46 -0
- data/lib/grpc/role_resources_services_pb.rb +38 -0
- data/lib/grpc/roles_history_pb.rb +48 -0
- data/lib/grpc/roles_history_services_pb.rb +37 -0
- data/lib/grpc/secret_stores_history_pb.rb +48 -0
- data/lib/grpc/secret_stores_history_services_pb.rb +37 -0
- data/lib/models/porcelain.rb +1177 -1
- data/lib/strongdm.rb +220 -2
- data/lib/svc.rb +1556 -121
- data/lib/version +1 -1
- data/lib/version.rb +1 -1
- metadata +38 -4
data/lib/models/porcelain.rb
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
# limitations under the License.
|
14
14
|
#
|
15
15
|
|
16
|
-
# @internal
|
16
|
+
# @internal Code generated by protogen. DO NOT EDIT.
|
17
17
|
|
18
18
|
module SDM
|
19
19
|
class AKS
|
@@ -47,6 +47,8 @@ module SDM
|
|
47
47
|
attr_accessor :remote_identity_healthcheck_username
|
48
48
|
# ID of the secret store containing credentials for this resource, if any.
|
49
49
|
attr_accessor :secret_store_id
|
50
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
51
|
+
attr_accessor :subdomain
|
50
52
|
# Tags is a map of key, value pairs.
|
51
53
|
attr_accessor :tags
|
52
54
|
|
@@ -66,6 +68,7 @@ module SDM
|
|
66
68
|
remote_identity_group_id: nil,
|
67
69
|
remote_identity_healthcheck_username: nil,
|
68
70
|
secret_store_id: nil,
|
71
|
+
subdomain: nil,
|
69
72
|
tags: nil
|
70
73
|
)
|
71
74
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -83,6 +86,7 @@ module SDM
|
|
83
86
|
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
84
87
|
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
85
88
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
89
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
86
90
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
87
91
|
end
|
88
92
|
|
@@ -118,6 +122,8 @@ module SDM
|
|
118
122
|
attr_accessor :port_override
|
119
123
|
# ID of the secret store containing credentials for this resource, if any.
|
120
124
|
attr_accessor :secret_store_id
|
125
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
126
|
+
attr_accessor :subdomain
|
121
127
|
# Tags is a map of key, value pairs.
|
122
128
|
attr_accessor :tags
|
123
129
|
|
@@ -135,6 +141,7 @@ module SDM
|
|
135
141
|
port: nil,
|
136
142
|
port_override: nil,
|
137
143
|
secret_store_id: nil,
|
144
|
+
subdomain: nil,
|
138
145
|
tags: nil,
|
139
146
|
username: nil
|
140
147
|
)
|
@@ -149,6 +156,7 @@ module SDM
|
|
149
156
|
@port = port == nil ? 0 : port
|
150
157
|
@port_override = port_override == nil ? 0 : port_override
|
151
158
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
159
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
152
160
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
153
161
|
@username = username == nil ? "" : username
|
154
162
|
end
|
@@ -187,6 +195,8 @@ module SDM
|
|
187
195
|
attr_accessor :remote_identity_healthcheck_username
|
188
196
|
# ID of the secret store containing credentials for this resource, if any.
|
189
197
|
attr_accessor :secret_store_id
|
198
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
199
|
+
attr_accessor :subdomain
|
190
200
|
# Tags is a map of key, value pairs.
|
191
201
|
attr_accessor :tags
|
192
202
|
|
@@ -205,6 +215,7 @@ module SDM
|
|
205
215
|
remote_identity_group_id: nil,
|
206
216
|
remote_identity_healthcheck_username: nil,
|
207
217
|
secret_store_id: nil,
|
218
|
+
subdomain: nil,
|
208
219
|
tags: nil,
|
209
220
|
token: nil
|
210
221
|
)
|
@@ -220,6 +231,7 @@ module SDM
|
|
220
231
|
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
221
232
|
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
222
233
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
234
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
223
235
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
224
236
|
@token = token == nil ? "" : token
|
225
237
|
end
|
@@ -254,6 +266,8 @@ module SDM
|
|
254
266
|
attr_accessor :port_override
|
255
267
|
# ID of the secret store containing credentials for this resource, if any.
|
256
268
|
attr_accessor :secret_store_id
|
269
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
270
|
+
attr_accessor :subdomain
|
257
271
|
# Tags is a map of key, value pairs.
|
258
272
|
attr_accessor :tags
|
259
273
|
|
@@ -270,6 +284,7 @@ module SDM
|
|
270
284
|
port: nil,
|
271
285
|
port_override: nil,
|
272
286
|
secret_store_id: nil,
|
287
|
+
subdomain: nil,
|
273
288
|
tags: nil,
|
274
289
|
token: nil
|
275
290
|
)
|
@@ -283,6 +298,7 @@ module SDM
|
|
283
298
|
@port = port == nil ? 0 : port
|
284
299
|
@port_override = port_override == nil ? 0 : port_override
|
285
300
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
301
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
286
302
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
287
303
|
@token = token == nil ? "" : token
|
288
304
|
end
|
@@ -323,6 +339,8 @@ module SDM
|
|
323
339
|
attr_accessor :port_override
|
324
340
|
# ID of the secret store containing credentials for this resource, if any.
|
325
341
|
attr_accessor :secret_store_id
|
342
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
343
|
+
attr_accessor :subdomain
|
326
344
|
# Tags is a map of key, value pairs.
|
327
345
|
attr_accessor :tags
|
328
346
|
|
@@ -340,6 +358,7 @@ module SDM
|
|
340
358
|
port: nil,
|
341
359
|
port_override: nil,
|
342
360
|
secret_store_id: nil,
|
361
|
+
subdomain: nil,
|
343
362
|
tags: nil
|
344
363
|
)
|
345
364
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -355,6 +374,7 @@ module SDM
|
|
355
374
|
@port = port == nil ? 0 : port
|
356
375
|
@port_override = port_override == nil ? 0 : port_override
|
357
376
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
377
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
358
378
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
359
379
|
end
|
360
380
|
|
@@ -731,6 +751,41 @@ module SDM
|
|
731
751
|
end
|
732
752
|
end
|
733
753
|
|
754
|
+
# AccountAttachmentHistory records the state of an AccountAttachment at a given point in time,
|
755
|
+
# where every change (create or delete) to an AccountAttachment produces an
|
756
|
+
# AccountAttachmentHistory record.
|
757
|
+
class AccountAttachmentHistory
|
758
|
+
# The complete AccountAttachment state at this time.
|
759
|
+
attr_accessor :account_attachment
|
760
|
+
# The unique identifier of the Activity that produced this change to the AccountAttachment.
|
761
|
+
# May be empty for some system-initiated updates.
|
762
|
+
attr_accessor :activity_id
|
763
|
+
# If this AccountAttachment was deleted, the time it was deleted.
|
764
|
+
attr_accessor :deleted_at
|
765
|
+
# The time at which the AccountAttachment state was recorded.
|
766
|
+
attr_accessor :timestamp
|
767
|
+
|
768
|
+
def initialize(
|
769
|
+
account_attachment: nil,
|
770
|
+
activity_id: nil,
|
771
|
+
deleted_at: nil,
|
772
|
+
timestamp: nil
|
773
|
+
)
|
774
|
+
@account_attachment = account_attachment == nil ? nil : account_attachment
|
775
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
776
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
777
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
778
|
+
end
|
779
|
+
|
780
|
+
def to_json(options = {})
|
781
|
+
hash = {}
|
782
|
+
self.instance_variables.each do |var|
|
783
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
784
|
+
end
|
785
|
+
hash.to_json
|
786
|
+
end
|
787
|
+
end
|
788
|
+
|
734
789
|
# AccountCreateResponse reports how the Accounts were created in the system.
|
735
790
|
class AccountCreateResponse
|
736
791
|
# The created Account.
|
@@ -932,6 +987,162 @@ module SDM
|
|
932
987
|
end
|
933
988
|
end
|
934
989
|
|
990
|
+
# AccountGrantHistory records the state of an AccountGrant at a given point in time,
|
991
|
+
# where every change (create or delete) to an AccountGrant produces an
|
992
|
+
# AccountGrantHistory record.
|
993
|
+
class AccountGrantHistory
|
994
|
+
# The complete AccountGrant state at this time.
|
995
|
+
attr_accessor :account_grant
|
996
|
+
# The unique identifier of the Activity that produced this change to the AccountGrant.
|
997
|
+
# May be empty for some system-initiated updates.
|
998
|
+
attr_accessor :activity_id
|
999
|
+
# If this AccountGrant was deleted, the time it was deleted.
|
1000
|
+
attr_accessor :deleted_at
|
1001
|
+
# The time at which the AccountGrant state was recorded.
|
1002
|
+
attr_accessor :timestamp
|
1003
|
+
|
1004
|
+
def initialize(
|
1005
|
+
account_grant: nil,
|
1006
|
+
activity_id: nil,
|
1007
|
+
deleted_at: nil,
|
1008
|
+
timestamp: nil
|
1009
|
+
)
|
1010
|
+
@account_grant = account_grant == nil ? nil : account_grant
|
1011
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
1012
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
1013
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
def to_json(options = {})
|
1017
|
+
hash = {}
|
1018
|
+
self.instance_variables.each do |var|
|
1019
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
1020
|
+
end
|
1021
|
+
hash.to_json
|
1022
|
+
end
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
# AccountHistory records the state of an Account at a given point in time,
|
1026
|
+
# where every change (create, update and delete) to an Account produces an
|
1027
|
+
# AccountHistory record.
|
1028
|
+
class AccountHistory
|
1029
|
+
# The complete Account state at this time.
|
1030
|
+
attr_accessor :account
|
1031
|
+
# The unique identifier of the Activity that produced this change to the Account.
|
1032
|
+
# May be empty for some system-initiated updates.
|
1033
|
+
attr_accessor :activity_id
|
1034
|
+
# If this Account was deleted, the time it was deleted.
|
1035
|
+
attr_accessor :deleted_at
|
1036
|
+
# The time at which the Account state was recorded.
|
1037
|
+
attr_accessor :timestamp
|
1038
|
+
|
1039
|
+
def initialize(
|
1040
|
+
account: nil,
|
1041
|
+
activity_id: nil,
|
1042
|
+
deleted_at: nil,
|
1043
|
+
timestamp: nil
|
1044
|
+
)
|
1045
|
+
@account = account == nil ? nil : account
|
1046
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
1047
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
1048
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
def to_json(options = {})
|
1052
|
+
hash = {}
|
1053
|
+
self.instance_variables.each do |var|
|
1054
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
1055
|
+
end
|
1056
|
+
hash.to_json
|
1057
|
+
end
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
# AccountPermission represents an individual API action available to an account.
|
1061
|
+
class AccountPermission
|
1062
|
+
# The unique identifier of the Account this permission belongs to.
|
1063
|
+
attr_accessor :account_id
|
1064
|
+
# The most recent time at which the permission was granted. If a permission was
|
1065
|
+
# granted, revoked, and granted again, this will reflect the later time.
|
1066
|
+
attr_accessor :granted_at
|
1067
|
+
# The value of this permission, split into vertical and action e.g.
|
1068
|
+
# 'secretstore:List', 'role:update'
|
1069
|
+
attr_accessor :permission
|
1070
|
+
# The scope of this permission. A global scope means this action can be taken
|
1071
|
+
# on any entity; otherwise the action can only be taken on or in the scope of
|
1072
|
+
# the scoped id.
|
1073
|
+
attr_accessor :scope
|
1074
|
+
# The ID to which or in whose context this operation is permitted. e.g. The ID of a
|
1075
|
+
# role that a team leader has the abillity to remove and add accounts to, or the
|
1076
|
+
# ID of a resource that a user has the permission to connect to. If Scope is global,
|
1077
|
+
# scoped id is not populated.
|
1078
|
+
attr_accessor :scoped_id
|
1079
|
+
|
1080
|
+
def initialize(
|
1081
|
+
account_id: nil,
|
1082
|
+
granted_at: nil,
|
1083
|
+
permission: nil,
|
1084
|
+
scope: nil,
|
1085
|
+
scoped_id: nil
|
1086
|
+
)
|
1087
|
+
@account_id = account_id == nil ? "" : account_id
|
1088
|
+
@granted_at = granted_at == nil ? nil : granted_at
|
1089
|
+
@permission = permission == nil ? "" : permission
|
1090
|
+
@scope = scope == nil ? "" : scope
|
1091
|
+
@scoped_id = scoped_id == nil ? "" : scoped_id
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
def to_json(options = {})
|
1095
|
+
hash = {}
|
1096
|
+
self.instance_variables.each do |var|
|
1097
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
1098
|
+
end
|
1099
|
+
hash.to_json
|
1100
|
+
end
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
# AccountResource represents an individual access grant of a Account to a Resource.
|
1104
|
+
class AccountResource
|
1105
|
+
# The unique identifier of the AccountGrant through which the Account was granted access to the Resource.
|
1106
|
+
# If empty, access was not granted through an AccountGrant.
|
1107
|
+
attr_accessor :account_grant_id
|
1108
|
+
# The unique identifier of the Account to which access is granted.
|
1109
|
+
attr_accessor :account_id
|
1110
|
+
# The time at which access will expire. If empty, this access has no expiration.
|
1111
|
+
attr_accessor :expires_at
|
1112
|
+
# The most recent time at which access was granted. If access was granted,
|
1113
|
+
# revoked, and granted again, this will reflect the later time.
|
1114
|
+
attr_accessor :granted_at
|
1115
|
+
# The unique identifier of the Resource to which access is granted.
|
1116
|
+
attr_accessor :resource_id
|
1117
|
+
# The unique identifier of the Role through which the Account was granted access to the Resource.
|
1118
|
+
# If empty, access was not granted through an AccountAttachment to a Role.
|
1119
|
+
attr_accessor :role_id
|
1120
|
+
|
1121
|
+
def initialize(
|
1122
|
+
account_grant_id: nil,
|
1123
|
+
account_id: nil,
|
1124
|
+
expires_at: nil,
|
1125
|
+
granted_at: nil,
|
1126
|
+
resource_id: nil,
|
1127
|
+
role_id: nil
|
1128
|
+
)
|
1129
|
+
@account_grant_id = account_grant_id == nil ? "" : account_grant_id
|
1130
|
+
@account_id = account_id == nil ? "" : account_id
|
1131
|
+
@expires_at = expires_at == nil ? nil : expires_at
|
1132
|
+
@granted_at = granted_at == nil ? nil : granted_at
|
1133
|
+
@resource_id = resource_id == nil ? "" : resource_id
|
1134
|
+
@role_id = role_id == nil ? "" : role_id
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
def to_json(options = {})
|
1138
|
+
hash = {}
|
1139
|
+
self.instance_variables.each do |var|
|
1140
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
1141
|
+
end
|
1142
|
+
hash.to_json
|
1143
|
+
end
|
1144
|
+
end
|
1145
|
+
|
935
1146
|
# AccountUpdateResponse returns the fields of a Account after it has been updated by
|
936
1147
|
# a AccountUpdateRequest.
|
937
1148
|
class AccountUpdateResponse
|
@@ -961,6 +1172,153 @@ module SDM
|
|
961
1172
|
end
|
962
1173
|
end
|
963
1174
|
|
1175
|
+
# An Activity is a record of an action taken against a strongDM deployment, e.g.
|
1176
|
+
# a user creation, resource deletion, sso configuration change, etc.
|
1177
|
+
class Activity
|
1178
|
+
# The account who executed this activity. If the actor later has a name or email change,
|
1179
|
+
# that change is not reflected here. Actor is a snapshot of the executing account at
|
1180
|
+
# the time an activity took place.
|
1181
|
+
attr_accessor :actor
|
1182
|
+
# The time this activity took effect.
|
1183
|
+
attr_accessor :completed_at
|
1184
|
+
# A humanized description of the activity.
|
1185
|
+
attr_accessor :description
|
1186
|
+
# The entities involved in this activity. These entities can be any first class
|
1187
|
+
# entity in the strongDM system, eg. a user, a role, a node, an account grant. Not
|
1188
|
+
# every activity affects explicit entities.
|
1189
|
+
attr_accessor :entities
|
1190
|
+
# Unique identifier of the Activity.
|
1191
|
+
attr_accessor :id
|
1192
|
+
# The IP from which this action was taken.
|
1193
|
+
attr_accessor :ip_address
|
1194
|
+
# The kind of activity which has taken place.
|
1195
|
+
attr_accessor :verb
|
1196
|
+
|
1197
|
+
def initialize(
|
1198
|
+
actor: nil,
|
1199
|
+
completed_at: nil,
|
1200
|
+
description: nil,
|
1201
|
+
entities: nil,
|
1202
|
+
id: nil,
|
1203
|
+
ip_address: nil,
|
1204
|
+
verb: nil
|
1205
|
+
)
|
1206
|
+
@actor = actor == nil ? nil : actor
|
1207
|
+
@completed_at = completed_at == nil ? nil : completed_at
|
1208
|
+
@description = description == nil ? "" : description
|
1209
|
+
@entities = entities == nil ? [] : entities
|
1210
|
+
@id = id == nil ? "" : id
|
1211
|
+
@ip_address = ip_address == nil ? "" : ip_address
|
1212
|
+
@verb = verb == nil ? "" : verb
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
def to_json(options = {})
|
1216
|
+
hash = {}
|
1217
|
+
self.instance_variables.each do |var|
|
1218
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
1219
|
+
end
|
1220
|
+
hash.to_json
|
1221
|
+
end
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
class ActivityActor
|
1225
|
+
# The external ID of the actor at the time this activity occurred.
|
1226
|
+
attr_accessor :activity_external_id
|
1227
|
+
# The email of the actor at the time this activity occurred.
|
1228
|
+
attr_accessor :email
|
1229
|
+
# The first name of the actor at the time this activity occurred.
|
1230
|
+
attr_accessor :first_name
|
1231
|
+
# Unique identifier of the actor. Immutable.
|
1232
|
+
attr_accessor :id
|
1233
|
+
# The last name of the actor at the time this activity occurred.
|
1234
|
+
attr_accessor :last_name
|
1235
|
+
|
1236
|
+
def initialize(
|
1237
|
+
activity_external_id: nil,
|
1238
|
+
email: nil,
|
1239
|
+
first_name: nil,
|
1240
|
+
id: nil,
|
1241
|
+
last_name: nil
|
1242
|
+
)
|
1243
|
+
@activity_external_id = activity_external_id == nil ? "" : activity_external_id
|
1244
|
+
@email = email == nil ? "" : email
|
1245
|
+
@first_name = first_name == nil ? "" : first_name
|
1246
|
+
@id = id == nil ? "" : id
|
1247
|
+
@last_name = last_name == nil ? "" : last_name
|
1248
|
+
end
|
1249
|
+
|
1250
|
+
def to_json(options = {})
|
1251
|
+
hash = {}
|
1252
|
+
self.instance_variables.each do |var|
|
1253
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
1254
|
+
end
|
1255
|
+
hash.to_json
|
1256
|
+
end
|
1257
|
+
end
|
1258
|
+
|
1259
|
+
class ActivityEntity
|
1260
|
+
# The email of the affected entity, if it has one (for example, if it is an account).
|
1261
|
+
attr_accessor :email
|
1262
|
+
# The external ID of the affected entity, if it has one (for example, if it is an account).
|
1263
|
+
attr_accessor :external_id
|
1264
|
+
# The unique identifier of the entity this activity affected.
|
1265
|
+
attr_accessor :id
|
1266
|
+
# A display name representing the affected entity.
|
1267
|
+
attr_accessor :name
|
1268
|
+
# The type of entity affected, one of the Activity Entities constants.
|
1269
|
+
attr_accessor :type
|
1270
|
+
|
1271
|
+
def initialize(
|
1272
|
+
email: nil,
|
1273
|
+
external_id: nil,
|
1274
|
+
id: nil,
|
1275
|
+
name: nil,
|
1276
|
+
type: nil
|
1277
|
+
)
|
1278
|
+
@email = email == nil ? "" : email
|
1279
|
+
@external_id = external_id == nil ? "" : external_id
|
1280
|
+
@id = id == nil ? "" : id
|
1281
|
+
@name = name == nil ? "" : name
|
1282
|
+
@type = type == nil ? "" : type
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
def to_json(options = {})
|
1286
|
+
hash = {}
|
1287
|
+
self.instance_variables.each do |var|
|
1288
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
1289
|
+
end
|
1290
|
+
hash.to_json
|
1291
|
+
end
|
1292
|
+
end
|
1293
|
+
|
1294
|
+
# ActivityGetResponse returns a requested Activity.
|
1295
|
+
class ActivityGetResponse
|
1296
|
+
# The requested Activity.
|
1297
|
+
attr_accessor :activity
|
1298
|
+
# Reserved for future use.
|
1299
|
+
attr_accessor :meta
|
1300
|
+
# Rate limit information.
|
1301
|
+
attr_accessor :rate_limit
|
1302
|
+
|
1303
|
+
def initialize(
|
1304
|
+
activity: nil,
|
1305
|
+
meta: nil,
|
1306
|
+
rate_limit: nil
|
1307
|
+
)
|
1308
|
+
@activity = activity == nil ? nil : activity
|
1309
|
+
@meta = meta == nil ? nil : meta
|
1310
|
+
@rate_limit = rate_limit == nil ? nil : rate_limit
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
def to_json(options = {})
|
1314
|
+
hash = {}
|
1315
|
+
self.instance_variables.each do |var|
|
1316
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
1317
|
+
end
|
1318
|
+
hash.to_json
|
1319
|
+
end
|
1320
|
+
end
|
1321
|
+
|
964
1322
|
class AmazonEKS
|
965
1323
|
attr_accessor :access_key
|
966
1324
|
# Bind interface
|
@@ -995,6 +1353,8 @@ module SDM
|
|
995
1353
|
attr_accessor :secret_access_key
|
996
1354
|
# ID of the secret store containing credentials for this resource, if any.
|
997
1355
|
attr_accessor :secret_store_id
|
1356
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
1357
|
+
attr_accessor :subdomain
|
998
1358
|
# Tags is a map of key, value pairs.
|
999
1359
|
attr_accessor :tags
|
1000
1360
|
|
@@ -1016,6 +1376,7 @@ module SDM
|
|
1016
1376
|
role_external_id: nil,
|
1017
1377
|
secret_access_key: nil,
|
1018
1378
|
secret_store_id: nil,
|
1379
|
+
subdomain: nil,
|
1019
1380
|
tags: nil
|
1020
1381
|
)
|
1021
1382
|
@access_key = access_key == nil ? "" : access_key
|
@@ -1035,6 +1396,7 @@ module SDM
|
|
1035
1396
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
1036
1397
|
@secret_access_key = secret_access_key == nil ? "" : secret_access_key
|
1037
1398
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
1399
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1038
1400
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1039
1401
|
end
|
1040
1402
|
|
@@ -1078,6 +1440,8 @@ module SDM
|
|
1078
1440
|
attr_accessor :role_external_id
|
1079
1441
|
# ID of the secret store containing credentials for this resource, if any.
|
1080
1442
|
attr_accessor :secret_store_id
|
1443
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
1444
|
+
attr_accessor :subdomain
|
1081
1445
|
# Tags is a map of key, value pairs.
|
1082
1446
|
attr_accessor :tags
|
1083
1447
|
|
@@ -1097,6 +1461,7 @@ module SDM
|
|
1097
1461
|
role_arn: nil,
|
1098
1462
|
role_external_id: nil,
|
1099
1463
|
secret_store_id: nil,
|
1464
|
+
subdomain: nil,
|
1100
1465
|
tags: nil
|
1101
1466
|
)
|
1102
1467
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -1114,6 +1479,7 @@ module SDM
|
|
1114
1479
|
@role_arn = role_arn == nil ? "" : role_arn
|
1115
1480
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
1116
1481
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
1482
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1117
1483
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1118
1484
|
end
|
1119
1485
|
|
@@ -1156,6 +1522,8 @@ module SDM
|
|
1156
1522
|
attr_accessor :secret_access_key
|
1157
1523
|
# ID of the secret store containing credentials for this resource, if any.
|
1158
1524
|
attr_accessor :secret_store_id
|
1525
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
1526
|
+
attr_accessor :subdomain
|
1159
1527
|
# Tags is a map of key, value pairs.
|
1160
1528
|
attr_accessor :tags
|
1161
1529
|
|
@@ -1175,6 +1543,7 @@ module SDM
|
|
1175
1543
|
role_external_id: nil,
|
1176
1544
|
secret_access_key: nil,
|
1177
1545
|
secret_store_id: nil,
|
1546
|
+
subdomain: nil,
|
1178
1547
|
tags: nil
|
1179
1548
|
)
|
1180
1549
|
@access_key = access_key == nil ? "" : access_key
|
@@ -1192,6 +1561,7 @@ module SDM
|
|
1192
1561
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
1193
1562
|
@secret_access_key = secret_access_key == nil ? "" : secret_access_key
|
1194
1563
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
1564
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1195
1565
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1196
1566
|
end
|
1197
1567
|
|
@@ -1230,6 +1600,8 @@ module SDM
|
|
1230
1600
|
attr_accessor :secret_access_key
|
1231
1601
|
# ID of the secret store containing credentials for this resource, if any.
|
1232
1602
|
attr_accessor :secret_store_id
|
1603
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
1604
|
+
attr_accessor :subdomain
|
1233
1605
|
# Tags is a map of key, value pairs.
|
1234
1606
|
attr_accessor :tags
|
1235
1607
|
|
@@ -1247,6 +1619,7 @@ module SDM
|
|
1247
1619
|
role_external_id: nil,
|
1248
1620
|
secret_access_key: nil,
|
1249
1621
|
secret_store_id: nil,
|
1622
|
+
subdomain: nil,
|
1250
1623
|
tags: nil
|
1251
1624
|
)
|
1252
1625
|
@access_key = access_key == nil ? "" : access_key
|
@@ -1262,6 +1635,7 @@ module SDM
|
|
1262
1635
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
1263
1636
|
@secret_access_key = secret_access_key == nil ? "" : secret_access_key
|
1264
1637
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
1638
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1265
1639
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1266
1640
|
end
|
1267
1641
|
|
@@ -1295,6 +1669,8 @@ module SDM
|
|
1295
1669
|
attr_accessor :port_override
|
1296
1670
|
# ID of the secret store containing credentials for this resource, if any.
|
1297
1671
|
attr_accessor :secret_store_id
|
1672
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
1673
|
+
attr_accessor :subdomain
|
1298
1674
|
# Tags is a map of key, value pairs.
|
1299
1675
|
attr_accessor :tags
|
1300
1676
|
|
@@ -1313,6 +1689,7 @@ module SDM
|
|
1313
1689
|
port: nil,
|
1314
1690
|
port_override: nil,
|
1315
1691
|
secret_store_id: nil,
|
1692
|
+
subdomain: nil,
|
1316
1693
|
tags: nil,
|
1317
1694
|
tls_required: nil,
|
1318
1695
|
username: nil
|
@@ -1327,6 +1704,7 @@ module SDM
|
|
1327
1704
|
@port = port == nil ? 0 : port
|
1328
1705
|
@port_override = port_override == nil ? 0 : port_override
|
1329
1706
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
1707
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1330
1708
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1331
1709
|
@tls_required = tls_required == nil ? false : tls_required
|
1332
1710
|
@username = username == nil ? "" : username
|
@@ -1367,6 +1745,8 @@ module SDM
|
|
1367
1745
|
attr_accessor :secret_access_key
|
1368
1746
|
# ID of the secret store containing credentials for this resource, if any.
|
1369
1747
|
attr_accessor :secret_store_id
|
1748
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
1749
|
+
attr_accessor :subdomain
|
1370
1750
|
# Tags is a map of key, value pairs.
|
1371
1751
|
attr_accessor :tags
|
1372
1752
|
|
@@ -1384,6 +1764,7 @@ module SDM
|
|
1384
1764
|
role_external_id: nil,
|
1385
1765
|
secret_access_key: nil,
|
1386
1766
|
secret_store_id: nil,
|
1767
|
+
subdomain: nil,
|
1387
1768
|
tags: nil
|
1388
1769
|
)
|
1389
1770
|
@access_key = access_key == nil ? "" : access_key
|
@@ -1399,6 +1780,7 @@ module SDM
|
|
1399
1780
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
1400
1781
|
@secret_access_key = secret_access_key == nil ? "" : secret_access_key
|
1401
1782
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
1783
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1402
1784
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1403
1785
|
end
|
1404
1786
|
|
@@ -1434,6 +1816,8 @@ module SDM
|
|
1434
1816
|
attr_accessor :port_override
|
1435
1817
|
# ID of the secret store containing credentials for this resource, if any.
|
1436
1818
|
attr_accessor :secret_store_id
|
1819
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
1820
|
+
attr_accessor :subdomain
|
1437
1821
|
# Tags is a map of key, value pairs.
|
1438
1822
|
attr_accessor :tags
|
1439
1823
|
|
@@ -1451,6 +1835,7 @@ module SDM
|
|
1451
1835
|
port: nil,
|
1452
1836
|
port_override: nil,
|
1453
1837
|
secret_store_id: nil,
|
1838
|
+
subdomain: nil,
|
1454
1839
|
tags: nil,
|
1455
1840
|
username: nil
|
1456
1841
|
)
|
@@ -1465,6 +1850,7 @@ module SDM
|
|
1465
1850
|
@port = port == nil ? 0 : port
|
1466
1851
|
@port_override = port_override == nil ? 0 : port_override
|
1467
1852
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
1853
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1468
1854
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1469
1855
|
@username = username == nil ? "" : username
|
1470
1856
|
end
|
@@ -1503,6 +1889,8 @@ module SDM
|
|
1503
1889
|
attr_accessor :port_override
|
1504
1890
|
# ID of the secret store containing credentials for this resource, if any.
|
1505
1891
|
attr_accessor :secret_store_id
|
1892
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
1893
|
+
attr_accessor :subdomain
|
1506
1894
|
# Tags is a map of key, value pairs.
|
1507
1895
|
attr_accessor :tags
|
1508
1896
|
|
@@ -1521,6 +1909,7 @@ module SDM
|
|
1521
1909
|
port: nil,
|
1522
1910
|
port_override: nil,
|
1523
1911
|
secret_store_id: nil,
|
1912
|
+
subdomain: nil,
|
1524
1913
|
tags: nil,
|
1525
1914
|
username: nil
|
1526
1915
|
)
|
@@ -1536,6 +1925,7 @@ module SDM
|
|
1536
1925
|
@port = port == nil ? 0 : port
|
1537
1926
|
@port_override = port_override == nil ? 0 : port_override
|
1538
1927
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
1928
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1539
1929
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1540
1930
|
@username = username == nil ? "" : username
|
1541
1931
|
end
|
@@ -1681,6 +2071,8 @@ module SDM
|
|
1681
2071
|
attr_accessor :port_override
|
1682
2072
|
# ID of the secret store containing credentials for this resource, if any.
|
1683
2073
|
attr_accessor :secret_store_id
|
2074
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2075
|
+
attr_accessor :subdomain
|
1684
2076
|
# Tags is a map of key, value pairs.
|
1685
2077
|
attr_accessor :tags
|
1686
2078
|
|
@@ -1698,6 +2090,7 @@ module SDM
|
|
1698
2090
|
port: nil,
|
1699
2091
|
port_override: nil,
|
1700
2092
|
secret_store_id: nil,
|
2093
|
+
subdomain: nil,
|
1701
2094
|
tags: nil,
|
1702
2095
|
username: nil
|
1703
2096
|
)
|
@@ -1712,6 +2105,7 @@ module SDM
|
|
1712
2105
|
@port = port == nil ? 0 : port
|
1713
2106
|
@port_override = port_override == nil ? 0 : port_override
|
1714
2107
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2108
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1715
2109
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1716
2110
|
@username = username == nil ? "" : username
|
1717
2111
|
end
|
@@ -1750,6 +2144,8 @@ module SDM
|
|
1750
2144
|
attr_accessor :port_override
|
1751
2145
|
# ID of the secret store containing credentials for this resource, if any.
|
1752
2146
|
attr_accessor :secret_store_id
|
2147
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2148
|
+
attr_accessor :subdomain
|
1753
2149
|
# Tags is a map of key, value pairs.
|
1754
2150
|
attr_accessor :tags
|
1755
2151
|
|
@@ -1768,6 +2164,7 @@ module SDM
|
|
1768
2164
|
port: nil,
|
1769
2165
|
port_override: nil,
|
1770
2166
|
secret_store_id: nil,
|
2167
|
+
subdomain: nil,
|
1771
2168
|
tags: nil,
|
1772
2169
|
username: nil
|
1773
2170
|
)
|
@@ -1783,6 +2180,7 @@ module SDM
|
|
1783
2180
|
@port = port == nil ? 0 : port
|
1784
2181
|
@port_override = port_override == nil ? 0 : port_override
|
1785
2182
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2183
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1786
2184
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1787
2185
|
@username = username == nil ? "" : username
|
1788
2186
|
end
|
@@ -1848,6 +2246,8 @@ module SDM
|
|
1848
2246
|
attr_accessor :project
|
1849
2247
|
# ID of the secret store containing credentials for this resource, if any.
|
1850
2248
|
attr_accessor :secret_store_id
|
2249
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2250
|
+
attr_accessor :subdomain
|
1851
2251
|
# Tags is a map of key, value pairs.
|
1852
2252
|
attr_accessor :tags
|
1853
2253
|
|
@@ -1864,6 +2264,7 @@ module SDM
|
|
1864
2264
|
private_key: nil,
|
1865
2265
|
project: nil,
|
1866
2266
|
secret_store_id: nil,
|
2267
|
+
subdomain: nil,
|
1867
2268
|
tags: nil,
|
1868
2269
|
username: nil
|
1869
2270
|
)
|
@@ -1877,6 +2278,7 @@ module SDM
|
|
1877
2278
|
@private_key = private_key == nil ? "" : private_key
|
1878
2279
|
@project = project == nil ? "" : project
|
1879
2280
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2281
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1880
2282
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1881
2283
|
@username = username == nil ? "" : username
|
1882
2284
|
end
|
@@ -1911,6 +2313,8 @@ module SDM
|
|
1911
2313
|
attr_accessor :port_override
|
1912
2314
|
# ID of the secret store containing credentials for this resource, if any.
|
1913
2315
|
attr_accessor :secret_store_id
|
2316
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2317
|
+
attr_accessor :subdomain
|
1914
2318
|
# Tags is a map of key, value pairs.
|
1915
2319
|
attr_accessor :tags
|
1916
2320
|
|
@@ -1929,6 +2333,7 @@ module SDM
|
|
1929
2333
|
port: nil,
|
1930
2334
|
port_override: nil,
|
1931
2335
|
secret_store_id: nil,
|
2336
|
+
subdomain: nil,
|
1932
2337
|
tags: nil,
|
1933
2338
|
tls_required: nil,
|
1934
2339
|
username: nil
|
@@ -1943,6 +2348,7 @@ module SDM
|
|
1943
2348
|
@port = port == nil ? 0 : port
|
1944
2349
|
@port_override = port_override == nil ? 0 : port_override
|
1945
2350
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2351
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
1946
2352
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
1947
2353
|
@tls_required = tls_required == nil ? false : tls_required
|
1948
2354
|
@username = username == nil ? "" : username
|
@@ -1982,6 +2388,8 @@ module SDM
|
|
1982
2388
|
attr_accessor :port_override
|
1983
2389
|
# ID of the secret store containing credentials for this resource, if any.
|
1984
2390
|
attr_accessor :secret_store_id
|
2391
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2392
|
+
attr_accessor :subdomain
|
1985
2393
|
# Tags is a map of key, value pairs.
|
1986
2394
|
attr_accessor :tags
|
1987
2395
|
|
@@ -2000,6 +2408,7 @@ module SDM
|
|
2000
2408
|
port: nil,
|
2001
2409
|
port_override: nil,
|
2002
2410
|
secret_store_id: nil,
|
2411
|
+
subdomain: nil,
|
2003
2412
|
tags: nil,
|
2004
2413
|
username: nil
|
2005
2414
|
)
|
@@ -2015,6 +2424,7 @@ module SDM
|
|
2015
2424
|
@port = port == nil ? 0 : port
|
2016
2425
|
@port_override = port_override == nil ? 0 : port_override
|
2017
2426
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2427
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2018
2428
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2019
2429
|
@username = username == nil ? "" : username
|
2020
2430
|
end
|
@@ -2051,6 +2461,8 @@ module SDM
|
|
2051
2461
|
attr_accessor :port_override
|
2052
2462
|
# ID of the secret store containing credentials for this resource, if any.
|
2053
2463
|
attr_accessor :secret_store_id
|
2464
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2465
|
+
attr_accessor :subdomain
|
2054
2466
|
# Tags is a map of key, value pairs.
|
2055
2467
|
attr_accessor :tags
|
2056
2468
|
|
@@ -2068,6 +2480,7 @@ module SDM
|
|
2068
2480
|
port: nil,
|
2069
2481
|
port_override: nil,
|
2070
2482
|
secret_store_id: nil,
|
2483
|
+
subdomain: nil,
|
2071
2484
|
tags: nil,
|
2072
2485
|
username: nil
|
2073
2486
|
)
|
@@ -2082,6 +2495,7 @@ module SDM
|
|
2082
2495
|
@port = port == nil ? 0 : port
|
2083
2496
|
@port_override = port_override == nil ? 0 : port_override
|
2084
2497
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2498
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2085
2499
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2086
2500
|
@username = username == nil ? "" : username
|
2087
2501
|
end
|
@@ -2120,6 +2534,8 @@ module SDM
|
|
2120
2534
|
attr_accessor :port_override
|
2121
2535
|
# ID of the secret store containing credentials for this resource, if any.
|
2122
2536
|
attr_accessor :secret_store_id
|
2537
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2538
|
+
attr_accessor :subdomain
|
2123
2539
|
# Tags is a map of key, value pairs.
|
2124
2540
|
attr_accessor :tags
|
2125
2541
|
|
@@ -2138,6 +2554,7 @@ module SDM
|
|
2138
2554
|
port: nil,
|
2139
2555
|
port_override: nil,
|
2140
2556
|
secret_store_id: nil,
|
2557
|
+
subdomain: nil,
|
2141
2558
|
tags: nil,
|
2142
2559
|
username: nil
|
2143
2560
|
)
|
@@ -2153,6 +2570,7 @@ module SDM
|
|
2153
2570
|
@port = port == nil ? 0 : port
|
2154
2571
|
@port_override = port_override == nil ? 0 : port_override
|
2155
2572
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2573
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2156
2574
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2157
2575
|
@username = username == nil ? "" : username
|
2158
2576
|
end
|
@@ -2350,6 +2768,8 @@ module SDM
|
|
2350
2768
|
attr_accessor :port_override
|
2351
2769
|
# ID of the secret store containing credentials for this resource, if any.
|
2352
2770
|
attr_accessor :secret_store_id
|
2771
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2772
|
+
attr_accessor :subdomain
|
2353
2773
|
# Tags is a map of key, value pairs.
|
2354
2774
|
attr_accessor :tags
|
2355
2775
|
|
@@ -2368,6 +2788,7 @@ module SDM
|
|
2368
2788
|
port: nil,
|
2369
2789
|
port_override: nil,
|
2370
2790
|
secret_store_id: nil,
|
2791
|
+
subdomain: nil,
|
2371
2792
|
tags: nil,
|
2372
2793
|
tls_required: nil,
|
2373
2794
|
username: nil
|
@@ -2382,6 +2803,7 @@ module SDM
|
|
2382
2803
|
@port = port == nil ? 0 : port
|
2383
2804
|
@port_override = port_override == nil ? 0 : port_override
|
2384
2805
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2806
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2385
2807
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2386
2808
|
@tls_required = tls_required == nil ? false : tls_required
|
2387
2809
|
@username = username == nil ? "" : username
|
@@ -2419,6 +2841,8 @@ module SDM
|
|
2419
2841
|
attr_accessor :port_override
|
2420
2842
|
# ID of the secret store containing credentials for this resource, if any.
|
2421
2843
|
attr_accessor :secret_store_id
|
2844
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2845
|
+
attr_accessor :subdomain
|
2422
2846
|
# Tags is a map of key, value pairs.
|
2423
2847
|
attr_accessor :tags
|
2424
2848
|
|
@@ -2436,6 +2860,7 @@ module SDM
|
|
2436
2860
|
port: nil,
|
2437
2861
|
port_override: nil,
|
2438
2862
|
secret_store_id: nil,
|
2863
|
+
subdomain: nil,
|
2439
2864
|
tags: nil,
|
2440
2865
|
username: nil
|
2441
2866
|
)
|
@@ -2450,6 +2875,7 @@ module SDM
|
|
2450
2875
|
@port = port == nil ? 0 : port
|
2451
2876
|
@port_override = port_override == nil ? 0 : port_override
|
2452
2877
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2878
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2453
2879
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2454
2880
|
@username = username == nil ? "" : username
|
2455
2881
|
end
|
@@ -2534,6 +2960,8 @@ module SDM
|
|
2534
2960
|
attr_accessor :port_override
|
2535
2961
|
# ID of the secret store containing credentials for this resource, if any.
|
2536
2962
|
attr_accessor :secret_store_id
|
2963
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
2964
|
+
attr_accessor :subdomain
|
2537
2965
|
# Tags is a map of key, value pairs.
|
2538
2966
|
attr_accessor :tags
|
2539
2967
|
|
@@ -2551,6 +2979,7 @@ module SDM
|
|
2551
2979
|
port: nil,
|
2552
2980
|
port_override: nil,
|
2553
2981
|
secret_store_id: nil,
|
2982
|
+
subdomain: nil,
|
2554
2983
|
tags: nil,
|
2555
2984
|
username: nil
|
2556
2985
|
)
|
@@ -2565,6 +2994,7 @@ module SDM
|
|
2565
2994
|
@port = port == nil ? 0 : port
|
2566
2995
|
@port_override = port_override == nil ? 0 : port_override
|
2567
2996
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
2997
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2568
2998
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2569
2999
|
@username = username == nil ? "" : username
|
2570
3000
|
end
|
@@ -2602,6 +3032,8 @@ module SDM
|
|
2602
3032
|
attr_accessor :replica_set
|
2603
3033
|
# ID of the secret store containing credentials for this resource, if any.
|
2604
3034
|
attr_accessor :secret_store_id
|
3035
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
3036
|
+
attr_accessor :subdomain
|
2605
3037
|
# Tags is a map of key, value pairs.
|
2606
3038
|
attr_accessor :tags
|
2607
3039
|
|
@@ -2620,6 +3052,7 @@ module SDM
|
|
2620
3052
|
port_override: nil,
|
2621
3053
|
replica_set: nil,
|
2622
3054
|
secret_store_id: nil,
|
3055
|
+
subdomain: nil,
|
2623
3056
|
tags: nil,
|
2624
3057
|
username: nil
|
2625
3058
|
)
|
@@ -2635,6 +3068,7 @@ module SDM
|
|
2635
3068
|
@port_override = port_override == nil ? 0 : port_override
|
2636
3069
|
@replica_set = replica_set == nil ? "" : replica_set
|
2637
3070
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3071
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2638
3072
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2639
3073
|
@username = username == nil ? "" : username
|
2640
3074
|
end
|
@@ -2669,6 +3103,8 @@ module SDM
|
|
2669
3103
|
attr_accessor :port_override
|
2670
3104
|
# ID of the secret store containing credentials for this resource, if any.
|
2671
3105
|
attr_accessor :secret_store_id
|
3106
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
3107
|
+
attr_accessor :subdomain
|
2672
3108
|
# Tags is a map of key, value pairs.
|
2673
3109
|
attr_accessor :tags
|
2674
3110
|
|
@@ -2685,6 +3121,7 @@ module SDM
|
|
2685
3121
|
port: nil,
|
2686
3122
|
port_override: nil,
|
2687
3123
|
secret_store_id: nil,
|
3124
|
+
subdomain: nil,
|
2688
3125
|
tags: nil,
|
2689
3126
|
username: nil
|
2690
3127
|
)
|
@@ -2698,6 +3135,7 @@ module SDM
|
|
2698
3135
|
@port = port == nil ? 0 : port
|
2699
3136
|
@port_override = port_override == nil ? 0 : port_override
|
2700
3137
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3138
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2701
3139
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2702
3140
|
@username = username == nil ? "" : username
|
2703
3141
|
end
|
@@ -2737,6 +3175,8 @@ module SDM
|
|
2737
3175
|
attr_accessor :secret_access_key
|
2738
3176
|
# ID of the secret store containing credentials for this resource, if any.
|
2739
3177
|
attr_accessor :secret_store_id
|
3178
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
3179
|
+
attr_accessor :subdomain
|
2740
3180
|
# Tags is a map of key, value pairs.
|
2741
3181
|
attr_accessor :tags
|
2742
3182
|
|
@@ -2754,6 +3194,7 @@ module SDM
|
|
2754
3194
|
role_external_id: nil,
|
2755
3195
|
secret_access_key: nil,
|
2756
3196
|
secret_store_id: nil,
|
3197
|
+
subdomain: nil,
|
2757
3198
|
tags: nil
|
2758
3199
|
)
|
2759
3200
|
@access_key = access_key == nil ? "" : access_key
|
@@ -2769,6 +3210,7 @@ module SDM
|
|
2769
3210
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
2770
3211
|
@secret_access_key = secret_access_key == nil ? "" : secret_access_key
|
2771
3212
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3213
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2772
3214
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2773
3215
|
end
|
2774
3216
|
|
@@ -2802,6 +3244,8 @@ module SDM
|
|
2802
3244
|
attr_accessor :port_override
|
2803
3245
|
# ID of the secret store containing credentials for this resource, if any.
|
2804
3246
|
attr_accessor :secret_store_id
|
3247
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
3248
|
+
attr_accessor :subdomain
|
2805
3249
|
# Tags is a map of key, value pairs.
|
2806
3250
|
attr_accessor :tags
|
2807
3251
|
|
@@ -2820,6 +3264,7 @@ module SDM
|
|
2820
3264
|
port: nil,
|
2821
3265
|
port_override: nil,
|
2822
3266
|
secret_store_id: nil,
|
3267
|
+
subdomain: nil,
|
2823
3268
|
tags: nil,
|
2824
3269
|
tls_required: nil,
|
2825
3270
|
username: nil
|
@@ -2834,6 +3279,7 @@ module SDM
|
|
2834
3279
|
@port = port == nil ? 0 : port
|
2835
3280
|
@port_override = port_override == nil ? 0 : port_override
|
2836
3281
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3282
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2837
3283
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2838
3284
|
@tls_required = tls_required == nil ? false : tls_required
|
2839
3285
|
@username = username == nil ? "" : username
|
@@ -2869,6 +3315,8 @@ module SDM
|
|
2869
3315
|
attr_accessor :port_override
|
2870
3316
|
# ID of the secret store containing credentials for this resource, if any.
|
2871
3317
|
attr_accessor :secret_store_id
|
3318
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
3319
|
+
attr_accessor :subdomain
|
2872
3320
|
# Tags is a map of key, value pairs.
|
2873
3321
|
attr_accessor :tags
|
2874
3322
|
|
@@ -2887,6 +3335,7 @@ module SDM
|
|
2887
3335
|
port: nil,
|
2888
3336
|
port_override: nil,
|
2889
3337
|
secret_store_id: nil,
|
3338
|
+
subdomain: nil,
|
2890
3339
|
tags: nil,
|
2891
3340
|
tls_required: nil,
|
2892
3341
|
username: nil
|
@@ -2901,6 +3350,7 @@ module SDM
|
|
2901
3350
|
@port = port == nil ? 0 : port
|
2902
3351
|
@port_override = port_override == nil ? 0 : port_override
|
2903
3352
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3353
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
2904
3354
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
2905
3355
|
@tls_required = tls_required == nil ? false : tls_required
|
2906
3356
|
@username = username == nil ? "" : username
|
@@ -3098,6 +3548,8 @@ module SDM
|
|
3098
3548
|
attr_accessor :secret_store_id
|
3099
3549
|
|
3100
3550
|
attr_accessor :service_account_key
|
3551
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
3552
|
+
attr_accessor :subdomain
|
3101
3553
|
# Tags is a map of key, value pairs.
|
3102
3554
|
attr_accessor :tags
|
3103
3555
|
|
@@ -3114,6 +3566,7 @@ module SDM
|
|
3114
3566
|
remote_identity_healthcheck_username: nil,
|
3115
3567
|
secret_store_id: nil,
|
3116
3568
|
service_account_key: nil,
|
3569
|
+
subdomain: nil,
|
3117
3570
|
tags: nil
|
3118
3571
|
)
|
3119
3572
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -3128,6 +3581,7 @@ module SDM
|
|
3128
3581
|
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
3129
3582
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3130
3583
|
@service_account_key = service_account_key == nil ? "" : service_account_key
|
3584
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3131
3585
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3132
3586
|
end
|
3133
3587
|
|
@@ -3161,6 +3615,8 @@ module SDM
|
|
3161
3615
|
attr_accessor :secret_store_id
|
3162
3616
|
|
3163
3617
|
attr_accessor :service_account_key
|
3618
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
3619
|
+
attr_accessor :subdomain
|
3164
3620
|
# Tags is a map of key, value pairs.
|
3165
3621
|
attr_accessor :tags
|
3166
3622
|
|
@@ -3175,6 +3631,7 @@ module SDM
|
|
3175
3631
|
name: nil,
|
3176
3632
|
secret_store_id: nil,
|
3177
3633
|
service_account_key: nil,
|
3634
|
+
subdomain: nil,
|
3178
3635
|
tags: nil
|
3179
3636
|
)
|
3180
3637
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -3187,6 +3644,7 @@ module SDM
|
|
3187
3644
|
@name = name == nil ? "" : name
|
3188
3645
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3189
3646
|
@service_account_key = service_account_key == nil ? "" : service_account_key
|
3647
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3190
3648
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3191
3649
|
end
|
3192
3650
|
|
@@ -3224,6 +3682,8 @@ module SDM
|
|
3224
3682
|
attr_accessor :port_override
|
3225
3683
|
# ID of the secret store containing credentials for this resource, if any.
|
3226
3684
|
attr_accessor :secret_store_id
|
3685
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
3686
|
+
attr_accessor :subdomain
|
3227
3687
|
# Tags is a map of key, value pairs.
|
3228
3688
|
attr_accessor :tags
|
3229
3689
|
|
@@ -3242,6 +3702,7 @@ module SDM
|
|
3242
3702
|
port: nil,
|
3243
3703
|
port_override: nil,
|
3244
3704
|
secret_store_id: nil,
|
3705
|
+
subdomain: nil,
|
3245
3706
|
tags: nil,
|
3246
3707
|
username: nil
|
3247
3708
|
)
|
@@ -3257,6 +3718,7 @@ module SDM
|
|
3257
3718
|
@port = port == nil ? 0 : port
|
3258
3719
|
@port_override = port_override == nil ? 0 : port_override
|
3259
3720
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3721
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3260
3722
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3261
3723
|
@username = username == nil ? "" : username
|
3262
3724
|
end
|
@@ -3513,6 +3975,8 @@ module SDM
|
|
3513
3975
|
attr_accessor :remote_identity_healthcheck_username
|
3514
3976
|
# ID of the secret store containing credentials for this resource, if any.
|
3515
3977
|
attr_accessor :secret_store_id
|
3978
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
3979
|
+
attr_accessor :subdomain
|
3516
3980
|
# Tags is a map of key, value pairs.
|
3517
3981
|
attr_accessor :tags
|
3518
3982
|
|
@@ -3532,6 +3996,7 @@ module SDM
|
|
3532
3996
|
remote_identity_group_id: nil,
|
3533
3997
|
remote_identity_healthcheck_username: nil,
|
3534
3998
|
secret_store_id: nil,
|
3999
|
+
subdomain: nil,
|
3535
4000
|
tags: nil
|
3536
4001
|
)
|
3537
4002
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -3549,6 +4014,7 @@ module SDM
|
|
3549
4014
|
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
3550
4015
|
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
3551
4016
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4017
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3552
4018
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3553
4019
|
end
|
3554
4020
|
|
@@ -3584,6 +4050,8 @@ module SDM
|
|
3584
4050
|
attr_accessor :port_override
|
3585
4051
|
# ID of the secret store containing credentials for this resource, if any.
|
3586
4052
|
attr_accessor :secret_store_id
|
4053
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4054
|
+
attr_accessor :subdomain
|
3587
4055
|
# Tags is a map of key, value pairs.
|
3588
4056
|
attr_accessor :tags
|
3589
4057
|
|
@@ -3601,6 +4069,7 @@ module SDM
|
|
3601
4069
|
port: nil,
|
3602
4070
|
port_override: nil,
|
3603
4071
|
secret_store_id: nil,
|
4072
|
+
subdomain: nil,
|
3604
4073
|
tags: nil,
|
3605
4074
|
username: nil
|
3606
4075
|
)
|
@@ -3615,6 +4084,7 @@ module SDM
|
|
3615
4084
|
@port = port == nil ? 0 : port
|
3616
4085
|
@port_override = port_override == nil ? 0 : port_override
|
3617
4086
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4087
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3618
4088
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3619
4089
|
@username = username == nil ? "" : username
|
3620
4090
|
end
|
@@ -3653,6 +4123,8 @@ module SDM
|
|
3653
4123
|
attr_accessor :remote_identity_healthcheck_username
|
3654
4124
|
# ID of the secret store containing credentials for this resource, if any.
|
3655
4125
|
attr_accessor :secret_store_id
|
4126
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4127
|
+
attr_accessor :subdomain
|
3656
4128
|
# Tags is a map of key, value pairs.
|
3657
4129
|
attr_accessor :tags
|
3658
4130
|
|
@@ -3671,6 +4143,7 @@ module SDM
|
|
3671
4143
|
remote_identity_group_id: nil,
|
3672
4144
|
remote_identity_healthcheck_username: nil,
|
3673
4145
|
secret_store_id: nil,
|
4146
|
+
subdomain: nil,
|
3674
4147
|
tags: nil,
|
3675
4148
|
token: nil
|
3676
4149
|
)
|
@@ -3686,6 +4159,7 @@ module SDM
|
|
3686
4159
|
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
3687
4160
|
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
3688
4161
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4162
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3689
4163
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3690
4164
|
@token = token == nil ? "" : token
|
3691
4165
|
end
|
@@ -3720,6 +4194,8 @@ module SDM
|
|
3720
4194
|
attr_accessor :port_override
|
3721
4195
|
# ID of the secret store containing credentials for this resource, if any.
|
3722
4196
|
attr_accessor :secret_store_id
|
4197
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4198
|
+
attr_accessor :subdomain
|
3723
4199
|
# Tags is a map of key, value pairs.
|
3724
4200
|
attr_accessor :tags
|
3725
4201
|
|
@@ -3736,6 +4212,7 @@ module SDM
|
|
3736
4212
|
port: nil,
|
3737
4213
|
port_override: nil,
|
3738
4214
|
secret_store_id: nil,
|
4215
|
+
subdomain: nil,
|
3739
4216
|
tags: nil,
|
3740
4217
|
token: nil
|
3741
4218
|
)
|
@@ -3749,6 +4226,7 @@ module SDM
|
|
3749
4226
|
@port = port == nil ? 0 : port
|
3750
4227
|
@port_override = port_override == nil ? 0 : port_override
|
3751
4228
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4229
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3752
4230
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3753
4231
|
@token = token == nil ? "" : token
|
3754
4232
|
end
|
@@ -3789,6 +4267,8 @@ module SDM
|
|
3789
4267
|
attr_accessor :port_override
|
3790
4268
|
# ID of the secret store containing credentials for this resource, if any.
|
3791
4269
|
attr_accessor :secret_store_id
|
4270
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4271
|
+
attr_accessor :subdomain
|
3792
4272
|
# Tags is a map of key, value pairs.
|
3793
4273
|
attr_accessor :tags
|
3794
4274
|
|
@@ -3806,6 +4286,7 @@ module SDM
|
|
3806
4286
|
port: nil,
|
3807
4287
|
port_override: nil,
|
3808
4288
|
secret_store_id: nil,
|
4289
|
+
subdomain: nil,
|
3809
4290
|
tags: nil
|
3810
4291
|
)
|
3811
4292
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -3821,6 +4302,7 @@ module SDM
|
|
3821
4302
|
@port = port == nil ? 0 : port
|
3822
4303
|
@port_override = port_override == nil ? 0 : port_override
|
3823
4304
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4305
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3824
4306
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3825
4307
|
end
|
3826
4308
|
|
@@ -3865,6 +4347,8 @@ module SDM
|
|
3865
4347
|
attr_accessor :secret_store_id
|
3866
4348
|
|
3867
4349
|
attr_accessor :server_name
|
4350
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4351
|
+
attr_accessor :subdomain
|
3868
4352
|
# Tags is a map of key, value pairs.
|
3869
4353
|
attr_accessor :tags
|
3870
4354
|
|
@@ -3886,6 +4370,7 @@ module SDM
|
|
3886
4370
|
port_override: nil,
|
3887
4371
|
secret_store_id: nil,
|
3888
4372
|
server_name: nil,
|
4373
|
+
subdomain: nil,
|
3889
4374
|
tags: nil,
|
3890
4375
|
username: nil
|
3891
4376
|
)
|
@@ -3904,6 +4389,7 @@ module SDM
|
|
3904
4389
|
@port_override = port_override == nil ? 0 : port_override
|
3905
4390
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3906
4391
|
@server_name = server_name == nil ? "" : server_name
|
4392
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3907
4393
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3908
4394
|
@username = username == nil ? "" : username
|
3909
4395
|
end
|
@@ -3950,6 +4436,8 @@ module SDM
|
|
3950
4436
|
attr_accessor :secret_store_id
|
3951
4437
|
|
3952
4438
|
attr_accessor :server_name
|
4439
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4440
|
+
attr_accessor :subdomain
|
3953
4441
|
# Tags is a map of key, value pairs.
|
3954
4442
|
attr_accessor :tags
|
3955
4443
|
|
@@ -3972,6 +4460,7 @@ module SDM
|
|
3972
4460
|
port_override: nil,
|
3973
4461
|
secret_store_id: nil,
|
3974
4462
|
server_name: nil,
|
4463
|
+
subdomain: nil,
|
3975
4464
|
tags: nil,
|
3976
4465
|
username: nil
|
3977
4466
|
)
|
@@ -3991,6 +4480,7 @@ module SDM
|
|
3991
4480
|
@port_override = port_override == nil ? 0 : port_override
|
3992
4481
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
3993
4482
|
@server_name = server_name == nil ? "" : server_name
|
4483
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
3994
4484
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
3995
4485
|
@username = username == nil ? "" : username
|
3996
4486
|
end
|
@@ -4027,6 +4517,8 @@ module SDM
|
|
4027
4517
|
attr_accessor :port_override
|
4028
4518
|
# ID of the secret store containing credentials for this resource, if any.
|
4029
4519
|
attr_accessor :secret_store_id
|
4520
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4521
|
+
attr_accessor :subdomain
|
4030
4522
|
# Tags is a map of key, value pairs.
|
4031
4523
|
attr_accessor :tags
|
4032
4524
|
|
@@ -4044,6 +4536,7 @@ module SDM
|
|
4044
4536
|
port: nil,
|
4045
4537
|
port_override: nil,
|
4046
4538
|
secret_store_id: nil,
|
4539
|
+
subdomain: nil,
|
4047
4540
|
tags: nil,
|
4048
4541
|
username: nil
|
4049
4542
|
)
|
@@ -4058,6 +4551,7 @@ module SDM
|
|
4058
4551
|
@port = port == nil ? 0 : port
|
4059
4552
|
@port_override = port_override == nil ? 0 : port_override
|
4060
4553
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4554
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4061
4555
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4062
4556
|
@username = username == nil ? "" : username
|
4063
4557
|
end
|
@@ -4090,6 +4584,8 @@ module SDM
|
|
4090
4584
|
attr_accessor :port_override
|
4091
4585
|
# ID of the secret store containing credentials for this resource, if any.
|
4092
4586
|
attr_accessor :secret_store_id
|
4587
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4588
|
+
attr_accessor :subdomain
|
4093
4589
|
# Tags is a map of key, value pairs.
|
4094
4590
|
attr_accessor :tags
|
4095
4591
|
|
@@ -4103,6 +4599,7 @@ module SDM
|
|
4103
4599
|
port: nil,
|
4104
4600
|
port_override: nil,
|
4105
4601
|
secret_store_id: nil,
|
4602
|
+
subdomain: nil,
|
4106
4603
|
tags: nil
|
4107
4604
|
)
|
4108
4605
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -4114,6 +4611,7 @@ module SDM
|
|
4114
4611
|
@port = port == nil ? 0 : port
|
4115
4612
|
@port_override = port_override == nil ? 0 : port_override
|
4116
4613
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4614
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4117
4615
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4118
4616
|
end
|
4119
4617
|
|
@@ -4149,6 +4647,8 @@ module SDM
|
|
4149
4647
|
attr_accessor :port_override
|
4150
4648
|
# ID of the secret store containing credentials for this resource, if any.
|
4151
4649
|
attr_accessor :secret_store_id
|
4650
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4651
|
+
attr_accessor :subdomain
|
4152
4652
|
# Tags is a map of key, value pairs.
|
4153
4653
|
attr_accessor :tags
|
4154
4654
|
|
@@ -4166,6 +4666,7 @@ module SDM
|
|
4166
4666
|
port: nil,
|
4167
4667
|
port_override: nil,
|
4168
4668
|
secret_store_id: nil,
|
4669
|
+
subdomain: nil,
|
4169
4670
|
tags: nil,
|
4170
4671
|
username: nil
|
4171
4672
|
)
|
@@ -4180,6 +4681,7 @@ module SDM
|
|
4180
4681
|
@port = port == nil ? 0 : port
|
4181
4682
|
@port_override = port_override == nil ? 0 : port_override
|
4182
4683
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4684
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4183
4685
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4184
4686
|
@username = username == nil ? "" : username
|
4185
4687
|
end
|
@@ -4216,6 +4718,8 @@ module SDM
|
|
4216
4718
|
attr_accessor :port_override
|
4217
4719
|
# ID of the secret store containing credentials for this resource, if any.
|
4218
4720
|
attr_accessor :secret_store_id
|
4721
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4722
|
+
attr_accessor :subdomain
|
4219
4723
|
# Tags is a map of key, value pairs.
|
4220
4724
|
attr_accessor :tags
|
4221
4725
|
|
@@ -4235,6 +4739,7 @@ module SDM
|
|
4235
4739
|
port: nil,
|
4236
4740
|
port_override: nil,
|
4237
4741
|
secret_store_id: nil,
|
4742
|
+
subdomain: nil,
|
4238
4743
|
tags: nil,
|
4239
4744
|
tls_required: nil,
|
4240
4745
|
username: nil
|
@@ -4250,6 +4755,7 @@ module SDM
|
|
4250
4755
|
@port = port == nil ? 0 : port
|
4251
4756
|
@port_override = port_override == nil ? 0 : port_override
|
4252
4757
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4758
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4253
4759
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4254
4760
|
@tls_required = tls_required == nil ? false : tls_required
|
4255
4761
|
@username = username == nil ? "" : username
|
@@ -4288,6 +4794,8 @@ module SDM
|
|
4288
4794
|
attr_accessor :replica_set
|
4289
4795
|
# ID of the secret store containing credentials for this resource, if any.
|
4290
4796
|
attr_accessor :secret_store_id
|
4797
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4798
|
+
attr_accessor :subdomain
|
4291
4799
|
# Tags is a map of key, value pairs.
|
4292
4800
|
attr_accessor :tags
|
4293
4801
|
|
@@ -4308,6 +4816,7 @@ module SDM
|
|
4308
4816
|
port_override: nil,
|
4309
4817
|
replica_set: nil,
|
4310
4818
|
secret_store_id: nil,
|
4819
|
+
subdomain: nil,
|
4311
4820
|
tags: nil,
|
4312
4821
|
tls_required: nil,
|
4313
4822
|
username: nil
|
@@ -4324,6 +4833,7 @@ module SDM
|
|
4324
4833
|
@port_override = port_override == nil ? 0 : port_override
|
4325
4834
|
@replica_set = replica_set == nil ? "" : replica_set
|
4326
4835
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4836
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4327
4837
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4328
4838
|
@tls_required = tls_required == nil ? false : tls_required
|
4329
4839
|
@username = username == nil ? "" : username
|
@@ -4364,6 +4874,8 @@ module SDM
|
|
4364
4874
|
attr_accessor :replica_set
|
4365
4875
|
# ID of the secret store containing credentials for this resource, if any.
|
4366
4876
|
attr_accessor :secret_store_id
|
4877
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4878
|
+
attr_accessor :subdomain
|
4367
4879
|
# Tags is a map of key, value pairs.
|
4368
4880
|
attr_accessor :tags
|
4369
4881
|
|
@@ -4385,6 +4897,7 @@ module SDM
|
|
4385
4897
|
port_override: nil,
|
4386
4898
|
replica_set: nil,
|
4387
4899
|
secret_store_id: nil,
|
4900
|
+
subdomain: nil,
|
4388
4901
|
tags: nil,
|
4389
4902
|
tls_required: nil,
|
4390
4903
|
username: nil
|
@@ -4402,6 +4915,7 @@ module SDM
|
|
4402
4915
|
@port_override = port_override == nil ? 0 : port_override
|
4403
4916
|
@replica_set = replica_set == nil ? "" : replica_set
|
4404
4917
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
4918
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4405
4919
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4406
4920
|
@tls_required = tls_required == nil ? false : tls_required
|
4407
4921
|
@username = username == nil ? "" : username
|
@@ -4443,6 +4957,8 @@ module SDM
|
|
4443
4957
|
attr_accessor :replica_set
|
4444
4958
|
# ID of the secret store containing credentials for this resource, if any.
|
4445
4959
|
attr_accessor :secret_store_id
|
4960
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
4961
|
+
attr_accessor :subdomain
|
4446
4962
|
# Tags is a map of key, value pairs.
|
4447
4963
|
attr_accessor :tags
|
4448
4964
|
|
@@ -4464,6 +4980,7 @@ module SDM
|
|
4464
4980
|
port_override: nil,
|
4465
4981
|
replica_set: nil,
|
4466
4982
|
secret_store_id: nil,
|
4983
|
+
subdomain: nil,
|
4467
4984
|
tags: nil,
|
4468
4985
|
tls_required: nil,
|
4469
4986
|
username: nil
|
@@ -4481,6 +4998,7 @@ module SDM
|
|
4481
4998
|
@port_override = port_override == nil ? 0 : port_override
|
4482
4999
|
@replica_set = replica_set == nil ? "" : replica_set
|
4483
5000
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5001
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4484
5002
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4485
5003
|
@tls_required = tls_required == nil ? false : tls_required
|
4486
5004
|
@username = username == nil ? "" : username
|
@@ -4516,6 +5034,8 @@ module SDM
|
|
4516
5034
|
attr_accessor :port_override
|
4517
5035
|
# ID of the secret store containing credentials for this resource, if any.
|
4518
5036
|
attr_accessor :secret_store_id
|
5037
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
5038
|
+
attr_accessor :subdomain
|
4519
5039
|
# Tags is a map of key, value pairs.
|
4520
5040
|
attr_accessor :tags
|
4521
5041
|
|
@@ -4534,6 +5054,7 @@ module SDM
|
|
4534
5054
|
password: nil,
|
4535
5055
|
port_override: nil,
|
4536
5056
|
secret_store_id: nil,
|
5057
|
+
subdomain: nil,
|
4537
5058
|
tags: nil,
|
4538
5059
|
tls_required: nil,
|
4539
5060
|
username: nil
|
@@ -4548,6 +5069,7 @@ module SDM
|
|
4548
5069
|
@password = password == nil ? "" : password
|
4549
5070
|
@port_override = port_override == nil ? 0 : port_override
|
4550
5071
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5072
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4551
5073
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4552
5074
|
@tls_required = tls_required == nil ? false : tls_required
|
4553
5075
|
@username = username == nil ? "" : username
|
@@ -4585,6 +5107,8 @@ module SDM
|
|
4585
5107
|
attr_accessor :port_override
|
4586
5108
|
# ID of the secret store containing credentials for this resource, if any.
|
4587
5109
|
attr_accessor :secret_store_id
|
5110
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
5111
|
+
attr_accessor :subdomain
|
4588
5112
|
# Tags is a map of key, value pairs.
|
4589
5113
|
attr_accessor :tags
|
4590
5114
|
|
@@ -4602,6 +5126,7 @@ module SDM
|
|
4602
5126
|
port: nil,
|
4603
5127
|
port_override: nil,
|
4604
5128
|
secret_store_id: nil,
|
5129
|
+
subdomain: nil,
|
4605
5130
|
tags: nil,
|
4606
5131
|
username: nil
|
4607
5132
|
)
|
@@ -4616,6 +5141,7 @@ module SDM
|
|
4616
5141
|
@port = port == nil ? 0 : port
|
4617
5142
|
@port_override = port_override == nil ? 0 : port_override
|
4618
5143
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5144
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4619
5145
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4620
5146
|
@username = username == nil ? "" : username
|
4621
5147
|
end
|
@@ -4648,6 +5174,8 @@ module SDM
|
|
4648
5174
|
attr_accessor :port_override
|
4649
5175
|
# ID of the secret store containing credentials for this resource, if any.
|
4650
5176
|
attr_accessor :secret_store_id
|
5177
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
5178
|
+
attr_accessor :subdomain
|
4651
5179
|
# Tags is a map of key, value pairs.
|
4652
5180
|
attr_accessor :tags
|
4653
5181
|
|
@@ -4661,6 +5189,7 @@ module SDM
|
|
4661
5189
|
port: nil,
|
4662
5190
|
port_override: nil,
|
4663
5191
|
secret_store_id: nil,
|
5192
|
+
subdomain: nil,
|
4664
5193
|
tags: nil
|
4665
5194
|
)
|
4666
5195
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -4672,6 +5201,7 @@ module SDM
|
|
4672
5201
|
@port = port == nil ? 0 : port
|
4673
5202
|
@port_override = port_override == nil ? 0 : port_override
|
4674
5203
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5204
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4675
5205
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4676
5206
|
end
|
4677
5207
|
|
@@ -4712,6 +5242,8 @@ module SDM
|
|
4712
5242
|
attr_accessor :secret_access_key
|
4713
5243
|
# ID of the secret store containing credentials for this resource, if any.
|
4714
5244
|
attr_accessor :secret_store_id
|
5245
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
5246
|
+
attr_accessor :subdomain
|
4715
5247
|
# Tags is a map of key, value pairs.
|
4716
5248
|
attr_accessor :tags
|
4717
5249
|
|
@@ -4730,6 +5262,7 @@ module SDM
|
|
4730
5262
|
role_external_id: nil,
|
4731
5263
|
secret_access_key: nil,
|
4732
5264
|
secret_store_id: nil,
|
5265
|
+
subdomain: nil,
|
4733
5266
|
tags: nil
|
4734
5267
|
)
|
4735
5268
|
@access_key = access_key == nil ? "" : access_key
|
@@ -4746,6 +5279,7 @@ module SDM
|
|
4746
5279
|
@role_external_id = role_external_id == nil ? "" : role_external_id
|
4747
5280
|
@secret_access_key = secret_access_key == nil ? "" : secret_access_key
|
4748
5281
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5282
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4749
5283
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4750
5284
|
end
|
4751
5285
|
|
@@ -4843,6 +5377,41 @@ module SDM
|
|
4843
5377
|
end
|
4844
5378
|
end
|
4845
5379
|
|
5380
|
+
# NodeHistory records the state of a Node at a given point in time,
|
5381
|
+
# where every change (create, update and delete) to a Node produces an
|
5382
|
+
# NodeHistory record.
|
5383
|
+
class NodeHistory
|
5384
|
+
# The unique identifier of the Activity that produced this change to the Node.
|
5385
|
+
# May be empty for some system-initiated updates.
|
5386
|
+
attr_accessor :activity_id
|
5387
|
+
# If this Node was deleted, the time it was deleted.
|
5388
|
+
attr_accessor :deleted_at
|
5389
|
+
# The complete Node state at this time.
|
5390
|
+
attr_accessor :node
|
5391
|
+
# The time at which the Node state was recorded.
|
5392
|
+
attr_accessor :timestamp
|
5393
|
+
|
5394
|
+
def initialize(
|
5395
|
+
activity_id: nil,
|
5396
|
+
deleted_at: nil,
|
5397
|
+
node: nil,
|
5398
|
+
timestamp: nil
|
5399
|
+
)
|
5400
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
5401
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
5402
|
+
@node = node == nil ? nil : node
|
5403
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
5404
|
+
end
|
5405
|
+
|
5406
|
+
def to_json(options = {})
|
5407
|
+
hash = {}
|
5408
|
+
self.instance_variables.each do |var|
|
5409
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5410
|
+
end
|
5411
|
+
hash.to_json
|
5412
|
+
end
|
5413
|
+
end
|
5414
|
+
|
4846
5415
|
# NodeUpdateResponse returns the fields of a Node after it has been updated by
|
4847
5416
|
# a NodeUpdateRequest.
|
4848
5417
|
class NodeUpdateResponse
|
@@ -4895,6 +5464,8 @@ module SDM
|
|
4895
5464
|
attr_accessor :port_override
|
4896
5465
|
# ID of the secret store containing credentials for this resource, if any.
|
4897
5466
|
attr_accessor :secret_store_id
|
5467
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
5468
|
+
attr_accessor :subdomain
|
4898
5469
|
# Tags is a map of key, value pairs.
|
4899
5470
|
attr_accessor :tags
|
4900
5471
|
|
@@ -4914,6 +5485,7 @@ module SDM
|
|
4914
5485
|
port: nil,
|
4915
5486
|
port_override: nil,
|
4916
5487
|
secret_store_id: nil,
|
5488
|
+
subdomain: nil,
|
4917
5489
|
tags: nil,
|
4918
5490
|
tls_required: nil,
|
4919
5491
|
username: nil
|
@@ -4929,6 +5501,7 @@ module SDM
|
|
4929
5501
|
@port = port == nil ? 0 : port
|
4930
5502
|
@port_override = port_override == nil ? 0 : port_override
|
4931
5503
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5504
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
4932
5505
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
4933
5506
|
@tls_required = tls_required == nil ? false : tls_required
|
4934
5507
|
@username = username == nil ? "" : username
|
@@ -4943,6 +5516,147 @@ module SDM
|
|
4943
5516
|
end
|
4944
5517
|
end
|
4945
5518
|
|
5519
|
+
class Organization
|
5520
|
+
# The Organization's authentication provider.
|
5521
|
+
attr_accessor :auth_provider
|
5522
|
+
# The time at which the Organization was created.
|
5523
|
+
attr_accessor :created_at
|
5524
|
+
# The Organization's idle timeout, if enabled.
|
5525
|
+
attr_accessor :idle_timeout
|
5526
|
+
# Indicates if the Organization has idle timeouts enabled.
|
5527
|
+
attr_accessor :idle_timeout_enabled
|
5528
|
+
# The Organization's type.
|
5529
|
+
attr_accessor :kind
|
5530
|
+
# The Organization's local log encryption encoder.
|
5531
|
+
attr_accessor :log_local_encoder
|
5532
|
+
# The Organization's local log format.
|
5533
|
+
attr_accessor :log_local_format
|
5534
|
+
# The Organization's local log storage.
|
5535
|
+
attr_accessor :log_local_storage
|
5536
|
+
# The Organization's remote log encryption encoder.
|
5537
|
+
attr_accessor :log_remote_encoder
|
5538
|
+
# The Organization's socket path for Socket local log storage.
|
5539
|
+
attr_accessor :log_socket_path
|
5540
|
+
# The Organization's TCP address for TCP or Syslog local log storage.
|
5541
|
+
attr_accessor :log_tcp_address
|
5542
|
+
# Indicates if the Organization has multi-factor authentication enabled.
|
5543
|
+
attr_accessor :mfa_enabled
|
5544
|
+
# The Organization's multi-factor authentication provider, if enabled.
|
5545
|
+
attr_accessor :mfa_provider
|
5546
|
+
# The Organization's name.
|
5547
|
+
attr_accessor :name
|
5548
|
+
# Indicates if the Organization requires secret stores.
|
5549
|
+
attr_accessor :require_secret_store
|
5550
|
+
# The Organization's URL for SAML metadata.
|
5551
|
+
attr_accessor :saml_metadata_url
|
5552
|
+
# The Organization's SCIM provider.
|
5553
|
+
attr_accessor :scim_provider
|
5554
|
+
# The Organization's label for sensitive resources.
|
5555
|
+
attr_accessor :sensitive_label
|
5556
|
+
# The Organization's session timeout, if enabled.
|
5557
|
+
attr_accessor :session_timeout
|
5558
|
+
# Indicates if the Organization has session timeouts enabled.
|
5559
|
+
attr_accessor :session_timeout_enabled
|
5560
|
+
# The Organization's SSH certificate authority public key.
|
5561
|
+
attr_accessor :ssh_certificate_authority_public_key
|
5562
|
+
# The time at which the Organization's SSH certificate authority was last updated.
|
5563
|
+
attr_accessor :ssh_certificate_authority_updated_at
|
5564
|
+
# The time at which the Organization was last updated.
|
5565
|
+
attr_accessor :updated_at
|
5566
|
+
# The Organization's web site domain.
|
5567
|
+
attr_accessor :websites_subdomain
|
5568
|
+
|
5569
|
+
def initialize(
|
5570
|
+
auth_provider: nil,
|
5571
|
+
created_at: nil,
|
5572
|
+
idle_timeout: nil,
|
5573
|
+
idle_timeout_enabled: nil,
|
5574
|
+
kind: nil,
|
5575
|
+
log_local_encoder: nil,
|
5576
|
+
log_local_format: nil,
|
5577
|
+
log_local_storage: nil,
|
5578
|
+
log_remote_encoder: nil,
|
5579
|
+
log_socket_path: nil,
|
5580
|
+
log_tcp_address: nil,
|
5581
|
+
mfa_enabled: nil,
|
5582
|
+
mfa_provider: nil,
|
5583
|
+
name: nil,
|
5584
|
+
require_secret_store: nil,
|
5585
|
+
saml_metadata_url: nil,
|
5586
|
+
scim_provider: nil,
|
5587
|
+
sensitive_label: nil,
|
5588
|
+
session_timeout: nil,
|
5589
|
+
session_timeout_enabled: nil,
|
5590
|
+
ssh_certificate_authority_public_key: nil,
|
5591
|
+
ssh_certificate_authority_updated_at: nil,
|
5592
|
+
updated_at: nil,
|
5593
|
+
websites_subdomain: nil
|
5594
|
+
)
|
5595
|
+
@auth_provider = auth_provider == nil ? "" : auth_provider
|
5596
|
+
@created_at = created_at == nil ? nil : created_at
|
5597
|
+
@idle_timeout = idle_timeout == nil ? nil : idle_timeout
|
5598
|
+
@idle_timeout_enabled = idle_timeout_enabled == nil ? false : idle_timeout_enabled
|
5599
|
+
@kind = kind == nil ? "" : kind
|
5600
|
+
@log_local_encoder = log_local_encoder == nil ? "" : log_local_encoder
|
5601
|
+
@log_local_format = log_local_format == nil ? "" : log_local_format
|
5602
|
+
@log_local_storage = log_local_storage == nil ? "" : log_local_storage
|
5603
|
+
@log_remote_encoder = log_remote_encoder == nil ? "" : log_remote_encoder
|
5604
|
+
@log_socket_path = log_socket_path == nil ? "" : log_socket_path
|
5605
|
+
@log_tcp_address = log_tcp_address == nil ? "" : log_tcp_address
|
5606
|
+
@mfa_enabled = mfa_enabled == nil ? false : mfa_enabled
|
5607
|
+
@mfa_provider = mfa_provider == nil ? "" : mfa_provider
|
5608
|
+
@name = name == nil ? "" : name
|
5609
|
+
@require_secret_store = require_secret_store == nil ? false : require_secret_store
|
5610
|
+
@saml_metadata_url = saml_metadata_url == nil ? "" : saml_metadata_url
|
5611
|
+
@scim_provider = scim_provider == nil ? "" : scim_provider
|
5612
|
+
@sensitive_label = sensitive_label == nil ? "" : sensitive_label
|
5613
|
+
@session_timeout = session_timeout == nil ? nil : session_timeout
|
5614
|
+
@session_timeout_enabled = session_timeout_enabled == nil ? false : session_timeout_enabled
|
5615
|
+
@ssh_certificate_authority_public_key = ssh_certificate_authority_public_key == nil ? "" : ssh_certificate_authority_public_key
|
5616
|
+
@ssh_certificate_authority_updated_at = ssh_certificate_authority_updated_at == nil ? nil : ssh_certificate_authority_updated_at
|
5617
|
+
@updated_at = updated_at == nil ? nil : updated_at
|
5618
|
+
@websites_subdomain = websites_subdomain == nil ? "" : websites_subdomain
|
5619
|
+
end
|
5620
|
+
|
5621
|
+
def to_json(options = {})
|
5622
|
+
hash = {}
|
5623
|
+
self.instance_variables.each do |var|
|
5624
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5625
|
+
end
|
5626
|
+
hash.to_json
|
5627
|
+
end
|
5628
|
+
end
|
5629
|
+
|
5630
|
+
# OrganizationHistoryRecord records the state of an Organization at a given point in time,
|
5631
|
+
# where every change to an Organization produces an OrganizationHistoryRecord.
|
5632
|
+
class OrganizationHistoryRecord
|
5633
|
+
# The unique identifier of the Activity that produced this change to the Organization.
|
5634
|
+
# May be empty for some system-initiated organization updates.
|
5635
|
+
attr_accessor :activity_id
|
5636
|
+
# The complete Organization state at this time.
|
5637
|
+
attr_accessor :organization
|
5638
|
+
# The time at which the Organization state was recorded.
|
5639
|
+
attr_accessor :timestamp
|
5640
|
+
|
5641
|
+
def initialize(
|
5642
|
+
activity_id: nil,
|
5643
|
+
organization: nil,
|
5644
|
+
timestamp: nil
|
5645
|
+
)
|
5646
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
5647
|
+
@organization = organization == nil ? nil : organization
|
5648
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
5649
|
+
end
|
5650
|
+
|
5651
|
+
def to_json(options = {})
|
5652
|
+
hash = {}
|
5653
|
+
self.instance_variables.each do |var|
|
5654
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5655
|
+
end
|
5656
|
+
hash.to_json
|
5657
|
+
end
|
5658
|
+
end
|
5659
|
+
|
4946
5660
|
class Postgres
|
4947
5661
|
# Bind interface
|
4948
5662
|
attr_accessor :bind_interface
|
@@ -4968,6 +5682,8 @@ module SDM
|
|
4968
5682
|
attr_accessor :port_override
|
4969
5683
|
# ID of the secret store containing credentials for this resource, if any.
|
4970
5684
|
attr_accessor :secret_store_id
|
5685
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
5686
|
+
attr_accessor :subdomain
|
4971
5687
|
# Tags is a map of key, value pairs.
|
4972
5688
|
attr_accessor :tags
|
4973
5689
|
|
@@ -4986,6 +5702,7 @@ module SDM
|
|
4986
5702
|
port: nil,
|
4987
5703
|
port_override: nil,
|
4988
5704
|
secret_store_id: nil,
|
5705
|
+
subdomain: nil,
|
4989
5706
|
tags: nil,
|
4990
5707
|
username: nil
|
4991
5708
|
)
|
@@ -5001,6 +5718,7 @@ module SDM
|
|
5001
5718
|
@port = port == nil ? 0 : port
|
5002
5719
|
@port_override = port_override == nil ? 0 : port_override
|
5003
5720
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5721
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
5004
5722
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
5005
5723
|
@username = username == nil ? "" : username
|
5006
5724
|
end
|
@@ -5037,6 +5755,8 @@ module SDM
|
|
5037
5755
|
attr_accessor :port_override
|
5038
5756
|
# ID of the secret store containing credentials for this resource, if any.
|
5039
5757
|
attr_accessor :secret_store_id
|
5758
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
5759
|
+
attr_accessor :subdomain
|
5040
5760
|
# Tags is a map of key, value pairs.
|
5041
5761
|
attr_accessor :tags
|
5042
5762
|
|
@@ -5056,6 +5776,7 @@ module SDM
|
|
5056
5776
|
port: nil,
|
5057
5777
|
port_override: nil,
|
5058
5778
|
secret_store_id: nil,
|
5779
|
+
subdomain: nil,
|
5059
5780
|
tags: nil,
|
5060
5781
|
tls_required: nil,
|
5061
5782
|
username: nil
|
@@ -5071,6 +5792,7 @@ module SDM
|
|
5071
5792
|
@port = port == nil ? 0 : port
|
5072
5793
|
@port_override = port_override == nil ? 0 : port_override
|
5073
5794
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5795
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
5074
5796
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
5075
5797
|
@tls_required = tls_required == nil ? false : tls_required
|
5076
5798
|
@username = username == nil ? "" : username
|
@@ -5085,6 +5807,115 @@ module SDM
|
|
5085
5807
|
end
|
5086
5808
|
end
|
5087
5809
|
|
5810
|
+
# A Query is a record of a single client request to a resource, such as an SQL query.
|
5811
|
+
class Query
|
5812
|
+
# The email of the account performing this query, at the time the query was executed.
|
5813
|
+
# If the account email is later changed, that change will not be reflected via this field.
|
5814
|
+
attr_accessor :account_email
|
5815
|
+
# The given name of the account performing this query, at the time the query was executed.
|
5816
|
+
# If the account is later renamed, that change will not be reflected via this field.
|
5817
|
+
attr_accessor :account_first_name
|
5818
|
+
# Unique identifier of the Account that performed the Query.
|
5819
|
+
attr_accessor :account_id
|
5820
|
+
# The family name of the account performing this query, at the time the query was executed.
|
5821
|
+
# If the account is later renamed, that change will not be reflected via this field.
|
5822
|
+
attr_accessor :account_last_name
|
5823
|
+
# The tags of the account accessed, at the time the query was executed. If the account
|
5824
|
+
# tags are later changed, that change will not be reflected via this field.
|
5825
|
+
attr_accessor :account_tags
|
5826
|
+
# The duration of the Query.
|
5827
|
+
attr_accessor :duration
|
5828
|
+
# The unique ID of the node through which the Resource was accessed.
|
5829
|
+
attr_accessor :egress_node_id
|
5830
|
+
# Indicates that the body of the Query is encrypted.
|
5831
|
+
attr_accessor :encrypted
|
5832
|
+
# Unique identifier of the Query.
|
5833
|
+
attr_accessor :id
|
5834
|
+
# The captured content of the Query.
|
5835
|
+
attr_accessor :query_body
|
5836
|
+
# The general category of Resource against which Query was performed, e.g. "web" or "cloud".
|
5837
|
+
attr_accessor :query_category
|
5838
|
+
# The hash of the body of the Query.
|
5839
|
+
attr_accessor :query_hash
|
5840
|
+
# The symmetric key used to encrypt the body of this Query and its replay if replayable.
|
5841
|
+
# If the Query is encrypted, this field contains an encrypted symmetric key in base64 encoding.
|
5842
|
+
# This key must be decrypted with the organization's private key to obtain the symmetric key needed to decrypt the body.
|
5843
|
+
# If the Query is not encrypted, this field is empty.
|
5844
|
+
attr_accessor :query_key
|
5845
|
+
# The number of records returned by the Query, for a database Resource.
|
5846
|
+
attr_accessor :record_count
|
5847
|
+
# The username of the RemoteIdentity used to access the Resource.
|
5848
|
+
attr_accessor :remote_identity_username
|
5849
|
+
# Indicates that the Query is replayable, e.g. for some SSH or K8s sessions.
|
5850
|
+
attr_accessor :replayable
|
5851
|
+
# Unique identifier of the Resource against which the Query was performed.
|
5852
|
+
attr_accessor :resource_id
|
5853
|
+
# The name of the resource accessed, at the time the query was executed. If the resource
|
5854
|
+
# is later renamed, that change will not be reflected via this field.
|
5855
|
+
attr_accessor :resource_name
|
5856
|
+
# The tags of the resource accessed, at the time the query was executed. If the resource
|
5857
|
+
# tags are later changed, that change will not be reflected via this field.
|
5858
|
+
attr_accessor :resource_tags
|
5859
|
+
# The specific type of Resource against which the Query was performed, e.g. "ssh" or "postgres".
|
5860
|
+
attr_accessor :resource_type
|
5861
|
+
# The time at which the Query was performed.
|
5862
|
+
attr_accessor :timestamp
|
5863
|
+
|
5864
|
+
def initialize(
|
5865
|
+
account_email: nil,
|
5866
|
+
account_first_name: nil,
|
5867
|
+
account_id: nil,
|
5868
|
+
account_last_name: nil,
|
5869
|
+
account_tags: nil,
|
5870
|
+
duration: nil,
|
5871
|
+
egress_node_id: nil,
|
5872
|
+
encrypted: nil,
|
5873
|
+
id: nil,
|
5874
|
+
query_body: nil,
|
5875
|
+
query_category: nil,
|
5876
|
+
query_hash: nil,
|
5877
|
+
query_key: nil,
|
5878
|
+
record_count: nil,
|
5879
|
+
remote_identity_username: nil,
|
5880
|
+
replayable: nil,
|
5881
|
+
resource_id: nil,
|
5882
|
+
resource_name: nil,
|
5883
|
+
resource_tags: nil,
|
5884
|
+
resource_type: nil,
|
5885
|
+
timestamp: nil
|
5886
|
+
)
|
5887
|
+
@account_email = account_email == nil ? "" : account_email
|
5888
|
+
@account_first_name = account_first_name == nil ? "" : account_first_name
|
5889
|
+
@account_id = account_id == nil ? "" : account_id
|
5890
|
+
@account_last_name = account_last_name == nil ? "" : account_last_name
|
5891
|
+
@account_tags = account_tags == nil ? SDM::_porcelain_zero_value_tags() : account_tags
|
5892
|
+
@duration = duration == nil ? nil : duration
|
5893
|
+
@egress_node_id = egress_node_id == nil ? "" : egress_node_id
|
5894
|
+
@encrypted = encrypted == nil ? false : encrypted
|
5895
|
+
@id = id == nil ? "" : id
|
5896
|
+
@query_body = query_body == nil ? "" : query_body
|
5897
|
+
@query_category = query_category == nil ? "" : query_category
|
5898
|
+
@query_hash = query_hash == nil ? "" : query_hash
|
5899
|
+
@query_key = query_key == nil ? "" : query_key
|
5900
|
+
@record_count = record_count == nil ? 0 : record_count
|
5901
|
+
@remote_identity_username = remote_identity_username == nil ? "" : remote_identity_username
|
5902
|
+
@replayable = replayable == nil ? false : replayable
|
5903
|
+
@resource_id = resource_id == nil ? "" : resource_id
|
5904
|
+
@resource_name = resource_name == nil ? "" : resource_name
|
5905
|
+
@resource_tags = resource_tags == nil ? SDM::_porcelain_zero_value_tags() : resource_tags
|
5906
|
+
@resource_type = resource_type == nil ? "" : resource_type
|
5907
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
5908
|
+
end
|
5909
|
+
|
5910
|
+
def to_json(options = {})
|
5911
|
+
hash = {}
|
5912
|
+
self.instance_variables.each do |var|
|
5913
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
5914
|
+
end
|
5915
|
+
hash.to_json
|
5916
|
+
end
|
5917
|
+
end
|
5918
|
+
|
5088
5919
|
class RDP
|
5089
5920
|
# Bind interface
|
5090
5921
|
attr_accessor :bind_interface
|
@@ -5108,6 +5939,8 @@ module SDM
|
|
5108
5939
|
attr_accessor :port_override
|
5109
5940
|
# ID of the secret store containing credentials for this resource, if any.
|
5110
5941
|
attr_accessor :secret_store_id
|
5942
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
5943
|
+
attr_accessor :subdomain
|
5111
5944
|
# Tags is a map of key, value pairs.
|
5112
5945
|
attr_accessor :tags
|
5113
5946
|
|
@@ -5125,6 +5958,7 @@ module SDM
|
|
5125
5958
|
port: nil,
|
5126
5959
|
port_override: nil,
|
5127
5960
|
secret_store_id: nil,
|
5961
|
+
subdomain: nil,
|
5128
5962
|
tags: nil,
|
5129
5963
|
username: nil
|
5130
5964
|
)
|
@@ -5139,6 +5973,7 @@ module SDM
|
|
5139
5973
|
@port = port == nil ? 0 : port
|
5140
5974
|
@port_override = port_override == nil ? 0 : port_override
|
5141
5975
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
5976
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
5142
5977
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
5143
5978
|
@username = username == nil ? "" : username
|
5144
5979
|
end
|
@@ -5173,6 +6008,8 @@ module SDM
|
|
5173
6008
|
attr_accessor :port_override
|
5174
6009
|
# ID of the secret store containing credentials for this resource, if any.
|
5175
6010
|
attr_accessor :secret_store_id
|
6011
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
6012
|
+
attr_accessor :subdomain
|
5176
6013
|
# Tags is a map of key, value pairs.
|
5177
6014
|
attr_accessor :tags
|
5178
6015
|
|
@@ -5191,6 +6028,7 @@ module SDM
|
|
5191
6028
|
port: nil,
|
5192
6029
|
port_override: nil,
|
5193
6030
|
secret_store_id: nil,
|
6031
|
+
subdomain: nil,
|
5194
6032
|
tags: nil,
|
5195
6033
|
tls_required: nil,
|
5196
6034
|
username: nil
|
@@ -5205,6 +6043,7 @@ module SDM
|
|
5205
6043
|
@port = port == nil ? 0 : port
|
5206
6044
|
@port_override = port_override == nil ? 0 : port_override
|
5207
6045
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6046
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
5208
6047
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
5209
6048
|
@tls_required = tls_required == nil ? false : tls_required
|
5210
6049
|
@username = username == nil ? "" : username
|
@@ -5273,6 +6112,8 @@ module SDM
|
|
5273
6112
|
attr_accessor :port_override
|
5274
6113
|
# ID of the secret store containing credentials for this resource, if any.
|
5275
6114
|
attr_accessor :secret_store_id
|
6115
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
6116
|
+
attr_accessor :subdomain
|
5276
6117
|
# Tags is a map of key, value pairs.
|
5277
6118
|
attr_accessor :tags
|
5278
6119
|
|
@@ -5286,6 +6127,7 @@ module SDM
|
|
5286
6127
|
port: nil,
|
5287
6128
|
port_override: nil,
|
5288
6129
|
secret_store_id: nil,
|
6130
|
+
subdomain: nil,
|
5289
6131
|
tags: nil
|
5290
6132
|
)
|
5291
6133
|
@bind_interface = bind_interface == nil ? "" : bind_interface
|
@@ -5297,6 +6139,7 @@ module SDM
|
|
5297
6139
|
@port = port == nil ? 0 : port
|
5298
6140
|
@port_override = port_override == nil ? 0 : port_override
|
5299
6141
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6142
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
5300
6143
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
5301
6144
|
end
|
5302
6145
|
|
@@ -5330,6 +6173,8 @@ module SDM
|
|
5330
6173
|
attr_accessor :port_override
|
5331
6174
|
# ID of the secret store containing credentials for this resource, if any.
|
5332
6175
|
attr_accessor :secret_store_id
|
6176
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
6177
|
+
attr_accessor :subdomain
|
5333
6178
|
# Tags is a map of key, value pairs.
|
5334
6179
|
attr_accessor :tags
|
5335
6180
|
|
@@ -5348,6 +6193,7 @@ module SDM
|
|
5348
6193
|
port: nil,
|
5349
6194
|
port_override: nil,
|
5350
6195
|
secret_store_id: nil,
|
6196
|
+
subdomain: nil,
|
5351
6197
|
tags: nil,
|
5352
6198
|
tls_required: nil,
|
5353
6199
|
username: nil
|
@@ -5362,6 +6208,7 @@ module SDM
|
|
5362
6208
|
@port = port == nil ? 0 : port
|
5363
6209
|
@port_override = port_override == nil ? 0 : port_override
|
5364
6210
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6211
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
5365
6212
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
5366
6213
|
@tls_required = tls_required == nil ? false : tls_required
|
5367
6214
|
@username = username == nil ? "" : username
|
@@ -5401,6 +6248,8 @@ module SDM
|
|
5401
6248
|
attr_accessor :port_override
|
5402
6249
|
# ID of the secret store containing credentials for this resource, if any.
|
5403
6250
|
attr_accessor :secret_store_id
|
6251
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
6252
|
+
attr_accessor :subdomain
|
5404
6253
|
# Tags is a map of key, value pairs.
|
5405
6254
|
attr_accessor :tags
|
5406
6255
|
|
@@ -5419,6 +6268,7 @@ module SDM
|
|
5419
6268
|
port: nil,
|
5420
6269
|
port_override: nil,
|
5421
6270
|
secret_store_id: nil,
|
6271
|
+
subdomain: nil,
|
5422
6272
|
tags: nil,
|
5423
6273
|
username: nil
|
5424
6274
|
)
|
@@ -5434,6 +6284,7 @@ module SDM
|
|
5434
6284
|
@port = port == nil ? 0 : port
|
5435
6285
|
@port_override = port_override == nil ? 0 : port_override
|
5436
6286
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
6287
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
5437
6288
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
5438
6289
|
@username = username == nil ? "" : username
|
5439
6290
|
end
|
@@ -5666,6 +6517,76 @@ module SDM
|
|
5666
6517
|
end
|
5667
6518
|
end
|
5668
6519
|
|
6520
|
+
# RemoteIdentityGroupHistory records the state of a RemoteIdentityGroup at a given point in time,
|
6521
|
+
# where every change (create, update and delete) to a RemoteIdentityGroup produces an
|
6522
|
+
# RemoteIdentityGroupHistory record.
|
6523
|
+
class RemoteIdentityGroupHistory
|
6524
|
+
# The unique identifier of the Activity that produced this change to the RemoteIdentityGroup.
|
6525
|
+
# May be empty for some system-initiated updates.
|
6526
|
+
attr_accessor :activity_id
|
6527
|
+
# If this RemoteIdentityGroup was deleted, the time it was deleted.
|
6528
|
+
attr_accessor :deleted_at
|
6529
|
+
# The complete RemoteIdentityGroup state at this time.
|
6530
|
+
attr_accessor :remote_identity_group
|
6531
|
+
# The time at which the RemoteIdentityGroup state was recorded.
|
6532
|
+
attr_accessor :timestamp
|
6533
|
+
|
6534
|
+
def initialize(
|
6535
|
+
activity_id: nil,
|
6536
|
+
deleted_at: nil,
|
6537
|
+
remote_identity_group: nil,
|
6538
|
+
timestamp: nil
|
6539
|
+
)
|
6540
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
6541
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
6542
|
+
@remote_identity_group = remote_identity_group == nil ? nil : remote_identity_group
|
6543
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
6544
|
+
end
|
6545
|
+
|
6546
|
+
def to_json(options = {})
|
6547
|
+
hash = {}
|
6548
|
+
self.instance_variables.each do |var|
|
6549
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
6550
|
+
end
|
6551
|
+
hash.to_json
|
6552
|
+
end
|
6553
|
+
end
|
6554
|
+
|
6555
|
+
# RemoteIdentityHistory records the state of a RemoteIdentity at a given point in time,
|
6556
|
+
# where every change (create, update and delete) to a RemoteIdentity produces an
|
6557
|
+
# RemoteIdentityHistory record.
|
6558
|
+
class RemoteIdentityHistory
|
6559
|
+
# The unique identifier of the Activity that produced this change to the RemoteIdentity.
|
6560
|
+
# May be empty for some system-initiated updates.
|
6561
|
+
attr_accessor :activity_id
|
6562
|
+
# If this RemoteIdentity was deleted, the time it was deleted.
|
6563
|
+
attr_accessor :deleted_at
|
6564
|
+
# The complete RemoteIdentity state at this time.
|
6565
|
+
attr_accessor :remote_identity
|
6566
|
+
# The time at which the RemoteIdentity state was recorded.
|
6567
|
+
attr_accessor :timestamp
|
6568
|
+
|
6569
|
+
def initialize(
|
6570
|
+
activity_id: nil,
|
6571
|
+
deleted_at: nil,
|
6572
|
+
remote_identity: nil,
|
6573
|
+
timestamp: nil
|
6574
|
+
)
|
6575
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
6576
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
6577
|
+
@remote_identity = remote_identity == nil ? nil : remote_identity
|
6578
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
6579
|
+
end
|
6580
|
+
|
6581
|
+
def to_json(options = {})
|
6582
|
+
hash = {}
|
6583
|
+
self.instance_variables.each do |var|
|
6584
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
6585
|
+
end
|
6586
|
+
hash.to_json
|
6587
|
+
end
|
6588
|
+
end
|
6589
|
+
|
5669
6590
|
# RemoteIdentityUpdateResponse returns the fields of a RemoteIdentity after it has been updated by
|
5670
6591
|
# a RemoteIdentityUpdateRequest.
|
5671
6592
|
class RemoteIdentityUpdateResponse
|
@@ -5695,6 +6616,56 @@ module SDM
|
|
5695
6616
|
end
|
5696
6617
|
end
|
5697
6618
|
|
6619
|
+
# A ReplayChunk represents a single "chunk" of data from the query replay.
|
6620
|
+
class ReplayChunk
|
6621
|
+
# The raw data of the ReplayChunk. The data is encrypted if the associated Query is encrypted.
|
6622
|
+
attr_accessor :data
|
6623
|
+
# The list of events of the ReplayChunk. If the Query is encrypted, this field is always empty
|
6624
|
+
# and the events can be obtained by decrypting the data using the QueryKey returned with the Query.
|
6625
|
+
attr_accessor :events
|
6626
|
+
|
6627
|
+
def initialize(
|
6628
|
+
data: nil,
|
6629
|
+
events: nil
|
6630
|
+
)
|
6631
|
+
@data = data == nil ? "" : data
|
6632
|
+
@events = events == nil ? [] : events
|
6633
|
+
end
|
6634
|
+
|
6635
|
+
def to_json(options = {})
|
6636
|
+
hash = {}
|
6637
|
+
self.instance_variables.each do |var|
|
6638
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
6639
|
+
end
|
6640
|
+
hash.to_json
|
6641
|
+
end
|
6642
|
+
end
|
6643
|
+
|
6644
|
+
# A ReplayChunkEvent represents a single event within a query replay.
|
6645
|
+
# The timing information included in each ReplayChunkEvent may be used to replay a session in real time.
|
6646
|
+
class ReplayChunkEvent
|
6647
|
+
# The raw data of the ReplayChunkEvent.
|
6648
|
+
attr_accessor :data
|
6649
|
+
# The time duration over which the data in this ReplayChunkEvent was transferred.
|
6650
|
+
attr_accessor :duration
|
6651
|
+
|
6652
|
+
def initialize(
|
6653
|
+
data: nil,
|
6654
|
+
duration: nil
|
6655
|
+
)
|
6656
|
+
@data = data == nil ? "" : data
|
6657
|
+
@duration = duration == nil ? nil : duration
|
6658
|
+
end
|
6659
|
+
|
6660
|
+
def to_json(options = {})
|
6661
|
+
hash = {}
|
6662
|
+
self.instance_variables.each do |var|
|
6663
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
6664
|
+
end
|
6665
|
+
hash.to_json
|
6666
|
+
end
|
6667
|
+
end
|
6668
|
+
|
5698
6669
|
# ResourceCreateResponse reports how the Resources were created in the system.
|
5699
6670
|
class ResourceCreateResponse
|
5700
6671
|
# Reserved for future use.
|
@@ -5775,6 +6746,41 @@ module SDM
|
|
5775
6746
|
end
|
5776
6747
|
end
|
5777
6748
|
|
6749
|
+
# ResourceHistory records the state of a Resource at a given point in time,
|
6750
|
+
# where every change (create, update and delete) to a Resource produces an
|
6751
|
+
# ResourceHistory record.
|
6752
|
+
class ResourceHistory
|
6753
|
+
# The unique identifier of the Activity that produced this change to the Resource.
|
6754
|
+
# May be empty for some system-initiated updates.
|
6755
|
+
attr_accessor :activity_id
|
6756
|
+
# If this Resource was deleted, the time it was deleted.
|
6757
|
+
attr_accessor :deleted_at
|
6758
|
+
# The complete Resource state at this time.
|
6759
|
+
attr_accessor :resource
|
6760
|
+
# The time at which the Resource state was recorded.
|
6761
|
+
attr_accessor :timestamp
|
6762
|
+
|
6763
|
+
def initialize(
|
6764
|
+
activity_id: nil,
|
6765
|
+
deleted_at: nil,
|
6766
|
+
resource: nil,
|
6767
|
+
timestamp: nil
|
6768
|
+
)
|
6769
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
6770
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
6771
|
+
@resource = resource == nil ? nil : resource
|
6772
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
6773
|
+
end
|
6774
|
+
|
6775
|
+
def to_json(options = {})
|
6776
|
+
hash = {}
|
6777
|
+
self.instance_variables.each do |var|
|
6778
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
6779
|
+
end
|
6780
|
+
hash.to_json
|
6781
|
+
end
|
6782
|
+
end
|
6783
|
+
|
5778
6784
|
# ResourceUpdateResponse returns the fields of a Resource after it has been updated by
|
5779
6785
|
# a ResourceUpdateRequest.
|
5780
6786
|
class ResourceUpdateResponse
|
@@ -5923,6 +6929,105 @@ module SDM
|
|
5923
6929
|
end
|
5924
6930
|
end
|
5925
6931
|
|
6932
|
+
# RoleHistory records the state of a Role at a given point in time,
|
6933
|
+
# where every change (create, update and delete) to a Role produces an
|
6934
|
+
# RoleHistory record.
|
6935
|
+
class RoleHistory
|
6936
|
+
# The unique identifier of the Activity that produced this change to the Role.
|
6937
|
+
# May be empty for some system-initiated updates.
|
6938
|
+
attr_accessor :activity_id
|
6939
|
+
# If this Role was deleted, the time it was deleted.
|
6940
|
+
attr_accessor :deleted_at
|
6941
|
+
# The complete Role state at this time.
|
6942
|
+
attr_accessor :role
|
6943
|
+
# The time at which the Role state was recorded.
|
6944
|
+
attr_accessor :timestamp
|
6945
|
+
|
6946
|
+
def initialize(
|
6947
|
+
activity_id: nil,
|
6948
|
+
deleted_at: nil,
|
6949
|
+
role: nil,
|
6950
|
+
timestamp: nil
|
6951
|
+
)
|
6952
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
6953
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
6954
|
+
@role = role == nil ? nil : role
|
6955
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
6956
|
+
end
|
6957
|
+
|
6958
|
+
def to_json(options = {})
|
6959
|
+
hash = {}
|
6960
|
+
self.instance_variables.each do |var|
|
6961
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
6962
|
+
end
|
6963
|
+
hash.to_json
|
6964
|
+
end
|
6965
|
+
end
|
6966
|
+
|
6967
|
+
# RoleResource represents an individual access grant of a Role to a Resource.
|
6968
|
+
class RoleResource
|
6969
|
+
# The most recent time at which access was granted. If access was granted,
|
6970
|
+
# revoked, and granted again, this will reflect the later time.
|
6971
|
+
attr_accessor :granted_at
|
6972
|
+
# The unique identifier of the Resource to which access is granted.
|
6973
|
+
attr_accessor :resource_id
|
6974
|
+
# The unique identifier of the Role to which access is granted.
|
6975
|
+
attr_accessor :role_id
|
6976
|
+
|
6977
|
+
def initialize(
|
6978
|
+
granted_at: nil,
|
6979
|
+
resource_id: nil,
|
6980
|
+
role_id: nil
|
6981
|
+
)
|
6982
|
+
@granted_at = granted_at == nil ? nil : granted_at
|
6983
|
+
@resource_id = resource_id == nil ? "" : resource_id
|
6984
|
+
@role_id = role_id == nil ? "" : role_id
|
6985
|
+
end
|
6986
|
+
|
6987
|
+
def to_json(options = {})
|
6988
|
+
hash = {}
|
6989
|
+
self.instance_variables.each do |var|
|
6990
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
6991
|
+
end
|
6992
|
+
hash.to_json
|
6993
|
+
end
|
6994
|
+
end
|
6995
|
+
|
6996
|
+
# RoleResourceHistory records the state of a RoleResource at a given point in time,
|
6997
|
+
# where every change (create or delete) to a RoleResource produces an
|
6998
|
+
# RoleResourceHistory record.
|
6999
|
+
class RoleResourceHistory
|
7000
|
+
# The unique identifier of the Activity that produced this change to the RoleResource.
|
7001
|
+
# May be empty for some system-initiated updates.
|
7002
|
+
attr_accessor :activity_id
|
7003
|
+
# If this RoleResource was deleted, the time it was deleted.
|
7004
|
+
attr_accessor :deleted_at
|
7005
|
+
# The complete RoleResource state at this time.
|
7006
|
+
attr_accessor :role_resource
|
7007
|
+
# The time at which the RoleResource state was recorded.
|
7008
|
+
attr_accessor :timestamp
|
7009
|
+
|
7010
|
+
def initialize(
|
7011
|
+
activity_id: nil,
|
7012
|
+
deleted_at: nil,
|
7013
|
+
role_resource: nil,
|
7014
|
+
timestamp: nil
|
7015
|
+
)
|
7016
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
7017
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
7018
|
+
@role_resource = role_resource == nil ? nil : role_resource
|
7019
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
7020
|
+
end
|
7021
|
+
|
7022
|
+
def to_json(options = {})
|
7023
|
+
hash = {}
|
7024
|
+
self.instance_variables.each do |var|
|
7025
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
7026
|
+
end
|
7027
|
+
hash.to_json
|
7028
|
+
end
|
7029
|
+
end
|
7030
|
+
|
5926
7031
|
# RoleUpdateResponse returns the fields of a Role after it has been updated by
|
5927
7032
|
# a RoleUpdateRequest.
|
5928
7033
|
class RoleUpdateResponse
|
@@ -5979,6 +7084,8 @@ module SDM
|
|
5979
7084
|
attr_accessor :schema
|
5980
7085
|
# ID of the secret store containing credentials for this resource, if any.
|
5981
7086
|
attr_accessor :secret_store_id
|
7087
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
7088
|
+
attr_accessor :subdomain
|
5982
7089
|
# Tags is a map of key, value pairs.
|
5983
7090
|
attr_accessor :tags
|
5984
7091
|
|
@@ -5998,6 +7105,7 @@ module SDM
|
|
5998
7105
|
port_override: nil,
|
5999
7106
|
schema: nil,
|
6000
7107
|
secret_store_id: nil,
|
7108
|
+
subdomain: nil,
|
6001
7109
|
tags: nil,
|
6002
7110
|
username: nil
|
6003
7111
|
)
|
@@ -6014,6 +7122,7 @@ module SDM
|
|
6014
7122
|
@port_override = port_override == nil ? 0 : port_override
|
6015
7123
|
@schema = schema == nil ? "" : schema
|
6016
7124
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7125
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
6017
7126
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
6018
7127
|
@username = username == nil ? "" : username
|
6019
7128
|
end
|
@@ -6053,6 +7162,8 @@ module SDM
|
|
6053
7162
|
attr_accessor :public_key
|
6054
7163
|
# ID of the secret store containing credentials for this resource, if any.
|
6055
7164
|
attr_accessor :secret_store_id
|
7165
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
7166
|
+
attr_accessor :subdomain
|
6056
7167
|
# Tags is a map of key, value pairs.
|
6057
7168
|
attr_accessor :tags
|
6058
7169
|
|
@@ -6072,6 +7183,7 @@ module SDM
|
|
6072
7183
|
port_override: nil,
|
6073
7184
|
public_key: nil,
|
6074
7185
|
secret_store_id: nil,
|
7186
|
+
subdomain: nil,
|
6075
7187
|
tags: nil,
|
6076
7188
|
username: nil
|
6077
7189
|
)
|
@@ -6088,6 +7200,7 @@ module SDM
|
|
6088
7200
|
@port_override = port_override == nil ? 0 : port_override
|
6089
7201
|
@public_key = public_key == nil ? "" : public_key
|
6090
7202
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7203
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
6091
7204
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
6092
7205
|
@username = username == nil ? "" : username
|
6093
7206
|
end
|
@@ -6129,6 +7242,8 @@ module SDM
|
|
6129
7242
|
attr_accessor :remote_identity_healthcheck_username
|
6130
7243
|
# ID of the secret store containing credentials for this resource, if any.
|
6131
7244
|
attr_accessor :secret_store_id
|
7245
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
7246
|
+
attr_accessor :subdomain
|
6132
7247
|
# Tags is a map of key, value pairs.
|
6133
7248
|
attr_accessor :tags
|
6134
7249
|
|
@@ -6149,6 +7264,7 @@ module SDM
|
|
6149
7264
|
remote_identity_group_id: nil,
|
6150
7265
|
remote_identity_healthcheck_username: nil,
|
6151
7266
|
secret_store_id: nil,
|
7267
|
+
subdomain: nil,
|
6152
7268
|
tags: nil,
|
6153
7269
|
username: nil
|
6154
7270
|
)
|
@@ -6166,6 +7282,7 @@ module SDM
|
|
6166
7282
|
@remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
|
6167
7283
|
@remote_identity_healthcheck_username = remote_identity_healthcheck_username == nil ? "" : remote_identity_healthcheck_username
|
6168
7284
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7285
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
6169
7286
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
6170
7287
|
@username = username == nil ? "" : username
|
6171
7288
|
end
|
@@ -6203,6 +7320,8 @@ module SDM
|
|
6203
7320
|
attr_accessor :private_key
|
6204
7321
|
# ID of the secret store containing credentials for this resource, if any.
|
6205
7322
|
attr_accessor :secret_store_id
|
7323
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
7324
|
+
attr_accessor :subdomain
|
6206
7325
|
# Tags is a map of key, value pairs.
|
6207
7326
|
attr_accessor :tags
|
6208
7327
|
|
@@ -6221,6 +7340,7 @@ module SDM
|
|
6221
7340
|
port_override: nil,
|
6222
7341
|
private_key: nil,
|
6223
7342
|
secret_store_id: nil,
|
7343
|
+
subdomain: nil,
|
6224
7344
|
tags: nil,
|
6225
7345
|
username: nil
|
6226
7346
|
)
|
@@ -6236,6 +7356,7 @@ module SDM
|
|
6236
7356
|
@port_override = port_override == nil ? 0 : port_override
|
6237
7357
|
@private_key = private_key == nil ? "" : private_key
|
6238
7358
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7359
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
6239
7360
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
6240
7361
|
@username = username == nil ? "" : username
|
6241
7362
|
end
|
@@ -6329,6 +7450,41 @@ module SDM
|
|
6329
7450
|
end
|
6330
7451
|
end
|
6331
7452
|
|
7453
|
+
# SecretStoreHistory records the state of a SecretStore at a given point in time,
|
7454
|
+
# where every change (create, update and delete) to a SecretStore produces an
|
7455
|
+
# SecretStoreHistory record.
|
7456
|
+
class SecretStoreHistory
|
7457
|
+
# The unique identifier of the Activity that produced this change to the SecretStore.
|
7458
|
+
# May be empty for some system-initiated updates.
|
7459
|
+
attr_accessor :activity_id
|
7460
|
+
# If this SecretStore was deleted, the time it was deleted.
|
7461
|
+
attr_accessor :deleted_at
|
7462
|
+
# The complete SecretStore state at this time.
|
7463
|
+
attr_accessor :secret_store
|
7464
|
+
# The time at which the SecretStore state was recorded.
|
7465
|
+
attr_accessor :timestamp
|
7466
|
+
|
7467
|
+
def initialize(
|
7468
|
+
activity_id: nil,
|
7469
|
+
deleted_at: nil,
|
7470
|
+
secret_store: nil,
|
7471
|
+
timestamp: nil
|
7472
|
+
)
|
7473
|
+
@activity_id = activity_id == nil ? "" : activity_id
|
7474
|
+
@deleted_at = deleted_at == nil ? nil : deleted_at
|
7475
|
+
@secret_store = secret_store == nil ? nil : secret_store
|
7476
|
+
@timestamp = timestamp == nil ? nil : timestamp
|
7477
|
+
end
|
7478
|
+
|
7479
|
+
def to_json(options = {})
|
7480
|
+
hash = {}
|
7481
|
+
self.instance_variables.each do |var|
|
7482
|
+
hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
|
7483
|
+
end
|
7484
|
+
hash.to_json
|
7485
|
+
end
|
7486
|
+
end
|
7487
|
+
|
6332
7488
|
# SecretStoreUpdateResponse returns the fields of a SecretStore after it has been updated by
|
6333
7489
|
# a SecretStoreUpdateRequest.
|
6334
7490
|
class SecretStoreUpdateResponse
|
@@ -6414,6 +7570,8 @@ module SDM
|
|
6414
7570
|
attr_accessor :port_override
|
6415
7571
|
# ID of the secret store containing credentials for this resource, if any.
|
6416
7572
|
attr_accessor :secret_store_id
|
7573
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
7574
|
+
attr_accessor :subdomain
|
6417
7575
|
# Tags is a map of key, value pairs.
|
6418
7576
|
attr_accessor :tags
|
6419
7577
|
|
@@ -6431,6 +7589,7 @@ module SDM
|
|
6431
7589
|
port: nil,
|
6432
7590
|
port_override: nil,
|
6433
7591
|
secret_store_id: nil,
|
7592
|
+
subdomain: nil,
|
6434
7593
|
tags: nil,
|
6435
7594
|
username: nil
|
6436
7595
|
)
|
@@ -6445,6 +7604,7 @@ module SDM
|
|
6445
7604
|
@port = port == nil ? 0 : port
|
6446
7605
|
@port_override = port_override == nil ? 0 : port_override
|
6447
7606
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7607
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
6448
7608
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
6449
7609
|
@username = username == nil ? "" : username
|
6450
7610
|
end
|
@@ -6481,6 +7641,8 @@ module SDM
|
|
6481
7641
|
attr_accessor :schema
|
6482
7642
|
# ID of the secret store containing credentials for this resource, if any.
|
6483
7643
|
attr_accessor :secret_store_id
|
7644
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
7645
|
+
attr_accessor :subdomain
|
6484
7646
|
# Tags is a map of key, value pairs.
|
6485
7647
|
attr_accessor :tags
|
6486
7648
|
|
@@ -6498,6 +7660,7 @@ module SDM
|
|
6498
7660
|
port_override: nil,
|
6499
7661
|
schema: nil,
|
6500
7662
|
secret_store_id: nil,
|
7663
|
+
subdomain: nil,
|
6501
7664
|
tags: nil,
|
6502
7665
|
username: nil
|
6503
7666
|
)
|
@@ -6512,6 +7675,7 @@ module SDM
|
|
6512
7675
|
@port_override = port_override == nil ? 0 : port_override
|
6513
7676
|
@schema = schema == nil ? "" : schema
|
6514
7677
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7678
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
6515
7679
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
6516
7680
|
@username = username == nil ? "" : username
|
6517
7681
|
end
|
@@ -6606,6 +7770,8 @@ module SDM
|
|
6606
7770
|
attr_accessor :port_override
|
6607
7771
|
# ID of the secret store containing credentials for this resource, if any.
|
6608
7772
|
attr_accessor :secret_store_id
|
7773
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
7774
|
+
attr_accessor :subdomain
|
6609
7775
|
# Tags is a map of key, value pairs.
|
6610
7776
|
attr_accessor :tags
|
6611
7777
|
|
@@ -6622,6 +7788,7 @@ module SDM
|
|
6622
7788
|
port: nil,
|
6623
7789
|
port_override: nil,
|
6624
7790
|
secret_store_id: nil,
|
7791
|
+
subdomain: nil,
|
6625
7792
|
tags: nil,
|
6626
7793
|
username: nil
|
6627
7794
|
)
|
@@ -6635,6 +7802,7 @@ module SDM
|
|
6635
7802
|
@port = port == nil ? 0 : port
|
6636
7803
|
@port_override = port_override == nil ? 0 : port_override
|
6637
7804
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7805
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
6638
7806
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
6639
7807
|
@username = username == nil ? "" : username
|
6640
7808
|
end
|
@@ -6669,6 +7837,8 @@ module SDM
|
|
6669
7837
|
attr_accessor :port_override
|
6670
7838
|
# ID of the secret store containing credentials for this resource, if any.
|
6671
7839
|
attr_accessor :secret_store_id
|
7840
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
7841
|
+
attr_accessor :subdomain
|
6672
7842
|
# Tags is a map of key, value pairs.
|
6673
7843
|
attr_accessor :tags
|
6674
7844
|
|
@@ -6685,6 +7855,7 @@ module SDM
|
|
6685
7855
|
port: nil,
|
6686
7856
|
port_override: nil,
|
6687
7857
|
secret_store_id: nil,
|
7858
|
+
subdomain: nil,
|
6688
7859
|
tags: nil,
|
6689
7860
|
username: nil
|
6690
7861
|
)
|
@@ -6698,6 +7869,7 @@ module SDM
|
|
6698
7869
|
@port = port == nil ? 0 : port
|
6699
7870
|
@port_override = port_override == nil ? 0 : port_override
|
6700
7871
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7872
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
6701
7873
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
6702
7874
|
@username = username == nil ? "" : username
|
6703
7875
|
end
|
@@ -6754,6 +7926,8 @@ module SDM
|
|
6754
7926
|
attr_accessor :port_override
|
6755
7927
|
# ID of the secret store containing credentials for this resource, if any.
|
6756
7928
|
attr_accessor :secret_store_id
|
7929
|
+
# Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)
|
7930
|
+
attr_accessor :subdomain
|
6757
7931
|
# Tags is a map of key, value pairs.
|
6758
7932
|
attr_accessor :tags
|
6759
7933
|
|
@@ -6770,6 +7944,7 @@ module SDM
|
|
6770
7944
|
port: nil,
|
6771
7945
|
port_override: nil,
|
6772
7946
|
secret_store_id: nil,
|
7947
|
+
subdomain: nil,
|
6773
7948
|
tags: nil,
|
6774
7949
|
username: nil
|
6775
7950
|
)
|
@@ -6783,6 +7958,7 @@ module SDM
|
|
6783
7958
|
@port = port == nil ? 0 : port
|
6784
7959
|
@port_override = port_override == nil ? 0 : port_override
|
6785
7960
|
@secret_store_id = secret_store_id == nil ? "" : secret_store_id
|
7961
|
+
@subdomain = subdomain == nil ? "" : subdomain
|
6786
7962
|
@tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
|
6787
7963
|
@username = username == nil ? "" : username
|
6788
7964
|
end
|