Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -272104,6 +272104,7 @@
"/iam:v1/WorkforcePoolProvider/name": name
"/iam:v1/WorkforcePoolProvider/oidc": oidc
"/iam:v1/WorkforcePoolProvider/saml": saml
"/iam:v1/WorkforcePoolProvider/scimUsage": scim_usage
"/iam:v1/WorkforcePoolProvider/state": state
"/iam:v1/WorkforcePoolProviderKey": workforce_pool_provider_key
"/iam:v1/WorkforcePoolProviderKey/expireTime": expire_time
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-iam_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-iam_v1

### v0.80.0 (2025-10-19)

* Regenerated from discovery document revision 20251010

### v0.79.0 (2025-10-12)

* Regenerated from discovery document revision 20251003
Expand Down
11 changes: 11 additions & 0 deletions generated/google-apis-iam_v1/lib/google/apis/iam_v1/classes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3484,6 +3484,16 @@ class WorkforcePoolProvider
# @return [Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderSaml]
attr_accessor :saml

# Optional. Agentspace only. Specifies whether the workforce identity pool
# provider uses SCIM-managed groups instead of the `google.groups` attribute
# mapping for authorization checks. The `scim_usage` and `
# extended_attributes_oauth2_client` fields are mutually exclusive. A request
# that enables both fields on the same workforce identity pool provider will
# produce an error.
# Corresponds to the JSON property `scimUsage`
# @return [String]
attr_accessor :scim_usage

# Output only. The state of the provider.
# Corresponds to the JSON property `state`
# @return [String]
Expand All @@ -3507,6 +3517,7 @@ def update!(**args)
@name = args[:name] if args.key?(:name)
@oidc = args[:oidc] if args.key?(:oidc)
@saml = args[:saml] if args.key?(:saml)
@scim_usage = args[:scim_usage] if args.key?(:scim_usage)
@state = args[:state] if args.key?(:state)
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module IamV1
# Version of the google-apis-iam_v1 gem
GEM_VERSION = "0.79.0"
GEM_VERSION = "0.80.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20251003"
REVISION = "20251010"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1643,6 +1643,7 @@ class Representation < Google::Apis::Core::JsonRepresentation

property :saml, as: 'saml', class: Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderSaml, decorator: Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderSaml::Representation

property :scim_usage, as: 'scimUsage'
property :state, as: 'state'
end
end
Expand Down