If I am part of an early access program, then I might have to specify a specific labels URL parameter in order to get access to pre-release features or APIs. Today, if I want to do this, I have to do something like
my_client = apiclient.discovery.build(
'someapi',
'v1alpha1',
discoveryServiceUrl=apiclient.discovery.V2_DISCOVERY_URI + '&labels=TRUSTED_TESTER_FEATURE',
developerKey=my_developer_key)
It would be appreciated if labels [sic] were a parameter to build so I don't have to think about manual changes to the default discovery service URL logic.
If I am part of an early access program, then I might have to specify a specific
labelsURL parameter in order to get access to pre-release features or APIs. Today, if I want to do this, I have to do something likeIt would be appreciated if labels [sic] were a parameter to
buildso I don't have to think about manual changes to the default discovery service URL logic.