google-apis-managedidentities_v1alpha1 0.9.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e6ae638b0fb6c223c5038512a01c0ba6bead57b049bbc42a4bcae80b4cc363f
4
- data.tar.gz: e548dcf4b2e648375d17b9f05dda6867631b25dab806da121ce9da11ee1ada1a
3
+ metadata.gz: 412ab3dba3c575114e3e16dd1f8fcd03309e9e48abd7c479b0fa8223388cbd9d
4
+ data.tar.gz: 8c09aa7ae52e47f2a950eec5058c9a5d8d1f3989ac5eef891adb378591db24b3
5
5
  SHA512:
6
- metadata.gz: 12e7d1cbb3802c1e231a1ffc3009df69a54fb52a342515f0ac31e26f02910ebf7a93253d14739c52088c9fee98ab19b5f800ab89575f006a5a2fd9058f86abb8
7
- data.tar.gz: d4588046e9ae476ceecf09b70ecc7f39b90757313a9bf583b0b9cf604741319ca512c1454673fc99bcb5d0685bd0659fa2ea8c97efcf73a6fa3003a4b902d0fa
6
+ metadata.gz: 064bfb6d71f7e717056ca604041134718d9e9b186766654deffc4dcd388ce9b7647eeb74a684e7d10365d3e0e0adb8554b453d08b2adeac6c2ca19d65e0c5124
7
+ data.tar.gz: 4abed29ae8e3e4adaa637f2b463f6f36fd90ac39830a40c731254e724e7b0fe8fb65a3f585223960b0007c2357705c7bfba28c4c123342457b4fd69d374d7969
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-managedidentities_v1alpha1
2
2
 
3
+ ### v0.13.0 (2021-08-28)
4
+
5
+ * Regenerated from discovery document revision 20210819
6
+
7
+ ### v0.12.0 (2021-07-10)
8
+
9
+ * Regenerated from discovery document revision 20210701
10
+
11
+ ### v0.11.0 (2021-06-29)
12
+
13
+ * Regenerated using generator version 0.4.0
14
+
15
+ ### v0.10.0 (2021-06-24)
16
+
17
+ * Regenerated from discovery document revision 20210615
18
+
3
19
  ### v0.9.0 (2021-06-16)
4
20
 
5
21
  * Regenerated from discovery document revision 20210614
@@ -879,14 +879,6 @@ module Google
879
879
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
880
880
  include Google::Apis::Core::Hashable
881
881
 
882
- # By default node is eligible if instance is eligible. But individual node might
883
- # be excluded from SLO by adding entry here. For semantic see SloMetadata.
884
- # exclusions. If both instance and node level exclusions are present for time
885
- # period, the node level's reason will be reported by Eligibility Exporter.
886
- # Corresponds to the JSON property `exclusions`
887
- # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
888
- attr_accessor :exclusions
889
-
890
882
  # The location of the node, if different from instance location.
891
883
  # Corresponds to the JSON property `location`
892
884
  # @return [String]
@@ -897,15 +889,20 @@ module Google
897
889
  # @return [String]
898
890
  attr_accessor :node_id
899
891
 
892
+ # PerSliSloEligibility is a mapping from an SLI name to eligibility.
893
+ # Corresponds to the JSON property `perSliEligibility`
894
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility]
895
+ attr_accessor :per_sli_eligibility
896
+
900
897
  def initialize(**args)
901
898
  update!(**args)
902
899
  end
903
900
 
904
901
  # Update properties of this object
905
902
  def update!(**args)
906
- @exclusions = args[:exclusions] if args.key?(:exclusions)
907
903
  @location = args[:location] if args.key?(:location)
908
904
  @node_id = args[:node_id] if args.key?(:node_id)
905
+ @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
909
906
  end
910
907
  end
911
908
 
@@ -997,71 +994,11 @@ module Google
997
994
  end
998
995
  end
999
996
 
1000
- # SloExclusion represents an exclusion in SLI calculation applies to all SLOs.
1001
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
1002
- include Google::Apis::Core::Hashable
1003
-
1004
- # Exclusion duration. No restrictions on the possible values. When an ongoing
1005
- # operation is taking longer than initially expected, an existing entry in the
1006
- # exclusion list can be updated by extending the duration. This is supported by
1007
- # the subsystem exporting eligibility data as long as such extension is
1008
- # committed at least 10 minutes before the original exclusion expiration -
1009
- # otherwise it is possible that there will be "gaps" in the exclusion
1010
- # application in the exported timeseries.
1011
- # Corresponds to the JSON property `duration`
1012
- # @return [String]
1013
- attr_accessor :duration
1014
-
1015
- # Human-readable reason for the exclusion. This should be a static string (e.g. "
1016
- # Disruptive update in progress") and should not contain dynamically generated
1017
- # data (e.g. instance name). Can be left empty.
1018
- # Corresponds to the JSON property `reason`
1019
- # @return [String]
1020
- attr_accessor :reason
1021
-
1022
- # Name of an SLI that this exclusion applies to. Can be left empty, signaling
1023
- # that the instance should be excluded from all SLIs.
1024
- # Corresponds to the JSON property `sliName`
1025
- # @return [String]
1026
- attr_accessor :sli_name
1027
-
1028
- # Start time of the exclusion. No alignment (e.g. to a full minute) needed.
1029
- # Corresponds to the JSON property `startTime`
1030
- # @return [String]
1031
- attr_accessor :start_time
1032
-
1033
- def initialize(**args)
1034
- update!(**args)
1035
- end
1036
-
1037
- # Update properties of this object
1038
- def update!(**args)
1039
- @duration = args[:duration] if args.key?(:duration)
1040
- @reason = args[:reason] if args.key?(:reason)
1041
- @sli_name = args[:sli_name] if args.key?(:sli_name)
1042
- @start_time = args[:start_time] if args.key?(:start_time)
1043
- end
1044
- end
1045
-
1046
997
  # SloMetadata contains resources required for proper SLO classification of the
1047
998
  # instance.
1048
999
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
1049
1000
  include Google::Apis::Core::Hashable
1050
1001
 
1051
- # List of SLO exclusion windows. When multiple entries in the list match (
1052
- # matching the exclusion time-window against current time point) the exclusion
1053
- # reason used in the first matching entry will be published. It is not needed to
1054
- # include expired exclusion in this list, as only the currently applicable
1055
- # exclusions are taken into account by the eligibility exporting subsystem (the
1056
- # historical state of exclusions will be reflected in the historically produced
1057
- # timeseries regardless of the current state). This field can be used to mark
1058
- # the instance as temporary ineligible for the purpose of SLO calculation. For
1059
- # permanent instance SLO exclusion, use of custom instance eligibility is
1060
- # recommended. See 'eligibility' field below.
1061
- # Corresponds to the JSON property `exclusions`
1062
- # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>]
1063
- attr_accessor :exclusions
1064
-
1065
1002
  # Optional. List of nodes. Some producers need to use per-node metadata to
1066
1003
  # calculate SLO. This field allows such producers to publish per-node SLO meta
1067
1004
  # data, which will be consumed by SSA Eligibility Exporter and published in the
@@ -1088,7 +1025,6 @@ module Google
1088
1025
 
1089
1026
  # Update properties of this object
1090
1027
  def update!(**args)
1091
- @exclusions = args[:exclusions] if args.key?(:exclusions)
1092
1028
  @nodes = args[:nodes] if args.key?(:nodes)
1093
1029
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
1094
1030
  @tier = args[:tier] if args.key?(:tier)
@@ -1512,13 +1448,13 @@ module Google
1512
1448
  class OperationMetadata
1513
1449
  include Google::Apis::Core::Hashable
1514
1450
 
1515
- # [Output only] API version used to start the operation.
1451
+ # Output only. API version used to start the operation.
1516
1452
  # Corresponds to the JSON property `apiVersion`
1517
1453
  # @return [String]
1518
1454
  attr_accessor :api_version
1519
1455
 
1520
- # [Output only] Identifies whether the user has requested cancellation of the
1521
- # operation. Operations that have successfully been cancelled have Operation.
1456
+ # Output only. Identifies whether the user has requested cancellation of the
1457
+ # operation. Operations that have been cancelled successfully have Operation.
1522
1458
  # error value with a google.rpc.Status.code of 1, corresponding to `Code.
1523
1459
  # CANCELLED`.
1524
1460
  # Corresponds to the JSON property `cancelRequested`
@@ -1526,27 +1462,27 @@ module Google
1526
1462
  attr_accessor :cancel_requested
1527
1463
  alias_method :cancel_requested?, :cancel_requested
1528
1464
 
1529
- # [Output only] The time the operation was created.
1465
+ # Output only. The time the operation was created.
1530
1466
  # Corresponds to the JSON property `createTime`
1531
1467
  # @return [String]
1532
1468
  attr_accessor :create_time
1533
1469
 
1534
- # [Output only] The time the operation finished running.
1470
+ # Output only. The time the operation finished running.
1535
1471
  # Corresponds to the JSON property `endTime`
1536
1472
  # @return [String]
1537
1473
  attr_accessor :end_time
1538
1474
 
1539
- # [Output only] Human-readable status of the operation, if any.
1475
+ # Output only. Human-readable status of the operation, if any.
1540
1476
  # Corresponds to the JSON property `statusDetail`
1541
1477
  # @return [String]
1542
1478
  attr_accessor :status_detail
1543
1479
 
1544
- # [Output only] Server-defined resource path for the target of the operation.
1480
+ # Output only. Server-defined resource path for the target of the operation.
1545
1481
  # Corresponds to the JSON property `target`
1546
1482
  # @return [String]
1547
1483
  attr_accessor :target
1548
1484
 
1549
- # [Output only] Name of the verb executed by the operation.
1485
+ # Output only. Name of the verb executed by the operation.
1550
1486
  # Corresponds to the JSON property `verb`
1551
1487
  # @return [String]
1552
1488
  attr_accessor :verb
@@ -1660,7 +1596,7 @@ module Google
1660
1596
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1661
1597
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1662
1598
  # description: Does not grant access after Sep 2020 expression: request.time <
1663
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1599
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1664
1600
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1665
1601
  # google.com/iam/docs/).
1666
1602
  class Policy
@@ -1780,8 +1716,7 @@ module Google
1780
1716
  class SqlIntegration
1781
1717
  include Google::Apis::Core::Hashable
1782
1718
 
1783
- # Output only. The time the instance was created. Synthetic field is populated
1784
- # automatically by CCFE. go/ccfe-synthetic-field-user-guide
1719
+ # Output only. The time the instance was created.
1785
1720
  # Corresponds to the JSON property `createTime`
1786
1721
  # @return [String]
1787
1722
  attr_accessor :create_time
@@ -1802,8 +1737,7 @@ module Google
1802
1737
  # @return [String]
1803
1738
  attr_accessor :state
1804
1739
 
1805
- # Output only. Last update time. Synthetic field is populated automatically by
1806
- # CCFE.
1740
+ # Output only. Last update time for this SQL instance.
1807
1741
  # Corresponds to the JSON property `updateTime`
1808
1742
  # @return [String]
1809
1743
  attr_accessor :update_time
@@ -1883,7 +1817,7 @@ module Google
1883
1817
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1884
1818
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1885
1819
  # description: Does not grant access after Sep 2020 expression: request.time <
1886
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1820
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1887
1821
  # description of IAM and its features, see the [IAM documentation](https://cloud.
1888
1822
  # google.com/iam/docs/).
1889
1823
  # Corresponds to the JSON property `policy`
@@ -2121,8 +2055,7 @@ module Google
2121
2055
 
2122
2056
  # Deny Maintenance Period that is applied to resource to indicate when
2123
2057
  # maintenance is forbidden. User can specify zero or more non-overlapping deny
2124
- # periods. For V1, Maximum number of deny_maintenance_periods is expected to be
2125
- # one.
2058
+ # periods. Maximum number of deny_maintenance_periods expected is one.
2126
2059
  # Corresponds to the JSON property `denyMaintenancePeriods`
2127
2060
  # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::DenyMaintenancePeriod>]
2128
2061
  attr_accessor :deny_maintenance_periods
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1alpha1
18
18
  # Version of the google-apis-managedidentities_v1alpha1 gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210614"
25
+ REVISION = "20210819"
26
26
  end
27
27
  end
28
28
  end
@@ -148,12 +148,6 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
152
- class Representation < Google::Apis::Core::JsonRepresentation; end
153
-
154
- include Google::Apis::Core::JsonObjectSupport
155
- end
156
-
157
151
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
158
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
153
 
@@ -517,10 +511,10 @@ module Google
517
511
  class GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
518
512
  # @private
519
513
  class Representation < Google::Apis::Core::JsonRepresentation
520
- collection :exclusions, as: 'exclusions', class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
521
-
522
514
  property :location, as: 'location'
523
515
  property :node_id, as: 'nodeId'
516
+ property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
517
+
524
518
  end
525
519
  end
526
520
 
@@ -548,21 +542,9 @@ module Google
548
542
  end
549
543
  end
550
544
 
551
- class GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion
552
- # @private
553
- class Representation < Google::Apis::Core::JsonRepresentation
554
- property :duration, as: 'duration'
555
- property :reason, as: 'reason'
556
- property :sli_name, as: 'sliName'
557
- property :start_time, as: 'startTime'
558
- end
559
- end
560
-
561
545
  class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
562
546
  # @private
563
547
  class Representation < Google::Apis::Core::JsonRepresentation
564
- collection :exclusions, as: 'exclusions', class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
565
-
566
548
  collection :nodes, as: 'nodes', class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
567
549
 
568
550
  property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
@@ -672,6 +672,121 @@ module Google
672
672
  execute_or_queue_command(command, &block)
673
673
  end
674
674
 
675
+ # Gets the access control policy for a resource. Returns an empty policy if the
676
+ # resource exists and does not have a policy set.
677
+ # @param [String] resource
678
+ # REQUIRED: The resource for which the policy is being requested. See the
679
+ # operation documentation for the appropriate value for this field.
680
+ # @param [Fixnum] options_requested_policy_version
681
+ # Optional. The policy format version to be returned. Valid values are 0, 1, and
682
+ # 3. Requests specifying an invalid value will be rejected. Requests for
683
+ # policies with any conditional bindings must specify version 3. Policies
684
+ # without any conditional bindings may specify any valid value or leave the
685
+ # field unset. To learn which resources support conditions in their IAM policies,
686
+ # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
687
+ # resource-policies).
688
+ # @param [String] fields
689
+ # Selector specifying which fields to include in a partial response.
690
+ # @param [String] quota_user
691
+ # Available to use for quota purposes for server-side applications. Can be any
692
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
693
+ # @param [Google::Apis::RequestOptions] options
694
+ # Request-specific options
695
+ #
696
+ # @yield [result, err] Result & error if block supplied
697
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1alpha1::Policy] parsed result object
698
+ # @yieldparam err [StandardError] error object if request failed
699
+ #
700
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::Policy]
701
+ #
702
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
703
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
704
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
705
+ def get_project_location_global_domain_backup_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
706
+ command = make_simple_command(:get, 'v1alpha1/{+resource}:getIamPolicy', options)
707
+ command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::Policy::Representation
708
+ command.response_class = Google::Apis::ManagedidentitiesV1alpha1::Policy
709
+ command.params['resource'] = resource unless resource.nil?
710
+ command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
711
+ command.query['fields'] = fields unless fields.nil?
712
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
713
+ execute_or_queue_command(command, &block)
714
+ end
715
+
716
+ # Sets the access control policy on the specified resource. Replaces any
717
+ # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
718
+ # PERMISSION_DENIED` errors.
719
+ # @param [String] resource
720
+ # REQUIRED: The resource for which the policy is being specified. See the
721
+ # operation documentation for the appropriate value for this field.
722
+ # @param [Google::Apis::ManagedidentitiesV1alpha1::SetIamPolicyRequest] set_iam_policy_request_object
723
+ # @param [String] fields
724
+ # Selector specifying which fields to include in a partial response.
725
+ # @param [String] quota_user
726
+ # Available to use for quota purposes for server-side applications. Can be any
727
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
728
+ # @param [Google::Apis::RequestOptions] options
729
+ # Request-specific options
730
+ #
731
+ # @yield [result, err] Result & error if block supplied
732
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1alpha1::Policy] parsed result object
733
+ # @yieldparam err [StandardError] error object if request failed
734
+ #
735
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::Policy]
736
+ #
737
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
738
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
739
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
740
+ def set_backup_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
741
+ command = make_simple_command(:post, 'v1alpha1/{+resource}:setIamPolicy', options)
742
+ command.request_representation = Google::Apis::ManagedidentitiesV1alpha1::SetIamPolicyRequest::Representation
743
+ command.request_object = set_iam_policy_request_object
744
+ command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::Policy::Representation
745
+ command.response_class = Google::Apis::ManagedidentitiesV1alpha1::Policy
746
+ command.params['resource'] = resource unless resource.nil?
747
+ command.query['fields'] = fields unless fields.nil?
748
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
749
+ execute_or_queue_command(command, &block)
750
+ end
751
+
752
+ # Returns permissions that a caller has on the specified resource. If the
753
+ # resource does not exist, this will return an empty set of permissions, not a `
754
+ # NOT_FOUND` error. Note: This operation is designed to be used for building
755
+ # permission-aware UIs and command-line tools, not for authorization checking.
756
+ # This operation may "fail open" without warning.
757
+ # @param [String] resource
758
+ # REQUIRED: The resource for which the policy detail is being requested. See the
759
+ # operation documentation for the appropriate value for this field.
760
+ # @param [Google::Apis::ManagedidentitiesV1alpha1::TestIamPermissionsRequest] test_iam_permissions_request_object
761
+ # @param [String] fields
762
+ # Selector specifying which fields to include in a partial response.
763
+ # @param [String] quota_user
764
+ # Available to use for quota purposes for server-side applications. Can be any
765
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
766
+ # @param [Google::Apis::RequestOptions] options
767
+ # Request-specific options
768
+ #
769
+ # @yield [result, err] Result & error if block supplied
770
+ # @yieldparam result [Google::Apis::ManagedidentitiesV1alpha1::TestIamPermissionsResponse] parsed result object
771
+ # @yieldparam err [StandardError] error object if request failed
772
+ #
773
+ # @return [Google::Apis::ManagedidentitiesV1alpha1::TestIamPermissionsResponse]
774
+ #
775
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
776
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
777
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
778
+ def test_backup_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
779
+ command = make_simple_command(:post, 'v1alpha1/{+resource}:testIamPermissions', options)
780
+ command.request_representation = Google::Apis::ManagedidentitiesV1alpha1::TestIamPermissionsRequest::Representation
781
+ command.request_object = test_iam_permissions_request_object
782
+ command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::TestIamPermissionsResponse::Representation
783
+ command.response_class = Google::Apis::ManagedidentitiesV1alpha1::TestIamPermissionsResponse
784
+ command.params['resource'] = resource unless resource.nil?
785
+ command.query['fields'] = fields unless fields.nil?
786
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
787
+ execute_or_queue_command(command, &block)
788
+ end
789
+
675
790
  # Gets details of a single sqlIntegration.
676
791
  # @param [String] name
677
792
  # Required. MangedOU resource name using the form: `projects/`project_id`/
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1alpha1'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-managedidentities_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-21 00:00:00.000000000 Z
11
+ date: 2021-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Managed Service for Microsoft Active
28
34
  Directory API V1alpha1. Simple REST clients are Ruby client libraries that provide
29
35
  access to Google services via their HTTP REST API endpoints. These libraries are
@@ -53,7 +59,7 @@ licenses:
53
59
  metadata:
54
60
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
55
61
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1alpha1/CHANGELOG.md
56
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.9.0
62
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.13.0
57
63
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-managedidentities_v1alpha1
58
64
  post_install_message:
59
65
  rdoc_options: []