google-apis-apigee_v1 0.108.0 → 0.109.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 845dc489b097072ea76ac073fb20a83d347ee3b139b58c44efb297ca9317590e
4
- data.tar.gz: ab18fc20589390c07053d04ed76eb6a236b3c13e808bf7e6ff7fb575aab0fab2
3
+ metadata.gz: 39fb08ed6df9b231ff60807103df572863d78bd79f4239d4a8caa3d9d9b0e8d4
4
+ data.tar.gz: 3e783629887c793edd55601f99c8d39fddf884da09b83a82ced48c832643bf2a
5
5
  SHA512:
6
- metadata.gz: 3435cc9e8bd01bfdf16794927824956c4dddac5394aa3195da8df0760bf09e0494d58725f5c45ceeea3f4f4ab7281f6be8f979db2de69f330b7b911ed8ba9b5f
7
- data.tar.gz: 0bb525908e40f9d94b1d230b2f20757b35f2dad7c84e75925f1fbe990e2ae80ab9218d4a7b5121c52c2a2f6c80ae891257bc17ee70b34238253e982e18e3c8ba
6
+ metadata.gz: 62fc671684d84604dc1b591e008f2047b0c80235a3497317f15cd268443d9c318603b2c8a5c30ccb6d18be3aef2186b80907ed6e78f470fc8edc57ee9b31486a
7
+ data.tar.gz: 8d494484fd58516bea494f55b0938d26d14eeee9d345390a06e0f1bf0d9f51be8acf58e02c0fdff5dc8dc7c28e4b6353da8336699ebd267654a3802d76b3c9ed
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.109.0 (2025-06-29)
4
+
5
+ * Regenerated from discovery document revision 20250622
6
+
3
7
  ### v0.108.0 (2025-06-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20250614
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeV1
18
18
  # Version of the google-apis-apigee_v1 gem
19
- GEM_VERSION = "0.108.0"
19
+ GEM_VERSION = "0.109.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250614"
25
+ REVISION = "20250622"
26
26
  end
27
27
  end
28
28
  end
@@ -8618,6 +8618,37 @@ module Google
8618
8618
  execute_or_queue_command(command, &block)
8619
8619
  end
8620
8620
 
8621
+ # Delete a SecurityAction.
8622
+ # @param [String] name
8623
+ # Required. The name of the security monitoring condition to delete. Format: `
8624
+ # organizations/`org`/environment/`env`/securityActions/`security_action``
8625
+ # @param [String] fields
8626
+ # Selector specifying which fields to include in a partial response.
8627
+ # @param [String] quota_user
8628
+ # Available to use for quota purposes for server-side applications. Can be any
8629
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
8630
+ # @param [Google::Apis::RequestOptions] options
8631
+ # Request-specific options
8632
+ #
8633
+ # @yield [result, err] Result & error if block supplied
8634
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleProtobufEmpty] parsed result object
8635
+ # @yieldparam err [StandardError] error object if request failed
8636
+ #
8637
+ # @return [Google::Apis::ApigeeV1::GoogleProtobufEmpty]
8638
+ #
8639
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
8640
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
8641
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
8642
+ def delete_organization_environment_security_action(name, fields: nil, quota_user: nil, options: nil, &block)
8643
+ command = make_simple_command(:delete, 'v1/{+name}', options)
8644
+ command.response_representation = Google::Apis::ApigeeV1::GoogleProtobufEmpty::Representation
8645
+ command.response_class = Google::Apis::ApigeeV1::GoogleProtobufEmpty
8646
+ command.params['name'] = name unless name.nil?
8647
+ command.query['fields'] = fields unless fields.nil?
8648
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
8649
+ execute_or_queue_command(command, &block)
8650
+ end
8651
+
8621
8652
  # Disable a SecurityAction. The `state` of the SecurityAction after disabling is
8622
8653
  # `DISABLED`. `DisableSecurityAction` can be called on SecurityActions in the
8623
8654
  # state `ENABLED`; SecurityActions in a different state (including `DISABLED`)
@@ -8772,6 +8803,47 @@ module Google
8772
8803
  execute_or_queue_command(command, &block)
8773
8804
  end
8774
8805
 
8806
+ # Update a SecurityAction.
8807
+ # @param [String] name
8808
+ # Immutable. This field is ignored during creation as per AIP-133. Please set
8809
+ # the `security_action_id` field in the CreateSecurityActionRequest when
8810
+ # creating a new SecurityAction. Format: organizations/`org`/environments/`env`/
8811
+ # securityActions/`security_action`
8812
+ # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAction] google_cloud_apigee_v1_security_action_object
8813
+ # @param [String] update_mask
8814
+ # Optional. The list of fields to update. Valid fields to update are `
8815
+ # description`, `state`, `allow`, `deny`, and `flag`, `expire_time`, and `ttl`, `
8816
+ # api_proxies`, and `condition_config`.
8817
+ # @param [String] fields
8818
+ # Selector specifying which fields to include in a partial response.
8819
+ # @param [String] quota_user
8820
+ # Available to use for quota purposes for server-side applications. Can be any
8821
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
8822
+ # @param [Google::Apis::RequestOptions] options
8823
+ # Request-specific options
8824
+ #
8825
+ # @yield [result, err] Result & error if block supplied
8826
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAction] parsed result object
8827
+ # @yieldparam err [StandardError] error object if request failed
8828
+ #
8829
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAction]
8830
+ #
8831
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
8832
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
8833
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
8834
+ def patch_organization_environment_security_action(name, google_cloud_apigee_v1_security_action_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
8835
+ command = make_simple_command(:patch, 'v1/{+name}', options)
8836
+ command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAction::Representation
8837
+ command.request_object = google_cloud_apigee_v1_security_action_object
8838
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAction::Representation
8839
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityAction
8840
+ command.params['name'] = name unless name.nil?
8841
+ command.query['updateMask'] = update_mask unless update_mask.nil?
8842
+ command.query['fields'] = fields unless fields.nil?
8843
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
8844
+ execute_or_queue_command(command, &block)
8845
+ end
8846
+
8775
8847
  # BatchUpdateSecurityIncident updates multiple existing security incidents.
8776
8848
  # @param [String] parent
8777
8849
  # Optional. The parent resource shared by all security incidents being updated.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigee_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.108.0
4
+ version: 0.109.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.108.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.109.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
62
62
  rdoc_options: []
63
63
  require_paths: