google-apis-integrations_v1 0.14.0 → 0.15.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: 5e29351aaab7fa5e91f86818fb0aeed9a6c0b1764fec05ccf2018046d0d30138
4
- data.tar.gz: 9b5b2b8eeda32587457506d63a3441fe6a4dc129c5c647714413d4bfffe28d27
3
+ metadata.gz: b22fb89dad9ea9294607c6de889dfd9743729b891a828ea5ef070360e60b9307
4
+ data.tar.gz: 198d8fd3cc38344ba182a0b1e4b8d012937ad51cbea91b018057b14e498340d5
5
5
  SHA512:
6
- metadata.gz: d3ad52f961ee98c5696723fc69ba9f8e0ef15c77bba1c46ceaa1dcf6c53cd251b9d5b86c8811645d3cdd6efbf83afe3f0394e223cca546d3569911244bfcde6a
7
- data.tar.gz: 4fb300cc839e78c5803252bcd8a24e8ea32ef981278b17b9893f98e7dd86c205d79cda6d73e902e99ef4cdc31ebf7f2fe5b24d36b09c0c8bdc962cfa35a99614
6
+ metadata.gz: ce34385e2fe5fc11b05412376d5725cd25bcc463740b23e00abc772a31b63a37c0846e4356acdc198d837e39675fcfc9e9fecfbf8c12d114c265b72e92c72975
7
+ data.tar.gz: cc7139fbac7a3fac56be10ff40067bae17d5845beffb55403a0d0f3cc8d5a1955f17d07a46e01f90c20f729ff64c02d9c6f12287862a7051686f01fcc9324bb8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-integrations_v1
2
2
 
3
+ ### v0.15.0 (2025-06-29)
4
+
5
+ * Regenerated from discovery document revision 20250627
6
+
3
7
  ### v0.14.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250610
@@ -6979,6 +6979,51 @@ module Google
6979
6979
  end
6980
6980
  end
6981
6981
 
6982
+ # Request for the ChangeCustomerConfig rpc
6983
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest
6984
+ include Google::Apis::Core::Hashable
6985
+
6986
+ # Customer configuration information for the given client
6987
+ # Corresponds to the JSON property `customerConfig`
6988
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig]
6989
+ attr_accessor :customer_config
6990
+
6991
+ # Required. Field mask specifying the fields in the customer config that have
6992
+ # been modified and must be updated. If absent or empty, no fields are updated.
6993
+ # Corresponds to the JSON property `updateMask`
6994
+ # @return [String]
6995
+ attr_accessor :update_mask
6996
+
6997
+ def initialize(**args)
6998
+ update!(**args)
6999
+ end
7000
+
7001
+ # Update properties of this object
7002
+ def update!(**args)
7003
+ @customer_config = args[:customer_config] if args.key?(:customer_config)
7004
+ @update_mask = args[:update_mask] if args.key?(:update_mask)
7005
+ end
7006
+ end
7007
+
7008
+ # Response for the ChangeCustomerConfig rpc
7009
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
7010
+ include Google::Apis::Core::Hashable
7011
+
7012
+ # Customer configuration information for the given client
7013
+ # Corresponds to the JSON property `customerConfig`
7014
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig]
7015
+ attr_accessor :customer_config
7016
+
7017
+ def initialize(**args)
7018
+ update!(**args)
7019
+ end
7020
+
7021
+ # Update properties of this object
7022
+ def update!(**args)
7023
+ @customer_config = args[:customer_config] if args.key?(:customer_config)
7024
+ end
7025
+ end
7026
+
6982
7027
  # Contains client certificate information
6983
7028
  class GoogleCloudIntegrationsV1alphaClientCertificate
6984
7029
  include Google::Apis::Core::Hashable
@@ -7064,12 +7109,17 @@ module Google
7064
7109
  # @return [String]
7065
7110
  attr_accessor :create_time
7066
7111
 
7112
+ # Customer configuration information for the given client
7113
+ # Corresponds to the JSON property `customerConfig`
7114
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig]
7115
+ attr_accessor :customer_config
7116
+
7067
7117
  # Description of what the client is used for
7068
7118
  # Corresponds to the JSON property `description`
7069
7119
  # @return [String]
7070
7120
  attr_accessor :description
7071
7121
 
7072
- # Optional. Indicates the client enables making HTTP call.
7122
+ # Optional.
7073
7123
  # Corresponds to the JSON property `enableHttpCall`
7074
7124
  # @return [Boolean]
7075
7125
  attr_accessor :enable_http_call
@@ -7082,14 +7132,13 @@ module Google
7082
7132
  attr_accessor :enable_internal_ip
7083
7133
  alias_method :enable_internal_ip?, :enable_internal_ip
7084
7134
 
7085
- # Optional. Indicates if the Cloud Companion APIs will be used in the tenant
7086
- # project, i.e. if customer can use the managed AI features for free.
7135
+ # Optional.
7087
7136
  # Corresponds to the JSON property `enableManagedAiFeatures`
7088
7137
  # @return [Boolean]
7089
7138
  attr_accessor :enable_managed_ai_features
7090
7139
  alias_method :enable_managed_ai_features?, :enable_managed_ai_features
7091
7140
 
7092
- # Optional. True if variable masking feature should be turned on for this region
7141
+ # Optional.
7093
7142
  # Corresponds to the JSON property `enableVariableMasking`
7094
7143
  # @return [Boolean]
7095
7144
  attr_accessor :enable_variable_masking
@@ -7121,9 +7170,7 @@ module Google
7121
7170
  # @return [String]
7122
7171
  attr_accessor :region
7123
7172
 
7124
- # Default run-as service account email, set up during project provision time,
7125
- # that will be used to generate auth token to be used in Connector task, Rest
7126
- # caller task, Cloud function task and Subworkflows.
7173
+ #
7127
7174
  # Corresponds to the JSON property `runAsServiceAccount`
7128
7175
  # @return [String]
7129
7176
  attr_accessor :run_as_service_account
@@ -7138,6 +7185,7 @@ module Google
7138
7185
  @client_state = args[:client_state] if args.key?(:client_state)
7139
7186
  @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
7140
7187
  @create_time = args[:create_time] if args.key?(:create_time)
7188
+ @customer_config = args[:customer_config] if args.key?(:customer_config)
7141
7189
  @description = args[:description] if args.key?(:description)
7142
7190
  @enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
7143
7191
  @enable_internal_ip = args[:enable_internal_ip] if args.key?(:enable_internal_ip)
@@ -7531,6 +7579,56 @@ module Google
7531
7579
  end
7532
7580
  end
7533
7581
 
7582
+ # Customer configuration information for the given client
7583
+ class GoogleCloudIntegrationsV1alphaCustomerConfig
7584
+ include Google::Apis::Core::Hashable
7585
+
7586
+ # Configuration information for Client's Cloud KMS information
7587
+ # Corresponds to the JSON property `cloudKmsConfig`
7588
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig]
7589
+ attr_accessor :cloud_kms_config
7590
+
7591
+ # Optional. Indicates if the client should be allowed to make HTTP calls. True
7592
+ # if http call feature should be turned on for this region.
7593
+ # Corresponds to the JSON property `enableHttpCall`
7594
+ # @return [Boolean]
7595
+ attr_accessor :enable_http_call
7596
+ alias_method :enable_http_call?, :enable_http_call
7597
+
7598
+ # Optional. Indicates if the client should be allowed to use managed AI features,
7599
+ # i.e. using Cloud Companion APIs of the tenant project. This will allow the
7600
+ # customers to use features like Troubleshooting, OpenAPI spec enrichment, etc.
7601
+ # for free.
7602
+ # Corresponds to the JSON property `enableManagedAiFeatures`
7603
+ # @return [Boolean]
7604
+ attr_accessor :enable_managed_ai_features
7605
+ alias_method :enable_managed_ai_features?, :enable_managed_ai_features
7606
+
7607
+ # Optional. True if variable masking feature should be turned on for this region.
7608
+ # Corresponds to the JSON property `enableVariableMasking`
7609
+ # @return [Boolean]
7610
+ attr_accessor :enable_variable_masking
7611
+ alias_method :enable_variable_masking?, :enable_variable_masking
7612
+
7613
+ # Optional. Run-as service account to be updated for the provisioned client.
7614
+ # Corresponds to the JSON property `runAsServiceAccount`
7615
+ # @return [String]
7616
+ attr_accessor :run_as_service_account
7617
+
7618
+ def initialize(**args)
7619
+ update!(**args)
7620
+ end
7621
+
7622
+ # Update properties of this object
7623
+ def update!(**args)
7624
+ @cloud_kms_config = args[:cloud_kms_config] if args.key?(:cloud_kms_config)
7625
+ @enable_http_call = args[:enable_http_call] if args.key?(:enable_http_call)
7626
+ @enable_managed_ai_features = args[:enable_managed_ai_features] if args.key?(:enable_managed_ai_features)
7627
+ @enable_variable_masking = args[:enable_variable_masking] if args.key?(:enable_variable_masking)
7628
+ @run_as_service_account = args[:run_as_service_account] if args.key?(:run_as_service_account)
7629
+ end
7630
+ end
7631
+
7534
7632
  # Request for the Deprovision rpc
7535
7633
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
7536
7634
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IntegrationsV1
18
18
  # Version of the google-apis-integrations_v1 gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.15.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 = "20250610"
25
+ REVISION = "20250627"
26
26
  end
27
27
  end
28
28
  end
@@ -1018,6 +1018,18 @@ module Google
1018
1018
  include Google::Apis::Core::JsonObjectSupport
1019
1019
  end
1020
1020
 
1021
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest
1022
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1023
+
1024
+ include Google::Apis::Core::JsonObjectSupport
1025
+ end
1026
+
1027
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
1028
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1029
+
1030
+ include Google::Apis::Core::JsonObjectSupport
1031
+ end
1032
+
1021
1033
  class GoogleCloudIntegrationsV1alphaClientCertificate
1022
1034
  class Representation < Google::Apis::Core::JsonRepresentation; end
1023
1035
 
@@ -1096,6 +1108,12 @@ module Google
1096
1108
  include Google::Apis::Core::JsonObjectSupport
1097
1109
  end
1098
1110
 
1111
+ class GoogleCloudIntegrationsV1alphaCustomerConfig
1112
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1113
+
1114
+ include Google::Apis::Core::JsonObjectSupport
1115
+ end
1116
+
1099
1117
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
1100
1118
  class Representation < Google::Apis::Core::JsonRepresentation; end
1101
1119
 
@@ -3810,6 +3828,23 @@ module Google
3810
3828
  end
3811
3829
  end
3812
3830
 
3831
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest
3832
+ # @private
3833
+ class Representation < Google::Apis::Core::JsonRepresentation
3834
+ property :customer_config, as: 'customerConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig::Representation
3835
+
3836
+ property :update_mask, as: 'updateMask'
3837
+ end
3838
+ end
3839
+
3840
+ class GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
3841
+ # @private
3842
+ class Representation < Google::Apis::Core::JsonRepresentation
3843
+ property :customer_config, as: 'customerConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig::Representation
3844
+
3845
+ end
3846
+ end
3847
+
3813
3848
  class GoogleCloudIntegrationsV1alphaClientCertificate
3814
3849
  # @private
3815
3850
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3827,6 +3862,8 @@ module Google
3827
3862
  property :cloud_kms_config, as: 'cloudKmsConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig::Representation
3828
3863
 
3829
3864
  property :create_time, as: 'createTime'
3865
+ property :customer_config, as: 'customerConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCustomerConfig::Representation
3866
+
3830
3867
  property :description, as: 'description'
3831
3868
  property :enable_http_call, as: 'enableHttpCall'
3832
3869
  property :enable_internal_ip, as: 'enableInternalIp'
@@ -3951,6 +3988,18 @@ module Google
3951
3988
  end
3952
3989
  end
3953
3990
 
3991
+ class GoogleCloudIntegrationsV1alphaCustomerConfig
3992
+ # @private
3993
+ class Representation < Google::Apis::Core::JsonRepresentation
3994
+ property :cloud_kms_config, as: 'cloudKmsConfig', class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig, decorator: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCloudKmsConfig::Representation
3995
+
3996
+ property :enable_http_call, as: 'enableHttpCall'
3997
+ property :enable_managed_ai_features, as: 'enableManagedAiFeatures'
3998
+ property :enable_variable_masking, as: 'enableVariableMasking'
3999
+ property :run_as_service_account, as: 'runAsServiceAccount'
4000
+ end
4001
+ end
4002
+
3954
4003
  class GoogleCloudIntegrationsV1alphaDeprovisionClientRequest
3955
4004
  # @private
3956
4005
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -725,6 +725,40 @@ module Google
725
725
  execute_or_queue_command(command, &block)
726
726
  end
727
727
 
728
+ # Updates the client customer configuration for the given project and location
729
+ # resource name
730
+ # @param [String] parent
731
+ # Required. Required: Format - projects/`project`/locations/`location`
732
+ # @param [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest] google_cloud_integrations_v1alpha_change_customer_config_request_object
733
+ # @param [String] fields
734
+ # Selector specifying which fields to include in a partial response.
735
+ # @param [String] quota_user
736
+ # Available to use for quota purposes for server-side applications. Can be any
737
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
738
+ # @param [Google::Apis::RequestOptions] options
739
+ # Request-specific options
740
+ #
741
+ # @yield [result, err] Result & error if block supplied
742
+ # @yieldparam result [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse] parsed result object
743
+ # @yieldparam err [StandardError] error object if request failed
744
+ #
745
+ # @return [Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse]
746
+ #
747
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
748
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
749
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
750
+ def change_project_location_client_config(parent, google_cloud_integrations_v1alpha_change_customer_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
751
+ command = make_simple_command(:post, 'v1/{+parent}/clients:changeConfig', options)
752
+ command.request_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigRequest::Representation
753
+ command.request_object = google_cloud_integrations_v1alpha_change_customer_config_request_object
754
+ command.response_representation = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse::Representation
755
+ command.response_class = Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaChangeCustomerConfigResponse
756
+ command.params['parent'] = parent unless parent.nil?
757
+ command.query['fields'] = fields unless fields.nil?
758
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
759
+ execute_or_queue_command(command, &block)
760
+ end
761
+
728
762
  # Perform the deprovisioning steps to disable a user GCP project to use IP and
729
763
  # purge all related data in a wipeout-compliant way.
730
764
  # @param [String] parent
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-integrations_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.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-integrations_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1/v0.14.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1/v0.15.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1
62
62
  rdoc_options: []
63
63
  require_paths: