Skip to content

Commit

Permalink
12.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SupportSDM committed Jan 28, 2025
1 parent b68a30b commit 8fd6570
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions lib/grpc/access_requests_pb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
optional :actor_id, :string, 3
optional :type, :string, 4
optional :metadata, :string, 5
optional :time, :message, 6, "google.protobuf.Timestamp"
end
add_message "v1.RequestableResource" do
optional :id, :string, 1
Expand Down
4 changes: 3 additions & 1 deletion lib/grpc/plumbing.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
require_relative "./access_requests_pb"
require_relative "./access_request_events_history_pb"
require_relative "./access_requests_history_pb"
require_relative "./drivers_pb"
require_relative "./account_attachments_pb"
require_relative "./account_attachments_history_pb"
require_relative "./account_grants_pb"
Expand All @@ -41,7 +42,6 @@
require_relative "./approval_workflows_pb"
require_relative "./approval_workflows_history_pb"
require_relative "./control_panel_pb"
require_relative "./drivers_pb"
require_relative "./health_checks_pb"
require_relative "./identity_aliases_pb"
require_relative "./identity_aliases_history_pb"
Expand Down Expand Up @@ -9890,6 +9890,7 @@ def self.convert_query_capture_to_porcelain(plumbing)
porcelain.impersonation_groups = (plumbing.impersonation_groups)
porcelain.impersonation_user = (plumbing.impersonation_user)
porcelain.pod = (plumbing.pod)
porcelain.privilege_groups = (plumbing.privilege_groups)
porcelain.request_body = (plumbing.request_body)
porcelain.request_method = (plumbing.request_method)
porcelain.request_uri = (plumbing.request_uri)
Expand All @@ -9913,6 +9914,7 @@ def self.convert_query_capture_to_plumbing(porcelain)
plumbing.impersonation_groups += (porcelain.impersonation_groups)
plumbing.impersonation_user = (porcelain.impersonation_user)
plumbing.pod = (porcelain.pod)
plumbing.privilege_groups += (porcelain.privilege_groups)
plumbing.request_body = (porcelain.request_body)
plumbing.request_method = (porcelain.request_method)
plumbing.request_uri = (porcelain.request_uri)
Expand Down
1 change: 1 addition & 0 deletions lib/grpc/queries_pb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
optional :request_body, :bytes, 13
optional :impersonation_user, :string, 14
repeated :impersonation_groups, :string, 15
repeated :privilege_groups, :string, 16
end
end
end
Expand Down
4 changes: 4 additions & 0 deletions lib/models/porcelain.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9964,6 +9964,8 @@ class QueryCapture
attr_accessor :impersonation_user
# The target pod of a Kubernetes operation.
attr_accessor :pod
# The additional impersonation groups, as granted by privilege levels, of a Kubernetes operation.
attr_accessor :privilege_groups
# The HTTP request body of a Kubernetes operation.
attr_accessor :request_body
# The HTTP request method of a Kubernetes operation.
Expand All @@ -9986,6 +9988,7 @@ def initialize(
impersonation_groups: nil,
impersonation_user: nil,
pod: nil,
privilege_groups: nil,
request_body: nil,
request_method: nil,
request_uri: nil,
Expand All @@ -10002,6 +10005,7 @@ def initialize(
@impersonation_groups = impersonation_groups == nil ? [] : impersonation_groups
@impersonation_user = impersonation_user == nil ? "" : impersonation_user
@pod = pod == nil ? "" : pod
@privilege_groups = privilege_groups == nil ? [] : privilege_groups
@request_body = request_body == nil ? "" : request_body
@request_method = request_method == nil ? "" : request_method
@request_uri = request_uri == nil ? "" : request_uri
Expand Down
2 changes: 1 addition & 1 deletion lib/strongdm.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Client
DEFAULT_BASE_RETRY_DELAY = 0.0030 # 30 ms
DEFAULT_MAX_RETRY_DELAY = 300 # 300 seconds
API_VERSION = "2024-03-28"
USER_AGENT = "strongdm-sdk-ruby/12.8.0"
USER_AGENT = "strongdm-sdk-ruby/12.9.0"
private_constant :DEFAULT_MAX_RETRIES, :DEFAULT_BASE_RETRY_DELAY, :DEFAULT_MAX_RETRY_DELAY, :API_VERSION, :USER_AGENT

# Creates a new strongDM API client.
Expand Down
2 changes: 1 addition & 1 deletion lib/version
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# limitations under the License.
#
module SDM
VERSION = "12.8.0"
VERSION = "12.9.0"
end
2 changes: 1 addition & 1 deletion lib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# limitations under the License.
#
module SDM
VERSION = "12.8.0"
VERSION = "12.9.0"
end

0 comments on commit 8fd6570

Please sign in to comment.